diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index f40a330cfb73..60cc68f14be4 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -8957,7 +8957,7 @@ "type": "string" }, "terminationGracePeriodSeconds": { - "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", + "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "format": "int64", "type": "integer" }, @@ -9249,6 +9249,11 @@ "$ref": "#/definitions/io.k8s.api.core.v1.TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, + "terminationGracePeriodSeconds": { + "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate.", + "format": "int64", + "type": "integer" + }, "timeoutSeconds": { "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "format": "int32", diff --git a/pkg/api/pod/util.go b/pkg/api/pod/util.go index 59f1a198e75b..dd6922ee3762 100644 --- a/pkg/api/pod/util.go +++ b/pkg/api/pod/util.go @@ -551,6 +551,20 @@ func dropDisabledFields( }) } + if !utilfeature.DefaultFeatureGate.Enabled(features.ProbeTerminationGracePeriod) && !probeGracePeriodInUse(oldPodSpec) { + // Set pod-level terminationGracePeriodSeconds to nil if the feature is disabled and it is not used + VisitContainers(podSpec, AllContainers, func(c *api.Container, containerType ContainerType) bool { + if c.LivenessProbe != nil { + c.LivenessProbe.TerminationGracePeriodSeconds = nil + } + if c.StartupProbe != nil { + c.StartupProbe.TerminationGracePeriodSeconds = nil + } + // cannot be set for readiness probes + return true + }) + } + dropDisabledFSGroupFields(podSpec, oldPodSpec) if !utilfeature.DefaultFeatureGate.Enabled(features.PodOverhead) && !overheadInUse(oldPodSpec) { @@ -811,6 +825,27 @@ func subpathExprInUse(podSpec *api.PodSpec) bool { return inUse } +// probeGracePeriodInUse returns true if the pod spec is non-nil and has a probe that makes use +// of the probe-level terminationGracePeriodSeconds feature +func probeGracePeriodInUse(podSpec *api.PodSpec) bool { + if podSpec == nil { + return false + } + + var inUse bool + VisitContainers(podSpec, AllContainers, func(c *api.Container, containerType ContainerType) bool { + // cannot be set for readiness probes + if (c.LivenessProbe != nil && c.LivenessProbe.TerminationGracePeriodSeconds != nil) || + (c.StartupProbe != nil && c.StartupProbe.TerminationGracePeriodSeconds != nil) { + inUse = true + return false + } + return true + }) + + return inUse +} + // csiInUse returns true if any pod's spec include inline CSI volumes. func csiInUse(podSpec *api.PodSpec) bool { if podSpec == nil { diff --git a/pkg/api/pod/util_test.go b/pkg/api/pod/util_test.go index 5b83e801bf25..1df8f73d77a4 100644 --- a/pkg/api/pod/util_test.go +++ b/pkg/api/pod/util_test.go @@ -1140,6 +1140,103 @@ func TestDropSubPathExpr(t *testing.T) { } } +func TestDropProbeGracePeriod(t *testing.T) { + gracePeriod := int64(10) + probe := api.Probe{TerminationGracePeriodSeconds: &gracePeriod} + podWithProbeGracePeriod := func() *api.Pod { + return &api.Pod{ + Spec: api.PodSpec{ + RestartPolicy: api.RestartPolicyNever, + Containers: []api.Container{{Name: "container1", Image: "testimage", LivenessProbe: &probe, StartupProbe: &probe}}, + }, + } + } + podWithoutProbeGracePeriod := func() *api.Pod { + p := podWithProbeGracePeriod() + p.Spec.Containers[0].LivenessProbe.TerminationGracePeriodSeconds = nil + p.Spec.Containers[0].StartupProbe.TerminationGracePeriodSeconds = nil + return p + } + + podInfo := []struct { + description string + hasGracePeriod bool + pod func() *api.Pod + }{ + { + description: "has probe-level terminationGracePeriod", + hasGracePeriod: true, + pod: podWithProbeGracePeriod, + }, + { + description: "does not have probe-level terminationGracePeriod", + hasGracePeriod: false, + pod: podWithoutProbeGracePeriod, + }, + { + description: "only has liveness probe-level terminationGracePeriod", + hasGracePeriod: true, + pod: func() *api.Pod { + p := podWithProbeGracePeriod() + p.Spec.Containers[0].StartupProbe.TerminationGracePeriodSeconds = nil + return p + }, + }, + { + description: "is nil", + hasGracePeriod: false, + pod: func() *api.Pod { return nil }, + }, + } + + enabled := true + for _, oldPodInfo := range podInfo { + for _, newPodInfo := range podInfo { + oldPodHasGracePeriod, oldPod := oldPodInfo.hasGracePeriod, oldPodInfo.pod() + newPodHasGracePeriod, newPod := newPodInfo.hasGracePeriod, newPodInfo.pod() + if newPod == nil { + continue + } + + t.Run(fmt.Sprintf("feature enabled=%v, old pod %v, new pod %v", enabled, oldPodInfo.description, newPodInfo.description), func(t *testing.T) { + + var oldPodSpec *api.PodSpec + if oldPod != nil { + oldPodSpec = &oldPod.Spec + } + dropDisabledFields(&newPod.Spec, nil, oldPodSpec, nil) + + // old pod should never be changed + if !reflect.DeepEqual(oldPod, oldPodInfo.pod()) { + t.Errorf("old pod changed: %v", diff.ObjectReflectDiff(oldPod, oldPodInfo.pod())) + } + + switch { + case enabled || oldPodHasGracePeriod: + // new pod should not be changed if the feature is enabled, or if the old pod had subpaths + if !reflect.DeepEqual(newPod, newPodInfo.pod()) { + t.Errorf("new pod changed: %v", diff.ObjectReflectDiff(newPod, newPodInfo.pod())) + } + case newPodHasGracePeriod: + // new pod should be changed + if reflect.DeepEqual(newPod, newPodInfo.pod()) { + t.Errorf("new pod was not changed") + } + // new pod should not have subpaths + if !reflect.DeepEqual(newPod, podWithoutProbeGracePeriod()) { + t.Errorf("new pod had probe-level terminationGracePeriod: %v", diff.ObjectReflectDiff(newPod, podWithoutProbeGracePeriod())) + } + default: + // new pod should not need to be changed + if !reflect.DeepEqual(newPod, newPodInfo.pod()) { + t.Errorf("new pod changed: %v", diff.ObjectReflectDiff(newPod, newPodInfo.pod())) + } + } + }) + } + } +} + // helper creates a podStatus with list of PodIPs func makePodStatus(podIPs []api.PodIP) *api.PodStatus { return &api.PodStatus{ diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index 3f02daccc1d6..24d4f808c818 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -2020,6 +2020,17 @@ type Probe struct { // Minimum consecutive failures for the probe to be considered failed after having succeeded. // +optional FailureThreshold int32 + // Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + // The grace period is the duration in seconds after the processes running in the pod are sent + // a termination signal and the time when the processes are forcibly halted with a kill signal. + // Set this value longer than the expected cleanup time for your process. + // If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + // value overrides the value provided by the pod spec. + // Value must be non-negative integer. The value zero indicates stop immediately via + // the kill signal (no opportunity to shut down). + // This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. + // +optional + TerminationGracePeriodSeconds *int64 } // PullPolicy describes a policy for if/when to pull a container image @@ -2719,7 +2730,8 @@ type PodSpec struct { // +optional RestartPolicy RestartPolicy // Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. - // Value must be non-negative integer. The value zero indicates delete immediately. + // Value must be non-negative integer. The value zero indicates stop immediately via the kill + // signal (no opportunity to shut down). // If this value is nil, the default grace period will be used instead. // The grace period is the duration in seconds after the processes running in the pod are sent // a termination signal and the time when the processes are forcibly halted with a kill signal. diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go index 8725aa233039..b53e875857f3 100644 --- a/pkg/apis/core/v1/zz_generated.conversion.go +++ b/pkg/apis/core/v1/zz_generated.conversion.go @@ -6467,6 +6467,7 @@ func autoConvert_v1_Probe_To_core_Probe(in *v1.Probe, out *core.Probe, s convers out.PeriodSeconds = in.PeriodSeconds out.SuccessThreshold = in.SuccessThreshold out.FailureThreshold = in.FailureThreshold + out.TerminationGracePeriodSeconds = (*int64)(unsafe.Pointer(in.TerminationGracePeriodSeconds)) return nil } @@ -6484,6 +6485,7 @@ func autoConvert_core_Probe_To_v1_Probe(in *core.Probe, out *v1.Probe, s convers out.PeriodSeconds = in.PeriodSeconds out.SuccessThreshold = in.SuccessThreshold out.FailureThreshold = in.FailureThreshold + out.TerminationGracePeriodSeconds = (*int64)(unsafe.Pointer(in.TerminationGracePeriodSeconds)) return nil } diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index 891722c87384..57292c5f3674 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -2859,6 +2859,11 @@ func validateContainers(containers []core.Container, isInitContainers bool, volu allErrs = append(allErrs, validateLifecycle(ctr.Lifecycle, idxPath.Child("lifecycle"))...) } allErrs = append(allErrs, validateProbe(ctr.LivenessProbe, idxPath.Child("livenessProbe"))...) + // Readiness-specific validation + if ctr.ReadinessProbe != nil && ctr.ReadinessProbe.TerminationGracePeriodSeconds != nil { + allErrs = append(allErrs, field.Invalid(idxPath.Child("readinessProbe", "terminationGracePeriodSeconds"), ctr.ReadinessProbe.TerminationGracePeriodSeconds, "must not be set for readinessProbes")) + } + allErrs = append(allErrs, validateProbe(ctr.StartupProbe, idxPath.Child("startupProbe"))...) // Liveness-specific validation if ctr.LivenessProbe != nil && ctr.LivenessProbe.SuccessThreshold != 1 { allErrs = append(allErrs, field.Invalid(idxPath.Child("livenessProbe", "successThreshold"), ctr.LivenessProbe.SuccessThreshold, "must be 1")) diff --git a/pkg/apis/core/validation/validation_test.go b/pkg/apis/core/validation/validation_test.go index 6ea9b35aa339..f17da52307c0 100644 --- a/pkg/apis/core/validation/validation_test.go +++ b/pkg/apis/core/validation/validation_test.go @@ -6284,6 +6284,20 @@ func TestValidateContainers(t *testing.T) { TerminationMessagePolicy: "File", }, }, + "invalid readiness probe, terminationGracePeriodSeconds set.": { + { + Name: "life-123", + Image: "image", + ReadinessProbe: &core.Probe{ + Handler: core.Handler{ + TCPSocket: &core.TCPSocketAction{}, + }, + TerminationGracePeriodSeconds: utilpointer.Int64Ptr(10), + }, + ImagePullPolicy: "IfNotPresent", + TerminationMessagePolicy: "File", + }, + }, "invalid liveness probe, no tcp socket port.": { { Name: "life-123", diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go index 14a77ee1248f..598d9d54ce03 100644 --- a/pkg/apis/core/zz_generated.deepcopy.go +++ b/pkg/apis/core/zz_generated.deepcopy.go @@ -4192,6 +4192,11 @@ func (in *PreferredSchedulingTerm) DeepCopy() *PreferredSchedulingTerm { func (in *Probe) DeepCopyInto(out *Probe) { *out = *in in.Handler.DeepCopyInto(&out.Handler) + if in.TerminationGracePeriodSeconds != nil { + in, out := &in.TerminationGracePeriodSeconds, &out.TerminationGracePeriodSeconds + *out = new(int64) + **out = **in + } return } diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 5311041a089e..960775916c4a 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -696,6 +696,12 @@ const ( // Enables topology aware hints for EndpointSlices TopologyAwareHints featuregate.Feature = "TopologyAwareHints" + // owner: @ehashman + // alpha: v1.21 + // + // Allows user to override pod-level terminationGracePeriod for probes + ProbeTerminationGracePeriod featuregate.Feature = "ProbeTerminationGracePeriod" + // owner: @ahg-g // alpha: v1.21 // @@ -850,6 +856,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS MixedProtocolLBService: {Default: false, PreRelease: featuregate.Alpha}, VolumeCapacityPriority: {Default: false, PreRelease: featuregate.Alpha}, PreferNominatedNode: {Default: false, PreRelease: featuregate.Alpha}, + ProbeTerminationGracePeriod: {Default: false, PreRelease: featuregate.Alpha}, RunAsGroup: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.22 PodDeletionCost: {Default: false, PreRelease: featuregate.Alpha}, TopologyAwareHints: {Default: false, PreRelease: featuregate.Alpha}, diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container.go b/pkg/kubelet/kuberuntime/kuberuntime_container.go index dcbcc0589fcb..5720576e07f8 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container.go @@ -227,7 +227,7 @@ func (m *kubeGenericRuntimeManager) startContainer(podSandboxID string, podSandb msg, handlerErr := m.runner.Run(kubeContainerID, pod, container, container.Lifecycle.PostStart) if handlerErr != nil { m.recordContainerEvent(pod, container, kubeContainerID.ID, v1.EventTypeWarning, events.FailedPostStartHook, msg) - if err := m.killContainer(pod, kubeContainerID, container.Name, "FailedPostStartHook", nil); err != nil { + if err := m.killContainer(pod, kubeContainerID, container.Name, "FailedPostStartHook", reasonFailedPostStartHook, nil); err != nil { klog.ErrorS(fmt.Errorf("%s: %v", ErrPostStartHook, handlerErr), "Failed to kill container", "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "containerID", kubeContainerID.String()) } @@ -596,7 +596,7 @@ func (m *kubeGenericRuntimeManager) restoreSpecsFromContainerLabels(containerID // killContainer kills a container through the following steps: // * Run the pre-stop lifecycle hooks (if applicable). // * Stop the container. -func (m *kubeGenericRuntimeManager) killContainer(pod *v1.Pod, containerID kubecontainer.ContainerID, containerName string, message string, gracePeriodOverride *int64) error { +func (m *kubeGenericRuntimeManager) killContainer(pod *v1.Pod, containerID kubecontainer.ContainerID, containerName string, message string, reason containerKillReason, gracePeriodOverride *int64) error { var containerSpec *v1.Container if pod != nil { if containerSpec = kubecontainer.GetContainerSpec(pod, containerName); containerSpec == nil { @@ -619,6 +619,19 @@ func (m *kubeGenericRuntimeManager) killContainer(pod *v1.Pod, containerID kubec gracePeriod = *pod.DeletionGracePeriodSeconds case pod.Spec.TerminationGracePeriodSeconds != nil: gracePeriod = *pod.Spec.TerminationGracePeriodSeconds + + if utilfeature.DefaultFeatureGate.Enabled(features.ProbeTerminationGracePeriod) { + switch reason { + case reasonStartupProbe: + if containerSpec.StartupProbe != nil && containerSpec.StartupProbe.TerminationGracePeriodSeconds != nil { + gracePeriod = *containerSpec.StartupProbe.TerminationGracePeriodSeconds + } + case reasonLivenessProbe: + if containerSpec.LivenessProbe != nil && containerSpec.LivenessProbe.TerminationGracePeriodSeconds != nil { + gracePeriod = *containerSpec.LivenessProbe.TerminationGracePeriodSeconds + } + } + } } if len(message) == 0 { @@ -672,7 +685,7 @@ func (m *kubeGenericRuntimeManager) killContainersWithSyncResult(pod *v1.Pod, ru defer wg.Done() killContainerResult := kubecontainer.NewSyncResult(kubecontainer.KillContainer, container.Name) - if err := m.killContainer(pod, container.ID, container.Name, "", gracePeriodOverride); err != nil { + if err := m.killContainer(pod, container.ID, container.Name, "", reasonUnknown, gracePeriodOverride); err != nil { killContainerResult.Fail(kubecontainer.ErrKillContainer, err.Error()) klog.ErrorS(err, "Kill container failed", "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "containerID", container.ID) diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container_test.go b/pkg/kubelet/kuberuntime/kuberuntime_container_test.go index c1c053348c14..51ad8c73c9a4 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container_test.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container_test.go @@ -120,7 +120,7 @@ func TestKillContainer(t *testing.T) { } for _, test := range tests { - err := m.killContainer(test.pod, test.containerID, test.containerName, test.reason, &test.gracePeriodOverride) + err := m.killContainer(test.pod, test.containerID, test.containerName, test.reason, "", &test.gracePeriodOverride) if test.succeed != (err == nil) { t.Errorf("%s: expected %v, got %v (%v)", test.caseName, test.succeed, (err == nil), err) } @@ -290,7 +290,7 @@ func TestLifeCycleHook(t *testing.T) { // Configured and works as expected t.Run("PreStop-CMDExec", func(t *testing.T) { testPod.Spec.Containers[0].Lifecycle = cmdLifeCycle - m.killContainer(testPod, cID, "foo", "testKill", &gracePeriod) + m.killContainer(testPod, cID, "foo", "testKill", "", &gracePeriod) if fakeRunner.Cmd[0] != cmdLifeCycle.PreStop.Exec.Command[0] { t.Errorf("CMD Prestop hook was not invoked") } @@ -300,7 +300,7 @@ func TestLifeCycleHook(t *testing.T) { t.Run("PreStop-HTTPGet", func(t *testing.T) { defer func() { fakeHTTP.url = "" }() testPod.Spec.Containers[0].Lifecycle = httpLifeCycle - m.killContainer(testPod, cID, "foo", "testKill", &gracePeriod) + m.killContainer(testPod, cID, "foo", "testKill", "", &gracePeriod) if !strings.Contains(fakeHTTP.url, httpLifeCycle.PreStop.HTTPGet.Host) { t.Errorf("HTTP Prestop hook was not invoked") @@ -314,7 +314,7 @@ func TestLifeCycleHook(t *testing.T) { testPod.DeletionGracePeriodSeconds = &gracePeriodLocal testPod.Spec.TerminationGracePeriodSeconds = &gracePeriodLocal - m.killContainer(testPod, cID, "foo", "testKill", &gracePeriodLocal) + m.killContainer(testPod, cID, "foo", "testKill", "", &gracePeriodLocal) if strings.Contains(fakeHTTP.url, httpLifeCycle.PreStop.HTTPGet.Host) { t.Errorf("HTTP Should not execute when gracePeriod is 0") diff --git a/pkg/kubelet/kuberuntime/kuberuntime_gc.go b/pkg/kubelet/kuberuntime/kuberuntime_gc.go index 8c4f786db9b1..b88eb97b72c0 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_gc.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_gc.go @@ -137,7 +137,7 @@ func (cgc *containerGC) removeOldestN(containers []containerGCInfo, toRemove int ID: containers[i].id, } message := "Container is in unknown state, try killing it before removal" - if err := cgc.manager.killContainer(nil, id, containers[i].name, message, nil); err != nil { + if err := cgc.manager.killContainer(nil, id, containers[i].name, message, reasonUnknown, nil); err != nil { klog.Errorf("Failed to stop container %q: %v", containers[i].id, err) continue } diff --git a/pkg/kubelet/kuberuntime/kuberuntime_manager.go b/pkg/kubelet/kuberuntime/kuberuntime_manager.go index 4071b904026d..e82ba53d979f 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_manager.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_manager.go @@ -403,6 +403,16 @@ func (m *kubeGenericRuntimeManager) GetPods(all bool) ([]*kubecontainer.Pod, err return result, nil } +// containerKillReason explains what killed a given container +type containerKillReason string + +const ( + reasonStartupProbe containerKillReason = "StartupProbe" + reasonLivenessProbe containerKillReason = "LivenessProbe" + reasonFailedPostStartHook containerKillReason = "FailedPostStartHook" + reasonUnknown containerKillReason = "Unknown" +) + // containerToKillInfo contains necessary information to kill a container. type containerToKillInfo struct { // The spec of the container. @@ -411,6 +421,9 @@ type containerToKillInfo struct { name string // The message indicates why the container will be killed. message string + // The reason is a clearer source of info on why a container will be killed + // TODO: replace message with reason? + reason containerKillReason } // podActions keeps information what to do for a pod. @@ -582,6 +595,7 @@ func (m *kubeGenericRuntimeManager) computePodActions(pod *v1.Pod, podStatus *ku container: next, message: fmt.Sprintf("Init container is in %q state, try killing it before restart", initLastStatus.State), + reason: reasonUnknown, } } changes.NextInitContainerToStart = next @@ -623,6 +637,7 @@ func (m *kubeGenericRuntimeManager) computePodActions(pod *v1.Pod, podStatus *ku container: &pod.Spec.Containers[idx], message: fmt.Sprintf("Container is in %q state, try killing it before restart", containerStatus.State), + reason: reasonUnknown, } } } @@ -630,6 +645,7 @@ func (m *kubeGenericRuntimeManager) computePodActions(pod *v1.Pod, podStatus *ku } // The container is running, but kill the container if any of the following condition is met. var message string + var reason containerKillReason restart := shouldRestartOnFailure(pod) if _, _, changed := containerChanged(&container, containerStatus); changed { message = fmt.Sprintf("Container %s definition changed", container.Name) @@ -639,9 +655,11 @@ func (m *kubeGenericRuntimeManager) computePodActions(pod *v1.Pod, podStatus *ku } else if liveness, found := m.livenessManager.Get(containerStatus.ID); found && liveness == proberesults.Failure { // If the container failed the liveness probe, we should kill it. message = fmt.Sprintf("Container %s failed liveness probe", container.Name) + reason = reasonLivenessProbe } else if startup, found := m.startupManager.Get(containerStatus.ID); found && startup == proberesults.Failure { // If the container failed the startup probe, we should kill it. message = fmt.Sprintf("Container %s failed startup probe", container.Name) + reason = reasonStartupProbe } else { // Keep the container. keepCount++ @@ -660,6 +678,7 @@ func (m *kubeGenericRuntimeManager) computePodActions(pod *v1.Pod, podStatus *ku name: containerStatus.Name, container: &pod.Spec.Containers[idx], message: message, + reason: reason, } klog.V(2).InfoS("Message for Container of pod", "containerName", container.Name, "containerStatusID", containerStatus.ID, "pod", klog.KObj(pod), "containerMessage", message) } @@ -720,7 +739,7 @@ func (m *kubeGenericRuntimeManager) SyncPod(pod *v1.Pod, podStatus *kubecontaine klog.V(3).InfoS("Killing unwanted container for pod", "containerName", containerInfo.name, "containerID", containerID, "pod", klog.KObj(pod)) killContainerResult := kubecontainer.NewSyncResult(kubecontainer.KillContainer, containerInfo.name) result.AddSyncResult(killContainerResult) - if err := m.killContainer(pod, containerID, containerInfo.name, containerInfo.message, nil); err != nil { + if err := m.killContainer(pod, containerID, containerInfo.name, containerInfo.message, containerInfo.reason, nil); err != nil { killContainerResult.Fail(kubecontainer.ErrKillContainer, err.Error()) klog.ErrorS(err, "killContainer for pod failed", "containerName", containerInfo.name, "containerID", containerID, "pod", klog.KObj(pod)) return diff --git a/pkg/kubelet/kuberuntime/kuberuntime_manager_test.go b/pkg/kubelet/kuberuntime/kuberuntime_manager_test.go index 7af16beb85af..2859457614d6 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_manager_test.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_manager_test.go @@ -1002,9 +1002,10 @@ func getKillMapWithInitContainers(pod *v1.Pod, status *kubecontainer.PodStatus, func verifyActions(t *testing.T, expected, actual *podActions, desc string) { if actual.ContainersToKill != nil { - // Clear the message field since we don't need to verify the message. + // Clear the message and reason fields since we don't need to verify them. for k, info := range actual.ContainersToKill { info.message = "" + info.reason = "" actual.ContainersToKill[k] = info } } 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 6e32113bbde4..286a82ecd633 100644 --- a/staging/src/k8s.io/api/core/v1/generated.pb.go +++ b/staging/src/k8s.io/api/core/v1/generated.pb.go @@ -6116,886 +6116,887 @@ func init() { } var fileDescriptor_83c10c24ec417dc9 = []byte{ - // 14059 bytes of a gzipped FileDescriptorProto + // 14066 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x70, 0x1c, 0xd9, - 0x79, 0x18, 0xaa, 0x9e, 0xc1, 0x6b, 0x3e, 0xbc, 0x0f, 0x48, 0x2e, 0x88, 0x5d, 0x12, 0xdc, 0xa6, - 0xc4, 0xe5, 0x6a, 0x77, 0x41, 0x71, 0x1f, 0xd2, 0x7a, 0x57, 0x5a, 0x0b, 0xc0, 0x00, 0xe4, 0x2c, - 0x09, 0x70, 0xf6, 0x0c, 0x48, 0x4a, 0xf2, 0x4a, 0xa5, 0xc6, 0xcc, 0x01, 0xd0, 0xc2, 0x4c, 0xf7, - 0x6c, 0x77, 0x0f, 0x48, 0xec, 0x95, 0xeb, 0xfa, 0xca, 0x4f, 0xf9, 0x71, 0x4b, 0x75, 0xcb, 0x37, - 0x0f, 0xdb, 0xe5, 0x4a, 0x39, 0x4e, 0xd9, 0x8a, 0x93, 0x54, 0x1c, 0x3b, 0xb6, 0x63, 0x39, 0xb1, - 0x13, 0xe7, 0xe1, 0xe4, 0x87, 0xe3, 0xb8, 0x12, 0xcb, 0x55, 0xae, 0x20, 0x36, 0x9d, 0x94, 0x4b, - 0x3f, 0x62, 0x3b, 0xb1, 0xf3, 0x23, 0x88, 0x2b, 0x4e, 0x9d, 0x67, 0x9f, 0xd3, 0x8f, 0x99, 0x01, - 0x17, 0x84, 0x56, 0xaa, 0xfd, 0x37, 0x73, 0xbe, 0xef, 0x7c, 0xe7, 0xf4, 0x79, 0x7e, 0xe7, 0x7b, - 0xc2, 0xab, 0xbb, 0x2f, 0x87, 0x0b, 0xae, 0x7f, 0x65, 0xb7, 0xb3, 0x49, 0x02, 0x8f, 0x44, 0x24, - 0xbc, 0xb2, 0x47, 0xbc, 0x86, 0x1f, 0x5c, 0x11, 0x00, 0xa7, 0xed, 0x5e, 0xa9, 0xfb, 0x01, 0xb9, - 0xb2, 0x77, 0xf5, 0xca, 0x36, 0xf1, 0x48, 0xe0, 0x44, 0xa4, 0xb1, 0xd0, 0x0e, 0xfc, 0xc8, 0x47, - 0x88, 0xe3, 0x2c, 0x38, 0x6d, 0x77, 0x81, 0xe2, 0x2c, 0xec, 0x5d, 0x9d, 0x7b, 0x6e, 0xdb, 0x8d, - 0x76, 0x3a, 0x9b, 0x0b, 0x75, 0xbf, 0x75, 0x65, 0xdb, 0xdf, 0xf6, 0xaf, 0x30, 0xd4, 0xcd, 0xce, - 0x16, 0xfb, 0xc7, 0xfe, 0xb0, 0x5f, 0x9c, 0xc4, 0xdc, 0x8b, 0x71, 0x33, 0x2d, 0xa7, 0xbe, 0xe3, - 0x7a, 0x24, 0xd8, 0xbf, 0xd2, 0xde, 0xdd, 0x66, 0xed, 0x06, 0x24, 0xf4, 0x3b, 0x41, 0x9d, 0x24, - 0x1b, 0xee, 0x5a, 0x2b, 0xbc, 0xd2, 0x22, 0x91, 0x93, 0xd1, 0xdd, 0xb9, 0x2b, 0x79, 0xb5, 0x82, - 0x8e, 0x17, 0xb9, 0xad, 0x74, 0x33, 0x1f, 0xee, 0x55, 0x21, 0xac, 0xef, 0x90, 0x96, 0x93, 0xaa, - 0xf7, 0x42, 0x5e, 0xbd, 0x4e, 0xe4, 0x36, 0xaf, 0xb8, 0x5e, 0x14, 0x46, 0x41, 0xb2, 0x92, 0xfd, - 0x55, 0x0b, 0x2e, 0x2c, 0xde, 0xad, 0xad, 0x34, 0x9d, 0x30, 0x72, 0xeb, 0x4b, 0x4d, 0xbf, 0xbe, - 0x5b, 0x8b, 0xfc, 0x80, 0xdc, 0xf1, 0x9b, 0x9d, 0x16, 0xa9, 0xb1, 0x81, 0x40, 0xcf, 0xc2, 0xc8, - 0x1e, 0xfb, 0x5f, 0x29, 0xcf, 0x5a, 0x17, 0xac, 0xcb, 0xa5, 0xa5, 0xa9, 0xdf, 0x38, 0x98, 0x7f, - 0xdf, 0x83, 0x83, 0xf9, 0x91, 0x3b, 0xa2, 0x1c, 0x2b, 0x0c, 0x74, 0x09, 0x86, 0xb6, 0xc2, 0x8d, - 0xfd, 0x36, 0x99, 0x2d, 0x30, 0xdc, 0x09, 0x81, 0x3b, 0xb4, 0x5a, 0xa3, 0xa5, 0x58, 0x40, 0xd1, - 0x15, 0x28, 0xb5, 0x9d, 0x20, 0x72, 0x23, 0xd7, 0xf7, 0x66, 0x8b, 0x17, 0xac, 0xcb, 0x83, 0x4b, - 0xd3, 0x02, 0xb5, 0x54, 0x95, 0x00, 0x1c, 0xe3, 0xd0, 0x6e, 0x04, 0xc4, 0x69, 0xdc, 0xf2, 0x9a, - 0xfb, 0xb3, 0x03, 0x17, 0xac, 0xcb, 0x23, 0x71, 0x37, 0xb0, 0x28, 0xc7, 0x0a, 0xc3, 0xfe, 0x91, - 0x02, 0x8c, 0x2c, 0x6e, 0x6d, 0xb9, 0x9e, 0x1b, 0xed, 0xa3, 0x3b, 0x30, 0xe6, 0xf9, 0x0d, 0x22, - 0xff, 0xb3, 0xaf, 0x18, 0x7d, 0xfe, 0xc2, 0x42, 0x7a, 0x29, 0x2d, 0xac, 0x6b, 0x78, 0x4b, 0x53, - 0x0f, 0x0e, 0xe6, 0xc7, 0xf4, 0x12, 0x6c, 0xd0, 0x41, 0x18, 0x46, 0xdb, 0x7e, 0x43, 0x91, 0x2d, - 0x30, 0xb2, 0xf3, 0x59, 0x64, 0xab, 0x31, 0xda, 0xd2, 0xe4, 0x83, 0x83, 0xf9, 0x51, 0xad, 0x00, - 0xeb, 0x44, 0xd0, 0x26, 0x4c, 0xd2, 0xbf, 0x5e, 0xe4, 0x2a, 0xba, 0x45, 0x46, 0xf7, 0x62, 0x1e, - 0x5d, 0x0d, 0x75, 0x69, 0xe6, 0xc1, 0xc1, 0xfc, 0x64, 0xa2, 0x10, 0x27, 0x09, 0xda, 0x6f, 0xc3, - 0xc4, 0x62, 0x14, 0x39, 0xf5, 0x1d, 0xd2, 0xe0, 0x33, 0x88, 0x5e, 0x84, 0x01, 0xcf, 0x69, 0x11, - 0x31, 0xbf, 0x17, 0xc4, 0xc0, 0x0e, 0xac, 0x3b, 0x2d, 0x72, 0x78, 0x30, 0x3f, 0x75, 0xdb, 0x73, - 0xdf, 0xea, 0x88, 0x55, 0x41, 0xcb, 0x30, 0xc3, 0x46, 0xcf, 0x03, 0x34, 0xc8, 0x9e, 0x5b, 0x27, - 0x55, 0x27, 0xda, 0x11, 0xf3, 0x8d, 0x44, 0x5d, 0x28, 0x2b, 0x08, 0xd6, 0xb0, 0xec, 0xfb, 0x50, - 0x5a, 0xdc, 0xf3, 0xdd, 0x46, 0xd5, 0x6f, 0x84, 0x68, 0x17, 0x26, 0xdb, 0x01, 0xd9, 0x22, 0x81, - 0x2a, 0x9a, 0xb5, 0x2e, 0x14, 0x2f, 0x8f, 0x3e, 0x7f, 0x39, 0xf3, 0x63, 0x4d, 0xd4, 0x15, 0x2f, - 0x0a, 0xf6, 0x97, 0x1e, 0x13, 0xed, 0x4d, 0x26, 0xa0, 0x38, 0x49, 0xd9, 0xfe, 0xe7, 0x05, 0x38, - 0xbd, 0xf8, 0x76, 0x27, 0x20, 0x65, 0x37, 0xdc, 0x4d, 0xae, 0xf0, 0x86, 0x1b, 0xee, 0xae, 0xc7, - 0x23, 0xa0, 0x96, 0x56, 0x59, 0x94, 0x63, 0x85, 0x81, 0x9e, 0x83, 0x61, 0xfa, 0xfb, 0x36, 0xae, - 0x88, 0x4f, 0x9e, 0x11, 0xc8, 0xa3, 0x65, 0x27, 0x72, 0xca, 0x1c, 0x84, 0x25, 0x0e, 0x5a, 0x83, - 0xd1, 0x3a, 0xdb, 0x90, 0xdb, 0x6b, 0x7e, 0x83, 0xb0, 0xc9, 0x2c, 0x2d, 0x3d, 0x43, 0xd1, 0x97, - 0xe3, 0xe2, 0xc3, 0x83, 0xf9, 0x59, 0xde, 0x37, 0x41, 0x42, 0x83, 0x61, 0xbd, 0x3e, 0xb2, 0xd5, - 0xfe, 0x1a, 0x60, 0x94, 0x20, 0x63, 0x6f, 0x5d, 0xd6, 0xb6, 0xca, 0x20, 0xdb, 0x2a, 0x63, 0xd9, - 0xdb, 0x04, 0x5d, 0x85, 0x81, 0x5d, 0xd7, 0x6b, 0xcc, 0x0e, 0x31, 0x5a, 0xe7, 0xe8, 0x9c, 0xdf, - 0x70, 0xbd, 0xc6, 0xe1, 0xc1, 0xfc, 0xb4, 0xd1, 0x1d, 0x5a, 0x88, 0x19, 0xaa, 0xfd, 0x67, 0x16, - 0xcc, 0x33, 0xd8, 0xaa, 0xdb, 0x24, 0x55, 0x12, 0x84, 0x6e, 0x18, 0x11, 0x2f, 0x32, 0x06, 0xf4, - 0x79, 0x80, 0x90, 0xd4, 0x03, 0x12, 0x69, 0x43, 0xaa, 0x16, 0x46, 0x4d, 0x41, 0xb0, 0x86, 0x45, - 0x0f, 0x84, 0x70, 0xc7, 0x09, 0xd8, 0xfa, 0x12, 0x03, 0xab, 0x0e, 0x84, 0x9a, 0x04, 0xe0, 0x18, - 0xc7, 0x38, 0x10, 0x8a, 0xbd, 0x0e, 0x04, 0xf4, 0x31, 0x98, 0x8c, 0x1b, 0x0b, 0xdb, 0x4e, 0x5d, - 0x0e, 0x20, 0xdb, 0x32, 0x35, 0x13, 0x84, 0x93, 0xb8, 0xf6, 0xdf, 0xb6, 0xc4, 0xe2, 0xa1, 0x5f, - 0xfd, 0x2e, 0xff, 0x56, 0xfb, 0x97, 0x2c, 0x18, 0x5e, 0x72, 0xbd, 0x86, 0xeb, 0x6d, 0xa3, 0xcf, - 0xc2, 0x08, 0xbd, 0x9b, 0x1a, 0x4e, 0xe4, 0x88, 0x73, 0xef, 0x43, 0xda, 0xde, 0x52, 0x57, 0xc5, - 0x42, 0x7b, 0x77, 0x9b, 0x16, 0x84, 0x0b, 0x14, 0x9b, 0xee, 0xb6, 0x5b, 0x9b, 0x9f, 0x23, 0xf5, - 0x68, 0x8d, 0x44, 0x4e, 0xfc, 0x39, 0x71, 0x19, 0x56, 0x54, 0xd1, 0x0d, 0x18, 0x8a, 0x9c, 0x60, - 0x9b, 0x44, 0xe2, 0x00, 0xcc, 0x3c, 0xa8, 0x78, 0x4d, 0x4c, 0x77, 0x24, 0xf1, 0xea, 0x24, 0xbe, - 0x16, 0x36, 0x58, 0x55, 0x2c, 0x48, 0xd8, 0x3f, 0x34, 0x0c, 0x67, 0x97, 0x6b, 0x95, 0x9c, 0x75, - 0x75, 0x09, 0x86, 0x1a, 0x81, 0xbb, 0x47, 0x02, 0x31, 0xce, 0x8a, 0x4a, 0x99, 0x95, 0x62, 0x01, - 0x45, 0x2f, 0xc3, 0x18, 0xbf, 0x90, 0xae, 0x3b, 0x5e, 0xa3, 0x29, 0x87, 0xf8, 0x94, 0xc0, 0x1e, - 0xbb, 0xa3, 0xc1, 0xb0, 0x81, 0x79, 0xc4, 0x45, 0x75, 0x29, 0xb1, 0x19, 0xf3, 0x2e, 0xbb, 0x2f, - 0x5a, 0x30, 0xc5, 0x9b, 0x59, 0x8c, 0xa2, 0xc0, 0xdd, 0xec, 0x44, 0x24, 0x9c, 0x1d, 0x64, 0x27, - 0xdd, 0x72, 0xd6, 0x68, 0xe5, 0x8e, 0xc0, 0xc2, 0x9d, 0x04, 0x15, 0x7e, 0x08, 0xce, 0x8a, 0x76, - 0xa7, 0x92, 0x60, 0x9c, 0x6a, 0x16, 0x7d, 0xa7, 0x05, 0x73, 0x75, 0xdf, 0x8b, 0x02, 0xbf, 0xd9, - 0x24, 0x41, 0xb5, 0xb3, 0xd9, 0x74, 0xc3, 0x1d, 0xbe, 0x4e, 0x31, 0xd9, 0x62, 0x27, 0x41, 0xce, - 0x1c, 0x2a, 0x24, 0x31, 0x87, 0xe7, 0x1f, 0x1c, 0xcc, 0xcf, 0x2d, 0xe7, 0x92, 0xc2, 0x5d, 0x9a, - 0x41, 0xbb, 0x80, 0xe8, 0x55, 0x5a, 0x8b, 0x9c, 0x6d, 0x12, 0x37, 0x3e, 0xdc, 0x7f, 0xe3, 0x67, - 0x1e, 0x1c, 0xcc, 0xa3, 0xf5, 0x14, 0x09, 0x9c, 0x41, 0x16, 0xbd, 0x05, 0xa7, 0x68, 0x69, 0xea, - 0x5b, 0x47, 0xfa, 0x6f, 0x6e, 0xf6, 0xc1, 0xc1, 0xfc, 0xa9, 0xf5, 0x0c, 0x22, 0x38, 0x93, 0x34, - 0xfa, 0x0e, 0x0b, 0xce, 0xc6, 0x9f, 0xbf, 0x72, 0xbf, 0xed, 0x78, 0x8d, 0xb8, 0xe1, 0x52, 0xff, - 0x0d, 0xd3, 0x33, 0xf9, 0xec, 0x72, 0x1e, 0x25, 0x9c, 0xdf, 0xc8, 0xdc, 0x32, 0x9c, 0xce, 0x5c, - 0x2d, 0x68, 0x0a, 0x8a, 0xbb, 0x84, 0x73, 0x41, 0x25, 0x4c, 0x7f, 0xa2, 0x53, 0x30, 0xb8, 0xe7, - 0x34, 0x3b, 0x62, 0xa3, 0x60, 0xfe, 0xe7, 0x95, 0xc2, 0xcb, 0x96, 0xfd, 0x2f, 0x8a, 0x30, 0xb9, - 0x5c, 0xab, 0x3c, 0xd4, 0x2e, 0xd4, 0xaf, 0xa1, 0x42, 0xd7, 0x6b, 0x28, 0xbe, 0xd4, 0x8a, 0xb9, - 0x97, 0xda, 0xff, 0x9d, 0xb1, 0x85, 0x06, 0xd8, 0x16, 0xfa, 0x96, 0x9c, 0x2d, 0x74, 0xcc, 0x1b, - 0x67, 0x2f, 0x67, 0x15, 0x0d, 0xb2, 0xc9, 0xcc, 0xe4, 0x58, 0x6e, 0xfa, 0x75, 0xa7, 0x99, 0x3c, - 0xfa, 0x8e, 0xb8, 0x94, 0x8e, 0x67, 0x1e, 0xeb, 0x30, 0xb6, 0xec, 0xb4, 0x9d, 0x4d, 0xb7, 0xe9, - 0x46, 0x2e, 0x09, 0xd1, 0x53, 0x50, 0x74, 0x1a, 0x0d, 0xc6, 0x6d, 0x95, 0x96, 0x4e, 0x3f, 0x38, - 0x98, 0x2f, 0x2e, 0x36, 0xe8, 0xb5, 0x0f, 0x0a, 0x6b, 0x1f, 0x53, 0x0c, 0xf4, 0x41, 0x18, 0x68, - 0x04, 0x7e, 0x7b, 0xb6, 0xc0, 0x30, 0xe9, 0xae, 0x1b, 0x28, 0x07, 0x7e, 0x3b, 0x81, 0xca, 0x70, - 0xec, 0x5f, 0x2b, 0xc0, 0x13, 0xcb, 0xa4, 0xbd, 0xb3, 0x5a, 0xcb, 0x39, 0xbf, 0x2f, 0xc3, 0x48, - 0xcb, 0xf7, 0xdc, 0xc8, 0x0f, 0x42, 0xd1, 0x34, 0x5b, 0x11, 0x6b, 0xa2, 0x0c, 0x2b, 0x28, 0xba, - 0x00, 0x03, 0xed, 0x98, 0xa9, 0x1c, 0x93, 0x0c, 0x29, 0x63, 0x27, 0x19, 0x84, 0x62, 0x74, 0x42, - 0x12, 0x88, 0x15, 0xa3, 0x30, 0x6e, 0x87, 0x24, 0xc0, 0x0c, 0x12, 0xdf, 0xcc, 0xf4, 0xce, 0x16, - 0x27, 0x74, 0xe2, 0x66, 0xa6, 0x10, 0xac, 0x61, 0xa1, 0x2a, 0x94, 0xc2, 0xc4, 0xcc, 0xf6, 0xb5, - 0x4d, 0xc7, 0xd9, 0xd5, 0xad, 0x66, 0x32, 0x26, 0x62, 0xdc, 0x28, 0x43, 0x3d, 0xaf, 0xee, 0xaf, - 0x14, 0x00, 0xf1, 0x21, 0xfc, 0x06, 0x1b, 0xb8, 0xdb, 0xe9, 0x81, 0xeb, 0x7f, 0x4b, 0x1c, 0xd7, - 0xe8, 0xfd, 0xb9, 0x05, 0x4f, 0x2c, 0xbb, 0x5e, 0x83, 0x04, 0x39, 0x0b, 0xf0, 0xd1, 0xbc, 0x65, - 0x8f, 0xc6, 0x34, 0x18, 0x4b, 0x6c, 0xe0, 0x18, 0x96, 0x98, 0xfd, 0x27, 0x16, 0x20, 0xfe, 0xd9, - 0xef, 0xba, 0x8f, 0xbd, 0x9d, 0xfe, 0xd8, 0x63, 0x58, 0x16, 0xf6, 0x4d, 0x98, 0x58, 0x6e, 0xba, - 0xc4, 0x8b, 0x2a, 0xd5, 0x65, 0xdf, 0xdb, 0x72, 0xb7, 0xd1, 0x2b, 0x30, 0x11, 0xb9, 0x2d, 0xe2, - 0x77, 0xa2, 0x1a, 0xa9, 0xfb, 0x1e, 0x7b, 0x49, 0x5a, 0x97, 0x07, 0x97, 0xd0, 0x83, 0x83, 0xf9, - 0x89, 0x0d, 0x03, 0x82, 0x13, 0x98, 0xf6, 0xef, 0xd1, 0xf1, 0xf3, 0x5b, 0x6d, 0xdf, 0x23, 0x5e, - 0xb4, 0xec, 0x7b, 0x0d, 0x2e, 0x71, 0x78, 0x05, 0x06, 0x22, 0x3a, 0x1e, 0x7c, 0xec, 0x2e, 0xc9, - 0x8d, 0x42, 0x47, 0xe1, 0xf0, 0x60, 0xfe, 0x4c, 0xba, 0x06, 0x1b, 0x27, 0x56, 0x07, 0x7d, 0x0b, - 0x0c, 0x85, 0x91, 0x13, 0x75, 0x42, 0x31, 0x9a, 0x4f, 0xca, 0xd1, 0xac, 0xb1, 0xd2, 0xc3, 0x83, - 0xf9, 0x49, 0x55, 0x8d, 0x17, 0x61, 0x51, 0x01, 0x3d, 0x0d, 0xc3, 0x2d, 0x12, 0x86, 0xce, 0xb6, - 0xbc, 0x0d, 0x27, 0x45, 0xdd, 0xe1, 0x35, 0x5e, 0x8c, 0x25, 0x1c, 0x5d, 0x84, 0x41, 0x12, 0x04, - 0x7e, 0x20, 0xf6, 0xe8, 0xb8, 0x40, 0x1c, 0x5c, 0xa1, 0x85, 0x98, 0xc3, 0xec, 0x7f, 0x6b, 0xc1, - 0xa4, 0xea, 0x2b, 0x6f, 0xeb, 0x04, 0x5e, 0x05, 0x9f, 0x02, 0xa8, 0xcb, 0x0f, 0x0c, 0xd9, 0xed, - 0x31, 0xfa, 0xfc, 0xa5, 0xcc, 0x8b, 0x3a, 0x35, 0x8c, 0x31, 0x65, 0x55, 0x14, 0x62, 0x8d, 0x9a, - 0xfd, 0x8f, 0x2d, 0x98, 0x49, 0x7c, 0xd1, 0x4d, 0x37, 0x8c, 0xd0, 0x9b, 0xa9, 0xaf, 0x5a, 0xe8, - 0xef, 0xab, 0x68, 0x6d, 0xf6, 0x4d, 0x6a, 0x29, 0xcb, 0x12, 0xed, 0x8b, 0xae, 0xc3, 0xa0, 0x1b, - 0x91, 0x96, 0xfc, 0x98, 0x8b, 0x5d, 0x3f, 0x86, 0xf7, 0x2a, 0x9e, 0x91, 0x0a, 0xad, 0x89, 0x39, - 0x01, 0xfb, 0xd7, 0x8a, 0x50, 0xe2, 0xcb, 0x76, 0xcd, 0x69, 0x9f, 0xc0, 0x5c, 0x3c, 0x03, 0x25, - 0xb7, 0xd5, 0xea, 0x44, 0xce, 0xa6, 0x38, 0xce, 0x47, 0xf8, 0xd6, 0xaa, 0xc8, 0x42, 0x1c, 0xc3, - 0x51, 0x05, 0x06, 0x58, 0x57, 0xf8, 0x57, 0x3e, 0x95, 0xfd, 0x95, 0xa2, 0xef, 0x0b, 0x65, 0x27, - 0x72, 0x38, 0x27, 0xa5, 0xee, 0x11, 0x5a, 0x84, 0x19, 0x09, 0xe4, 0x00, 0x6c, 0xba, 0x9e, 0x13, - 0xec, 0xd3, 0xb2, 0xd9, 0x22, 0x23, 0xf8, 0x5c, 0x77, 0x82, 0x4b, 0x0a, 0x9f, 0x93, 0x55, 0x1f, - 0x16, 0x03, 0xb0, 0x46, 0x74, 0xee, 0x23, 0x50, 0x52, 0xc8, 0x47, 0x61, 0x88, 0xe6, 0x3e, 0x06, - 0x93, 0x89, 0xb6, 0x7a, 0x55, 0x1f, 0xd3, 0xf9, 0xa9, 0x5f, 0x66, 0x47, 0x86, 0xe8, 0xf5, 0x8a, - 0xb7, 0x27, 0x8e, 0xdc, 0xb7, 0xe1, 0x54, 0x33, 0xe3, 0x24, 0x13, 0xf3, 0xda, 0xff, 0xc9, 0xf7, - 0x84, 0xf8, 0xec, 0x53, 0x59, 0x50, 0x9c, 0xd9, 0x06, 0xe5, 0x11, 0xfc, 0x36, 0xdd, 0x20, 0x4e, - 0x53, 0x67, 0xb7, 0x6f, 0x89, 0x32, 0xac, 0xa0, 0xf4, 0xbc, 0x3b, 0xa5, 0x3a, 0x7f, 0x83, 0xec, - 0xd7, 0x48, 0x93, 0xd4, 0x23, 0x3f, 0xf8, 0xba, 0x76, 0xff, 0x1c, 0x1f, 0x7d, 0x7e, 0x5c, 0x8e, - 0x0a, 0x02, 0xc5, 0x1b, 0x64, 0x9f, 0x4f, 0x85, 0xfe, 0x75, 0xc5, 0xae, 0x5f, 0xf7, 0xb3, 0x16, - 0x8c, 0xab, 0xaf, 0x3b, 0x81, 0x73, 0x61, 0xc9, 0x3c, 0x17, 0xce, 0x75, 0x5d, 0xe0, 0x39, 0x27, - 0xc2, 0x57, 0x0a, 0x70, 0x56, 0xe1, 0xd0, 0xb7, 0x01, 0xff, 0x23, 0x56, 0xd5, 0x15, 0x28, 0x79, - 0x4a, 0x6a, 0x65, 0x99, 0xe2, 0xa2, 0x58, 0x66, 0x15, 0xe3, 0x50, 0x16, 0xcf, 0x8b, 0x45, 0x4b, - 0x63, 0xba, 0x38, 0x57, 0x88, 0x6e, 0x97, 0xa0, 0xd8, 0x71, 0x1b, 0xe2, 0x82, 0xf9, 0x90, 0x1c, - 0xed, 0xdb, 0x95, 0xf2, 0xe1, 0xc1, 0xfc, 0x93, 0x79, 0xaa, 0x04, 0x7a, 0xb3, 0x85, 0x0b, 0xb7, - 0x2b, 0x65, 0x4c, 0x2b, 0xa3, 0x45, 0x98, 0x94, 0xda, 0x92, 0x3b, 0x94, 0xdd, 0xf2, 0x3d, 0x71, - 0x0f, 0x29, 0x99, 0x2c, 0x36, 0xc1, 0x38, 0x89, 0x8f, 0xca, 0x30, 0xb5, 0xdb, 0xd9, 0x24, 0x4d, - 0x12, 0xf1, 0x0f, 0xbe, 0x41, 0xb8, 0xc4, 0xb2, 0x14, 0xbf, 0xcc, 0x6e, 0x24, 0xe0, 0x38, 0x55, - 0xc3, 0xfe, 0x4b, 0x76, 0x1f, 0x88, 0xd1, 0xab, 0x06, 0x3e, 0x5d, 0x58, 0x94, 0xfa, 0xd7, 0x73, - 0x39, 0xf7, 0xb3, 0x2a, 0x6e, 0x90, 0xfd, 0x0d, 0x9f, 0x72, 0xe6, 0xd9, 0xab, 0xc2, 0x58, 0xf3, - 0x03, 0x5d, 0xd7, 0xfc, 0xcf, 0x17, 0xe0, 0xb4, 0x1a, 0x01, 0x83, 0x09, 0xfc, 0x46, 0x1f, 0x83, - 0xab, 0x30, 0xda, 0x20, 0x5b, 0x4e, 0xa7, 0x19, 0x29, 0xf1, 0xf9, 0x20, 0x57, 0xa1, 0x94, 0xe3, - 0x62, 0xac, 0xe3, 0x1c, 0x61, 0xd8, 0xfe, 0xc7, 0x28, 0xbb, 0x88, 0x23, 0x87, 0xae, 0x71, 0xb5, - 0x6b, 0xac, 0xdc, 0x5d, 0x73, 0x11, 0x06, 0xdd, 0x16, 0x65, 0xcc, 0x0a, 0x26, 0xbf, 0x55, 0xa1, - 0x85, 0x98, 0xc3, 0xd0, 0x07, 0x60, 0xb8, 0xee, 0xb7, 0x5a, 0x8e, 0xd7, 0x60, 0x57, 0x5e, 0x69, - 0x69, 0x94, 0xf2, 0x6e, 0xcb, 0xbc, 0x08, 0x4b, 0x18, 0x7a, 0x02, 0x06, 0x9c, 0x60, 0x9b, 0xcb, - 0x30, 0x4a, 0x4b, 0x23, 0xb4, 0xa5, 0xc5, 0x60, 0x3b, 0xc4, 0xac, 0x94, 0x3e, 0xc1, 0xee, 0xf9, - 0xc1, 0xae, 0xeb, 0x6d, 0x97, 0xdd, 0x40, 0x6c, 0x09, 0x75, 0x17, 0xde, 0x55, 0x10, 0xac, 0x61, - 0xa1, 0x55, 0x18, 0x6c, 0xfb, 0x41, 0x14, 0xce, 0x0e, 0xb1, 0xe1, 0x7e, 0x32, 0xe7, 0x20, 0xe2, - 0x5f, 0x5b, 0xf5, 0x83, 0x28, 0xfe, 0x00, 0xfa, 0x2f, 0xc4, 0xbc, 0x3a, 0xba, 0x09, 0xc3, 0xc4, - 0xdb, 0x5b, 0x0d, 0xfc, 0xd6, 0xec, 0x4c, 0x3e, 0xa5, 0x15, 0x8e, 0xc2, 0x97, 0x59, 0xcc, 0xa3, - 0x8a, 0x62, 0x2c, 0x49, 0xa0, 0x6f, 0x81, 0x22, 0xf1, 0xf6, 0x66, 0x87, 0x19, 0xa5, 0xb9, 0x1c, - 0x4a, 0x77, 0x9c, 0x20, 0x3e, 0xf3, 0x57, 0xbc, 0x3d, 0x4c, 0xeb, 0xa0, 0x4f, 0x42, 0x49, 0x1e, - 0x18, 0xa1, 0x10, 0xd6, 0x65, 0x2e, 0x58, 0x79, 0xcc, 0x60, 0xf2, 0x56, 0xc7, 0x0d, 0x48, 0x8b, - 0x78, 0x51, 0x18, 0x9f, 0x90, 0x12, 0x1a, 0xe2, 0x98, 0x1a, 0xfa, 0xa4, 0x94, 0x10, 0xaf, 0xf9, - 0x1d, 0x2f, 0x0a, 0x67, 0x4b, 0xac, 0x7b, 0x99, 0xba, 0xbb, 0x3b, 0x31, 0x5e, 0x52, 0x84, 0xcc, - 0x2b, 0x63, 0x83, 0x14, 0xfa, 0x34, 0x8c, 0xf3, 0xff, 0x5c, 0x03, 0x16, 0xce, 0x9e, 0x66, 0xb4, - 0x2f, 0xe4, 0xd3, 0xe6, 0x88, 0x4b, 0xa7, 0x05, 0xf1, 0x71, 0xbd, 0x34, 0xc4, 0x26, 0x35, 0x84, - 0x61, 0xbc, 0xe9, 0xee, 0x11, 0x8f, 0x84, 0x61, 0x35, 0xf0, 0x37, 0xc9, 0x2c, 0xb0, 0x81, 0x39, - 0x9b, 0xad, 0x31, 0xf3, 0x37, 0xc9, 0xd2, 0x34, 0xa5, 0x79, 0x53, 0xaf, 0x83, 0x4d, 0x12, 0xe8, - 0x36, 0x4c, 0xd0, 0x17, 0x9b, 0x1b, 0x13, 0x1d, 0xed, 0x45, 0x94, 0xbd, 0xab, 0xb0, 0x51, 0x09, - 0x27, 0x88, 0xa0, 0x5b, 0x30, 0x16, 0x46, 0x4e, 0x10, 0x75, 0xda, 0x9c, 0xe8, 0x99, 0x5e, 0x44, - 0x99, 0xc2, 0xb5, 0xa6, 0x55, 0xc1, 0x06, 0x01, 0xf4, 0x3a, 0x94, 0x9a, 0xee, 0x16, 0xa9, 0xef, - 0xd7, 0x9b, 0x64, 0x76, 0x8c, 0x51, 0xcb, 0x3c, 0x54, 0x6e, 0x4a, 0x24, 0xce, 0xe7, 0xaa, 0xbf, - 0x38, 0xae, 0x8e, 0xee, 0xc0, 0x99, 0x88, 0x04, 0x2d, 0xd7, 0x73, 0xe8, 0x61, 0x20, 0x9e, 0x56, - 0x4c, 0x91, 0x39, 0xce, 0x76, 0xdb, 0x79, 0x31, 0x1b, 0x67, 0x36, 0x32, 0xb1, 0x70, 0x4e, 0x6d, - 0x74, 0x1f, 0x66, 0x33, 0x20, 0x7e, 0xd3, 0xad, 0xef, 0xcf, 0x9e, 0x62, 0x94, 0x3f, 0x2a, 0x28, - 0xcf, 0x6e, 0xe4, 0xe0, 0x1d, 0x76, 0x81, 0xe1, 0x5c, 0xea, 0xe8, 0x16, 0x4c, 0xb2, 0x13, 0xa8, - 0xda, 0x69, 0x36, 0x45, 0x83, 0x13, 0xac, 0xc1, 0x0f, 0xc8, 0xfb, 0xb8, 0x62, 0x82, 0x0f, 0x0f, - 0xe6, 0x21, 0xfe, 0x87, 0x93, 0xb5, 0xd1, 0x26, 0xd3, 0x99, 0x75, 0x02, 0x37, 0xda, 0xa7, 0xe7, - 0x06, 0xb9, 0x1f, 0xcd, 0x4e, 0x76, 0x95, 0x57, 0xe8, 0xa8, 0x4a, 0xb1, 0xa6, 0x17, 0xe2, 0x24, - 0x41, 0x7a, 0xa4, 0x86, 0x51, 0xc3, 0xf5, 0x66, 0xa7, 0xf8, 0xbb, 0x44, 0x9e, 0x48, 0x35, 0x5a, - 0x88, 0x39, 0x8c, 0xe9, 0xcb, 0xe8, 0x8f, 0x5b, 0xf4, 0xe6, 0x9a, 0x66, 0x88, 0xb1, 0xbe, 0x4c, - 0x02, 0x70, 0x8c, 0x43, 0x99, 0xc9, 0x28, 0xda, 0x9f, 0x45, 0x0c, 0x55, 0x1d, 0x2c, 0x1b, 0x1b, - 0x9f, 0xc4, 0xb4, 0xdc, 0xde, 0x84, 0x09, 0x75, 0x10, 0xb2, 0x31, 0x41, 0xf3, 0x30, 0xc8, 0xd8, - 0x27, 0x21, 0x5d, 0x2b, 0xd1, 0x2e, 0x30, 0xd6, 0x0a, 0xf3, 0x72, 0xd6, 0x05, 0xf7, 0x6d, 0xb2, - 0xb4, 0x1f, 0x11, 0xfe, 0xa6, 0x2f, 0x6a, 0x5d, 0x90, 0x00, 0x1c, 0xe3, 0xd8, 0xff, 0x9b, 0xb3, - 0xa1, 0xf1, 0x69, 0xdb, 0xc7, 0xfd, 0xf2, 0x2c, 0x8c, 0xec, 0xf8, 0x61, 0x44, 0xb1, 0x59, 0x1b, - 0x83, 0x31, 0xe3, 0x79, 0x5d, 0x94, 0x63, 0x85, 0x81, 0x5e, 0x85, 0xf1, 0xba, 0xde, 0x80, 0xb8, - 0x1c, 0xd5, 0x31, 0x62, 0xb4, 0x8e, 0x4d, 0x5c, 0xf4, 0x32, 0x8c, 0x30, 0x1b, 0x90, 0xba, 0xdf, - 0x14, 0x5c, 0x9b, 0xbc, 0xe1, 0x47, 0xaa, 0xa2, 0xfc, 0x50, 0xfb, 0x8d, 0x15, 0x36, 0xba, 0x04, - 0x43, 0xb4, 0x0b, 0x95, 0xaa, 0xb8, 0x96, 0x94, 0xa0, 0xe8, 0x3a, 0x2b, 0xc5, 0x02, 0x6a, 0xff, - 0x7f, 0x05, 0x6d, 0x94, 0xe9, 0x7b, 0x98, 0xa0, 0x2a, 0x0c, 0xdf, 0x73, 0xdc, 0xc8, 0xf5, 0xb6, - 0x05, 0xff, 0xf1, 0x74, 0xd7, 0x3b, 0x8a, 0x55, 0xba, 0xcb, 0x2b, 0xf0, 0x5b, 0x54, 0xfc, 0xc1, - 0x92, 0x0c, 0xa5, 0x18, 0x74, 0x3c, 0x8f, 0x52, 0x2c, 0xf4, 0x4b, 0x11, 0xf3, 0x0a, 0x9c, 0xa2, - 0xf8, 0x83, 0x25, 0x19, 0xf4, 0x26, 0x80, 0xdc, 0x61, 0xa4, 0x21, 0x6c, 0x2f, 0x9e, 0xed, 0x4d, - 0x74, 0x43, 0xd5, 0x59, 0x9a, 0xa0, 0x77, 0x74, 0xfc, 0x1f, 0x6b, 0xf4, 0xec, 0x88, 0xf1, 0x69, - 0xe9, 0xce, 0xa0, 0x6f, 0xa3, 0x4b, 0xdc, 0x09, 0x22, 0xd2, 0x58, 0x8c, 0xc4, 0xe0, 0x7c, 0xb0, - 0xbf, 0x47, 0xca, 0x86, 0xdb, 0x22, 0xfa, 0x76, 0x10, 0x44, 0x70, 0x4c, 0xcf, 0xfe, 0xc5, 0x22, - 0xcc, 0xe6, 0x75, 0x97, 0x2e, 0x3a, 0x72, 0xdf, 0x8d, 0x96, 0x29, 0x7b, 0x65, 0x99, 0x8b, 0x6e, - 0x45, 0x94, 0x63, 0x85, 0x41, 0x67, 0x3f, 0x74, 0xb7, 0xe5, 0x1b, 0x73, 0x30, 0x9e, 0xfd, 0x1a, - 0x2b, 0xc5, 0x02, 0x4a, 0xf1, 0x02, 0xe2, 0x84, 0xc2, 0xb8, 0x47, 0x5b, 0x25, 0x98, 0x95, 0x62, - 0x01, 0xd5, 0xa5, 0x5d, 0x03, 0x3d, 0xa4, 0x5d, 0xc6, 0x10, 0x0d, 0x1e, 0xef, 0x10, 0xa1, 0xcf, - 0x00, 0x6c, 0xb9, 0x9e, 0x1b, 0xee, 0x30, 0xea, 0x43, 0x47, 0xa6, 0xae, 0x98, 0xb3, 0x55, 0x45, - 0x05, 0x6b, 0x14, 0xd1, 0x4b, 0x30, 0xaa, 0x36, 0x60, 0xa5, 0xcc, 0x34, 0x9d, 0x9a, 0xe5, 0x48, - 0x7c, 0x1a, 0x95, 0xb1, 0x8e, 0x67, 0x7f, 0x2e, 0xb9, 0x5e, 0xc4, 0x0e, 0xd0, 0xc6, 0xd7, 0xea, - 0x77, 0x7c, 0x0b, 0xdd, 0xc7, 0xd7, 0xfe, 0x5a, 0x11, 0x26, 0x8d, 0xc6, 0x3a, 0x61, 0x1f, 0x67, - 0xd6, 0x35, 0x7a, 0x80, 0x3b, 0x11, 0x11, 0xfb, 0xcf, 0xee, 0xbd, 0x55, 0xf4, 0x43, 0x9e, 0xee, - 0x00, 0x5e, 0x1f, 0x7d, 0x06, 0x4a, 0x4d, 0x27, 0x64, 0x92, 0x33, 0x22, 0xf6, 0x5d, 0x3f, 0xc4, - 0xe2, 0x87, 0x89, 0x13, 0x46, 0xda, 0xad, 0xc9, 0x69, 0xc7, 0x24, 0xe9, 0x4d, 0x43, 0xf9, 0x13, - 0x69, 0x3d, 0xa6, 0x3a, 0x41, 0x99, 0x98, 0x7d, 0xcc, 0x61, 0xe8, 0x65, 0x18, 0x0b, 0x08, 0x5b, - 0x15, 0xcb, 0x94, 0x9b, 0x63, 0xcb, 0x6c, 0x30, 0x66, 0xfb, 0xb0, 0x06, 0xc3, 0x06, 0x66, 0xfc, - 0x36, 0x18, 0xea, 0xf2, 0x36, 0x78, 0x1a, 0x86, 0xd9, 0x0f, 0xb5, 0x02, 0xd4, 0x6c, 0x54, 0x78, - 0x31, 0x96, 0xf0, 0xe4, 0x82, 0x19, 0xe9, 0x6f, 0xc1, 0xd0, 0xd7, 0x87, 0x58, 0xd4, 0x4c, 0xcb, - 0x3c, 0xc2, 0x4f, 0x39, 0xb1, 0xe4, 0xb1, 0x84, 0xd9, 0x1f, 0x84, 0x89, 0xb2, 0x43, 0x5a, 0xbe, - 0xb7, 0xe2, 0x35, 0xda, 0xbe, 0xeb, 0x45, 0x68, 0x16, 0x06, 0xd8, 0x25, 0xc2, 0x8f, 0x80, 0x01, - 0xda, 0x10, 0x66, 0x25, 0xf6, 0x36, 0x9c, 0x2e, 0xfb, 0xf7, 0xbc, 0x7b, 0x4e, 0xd0, 0x58, 0xac, - 0x56, 0xb4, 0xf7, 0xf5, 0xba, 0x7c, 0xdf, 0x71, 0xa3, 0xad, 0xcc, 0xa3, 0x57, 0xab, 0xc9, 0xd9, - 0xda, 0x55, 0xb7, 0x49, 0x72, 0xa4, 0x20, 0x7f, 0xb5, 0x60, 0xb4, 0x14, 0xe3, 0x2b, 0xad, 0x96, - 0x95, 0xab, 0xd5, 0x7a, 0x03, 0x46, 0xb6, 0x5c, 0xd2, 0x6c, 0x60, 0xb2, 0x25, 0x56, 0xe2, 0x53, - 0xf9, 0x76, 0x28, 0xab, 0x14, 0x53, 0x4a, 0xbd, 0xf8, 0xeb, 0x70, 0x55, 0x54, 0xc6, 0x8a, 0x0c, - 0xda, 0x85, 0x29, 0xf9, 0x60, 0x90, 0x50, 0xb1, 0x2e, 0x9f, 0xee, 0xf6, 0x0a, 0x31, 0x89, 0x9f, - 0x7a, 0x70, 0x30, 0x3f, 0x85, 0x13, 0x64, 0x70, 0x8a, 0x30, 0x7d, 0x0e, 0xb6, 0xe8, 0x09, 0x3c, - 0xc0, 0x86, 0x9f, 0x3d, 0x07, 0xd9, 0xcb, 0x96, 0x95, 0xda, 0x3f, 0x66, 0xc1, 0x63, 0xa9, 0x91, - 0x11, 0x2f, 0xfc, 0x63, 0x9e, 0x85, 0xe4, 0x8b, 0xbb, 0xd0, 0xfb, 0xc5, 0x6d, 0xff, 0x1d, 0x0b, - 0x4e, 0xad, 0xb4, 0xda, 0xd1, 0x7e, 0xd9, 0x35, 0x55, 0x50, 0x1f, 0x81, 0xa1, 0x16, 0x69, 0xb8, - 0x9d, 0x96, 0x98, 0xb9, 0x79, 0x79, 0x4a, 0xad, 0xb1, 0xd2, 0xc3, 0x83, 0xf9, 0xf1, 0x5a, 0xe4, - 0x07, 0xce, 0x36, 0xe1, 0x05, 0x58, 0xa0, 0xb3, 0xb3, 0xde, 0x7d, 0x9b, 0xdc, 0x74, 0x5b, 0xae, - 0xb4, 0x2b, 0xea, 0x2a, 0xb3, 0x5b, 0x90, 0x03, 0xba, 0xf0, 0x46, 0xc7, 0xf1, 0x22, 0x37, 0xda, - 0x17, 0xda, 0x23, 0x49, 0x04, 0xc7, 0xf4, 0xec, 0xaf, 0x5a, 0x30, 0x29, 0xd7, 0xfd, 0x62, 0xa3, - 0x11, 0x90, 0x30, 0x44, 0x73, 0x50, 0x70, 0xdb, 0xa2, 0x97, 0x20, 0x7a, 0x59, 0xa8, 0x54, 0x71, - 0xc1, 0x6d, 0x4b, 0xb6, 0x8c, 0x1d, 0x84, 0x45, 0x53, 0x91, 0x76, 0x5d, 0x94, 0x63, 0x85, 0x81, - 0x2e, 0xc3, 0x88, 0xe7, 0x37, 0xb8, 0x6d, 0x17, 0xbf, 0xd2, 0xd8, 0x02, 0x5b, 0x17, 0x65, 0x58, - 0x41, 0x51, 0x15, 0x4a, 0xdc, 0xec, 0x29, 0x5e, 0xb4, 0x7d, 0x19, 0x4f, 0xb1, 0x2f, 0xdb, 0x90, - 0x35, 0x71, 0x4c, 0xc4, 0xfe, 0x55, 0x0b, 0xc6, 0xe4, 0x97, 0xf5, 0xc9, 0x73, 0xd2, 0xad, 0x15, - 0xf3, 0x9b, 0xf1, 0xd6, 0xa2, 0x3c, 0x23, 0x83, 0x18, 0xac, 0x62, 0xf1, 0x48, 0xac, 0xe2, 0x55, - 0x18, 0x75, 0xda, 0xed, 0xaa, 0xc9, 0x67, 0xb2, 0xa5, 0xb4, 0x18, 0x17, 0x63, 0x1d, 0xc7, 0xfe, - 0xd1, 0x02, 0x4c, 0xc8, 0x2f, 0xa8, 0x75, 0x36, 0x43, 0x12, 0xa1, 0x0d, 0x28, 0x39, 0x7c, 0x96, - 0x88, 0x5c, 0xe4, 0x17, 0xb3, 0xe5, 0x08, 0xc6, 0x94, 0xc6, 0x17, 0xfe, 0xa2, 0xac, 0x8d, 0x63, - 0x42, 0xa8, 0x09, 0xd3, 0x9e, 0x1f, 0xb1, 0xc3, 0x5f, 0xc1, 0xbb, 0xa9, 0x76, 0x92, 0xd4, 0xcf, - 0x0a, 0xea, 0xd3, 0xeb, 0x49, 0x2a, 0x38, 0x4d, 0x18, 0xad, 0x48, 0xd9, 0x4c, 0x31, 0x5f, 0x18, - 0xa0, 0x4f, 0x5c, 0xb6, 0x68, 0xc6, 0xfe, 0x15, 0x0b, 0x4a, 0x12, 0xed, 0x24, 0xb4, 0x78, 0x6b, - 0x30, 0x1c, 0xb2, 0x49, 0x90, 0x43, 0x63, 0x77, 0xeb, 0x38, 0x9f, 0xaf, 0xf8, 0x4e, 0xe3, 0xff, - 0x43, 0x2c, 0x69, 0x30, 0xd1, 0xbc, 0xea, 0xfe, 0xbb, 0x44, 0x34, 0xaf, 0xfa, 0x93, 0x73, 0x29, - 0xfd, 0x11, 0xeb, 0xb3, 0x26, 0xeb, 0xa2, 0xac, 0x57, 0x3b, 0x20, 0x5b, 0xee, 0xfd, 0x24, 0xeb, - 0x55, 0x65, 0xa5, 0x58, 0x40, 0xd1, 0x9b, 0x30, 0x56, 0x97, 0x32, 0xd9, 0x78, 0x87, 0x5f, 0xea, - 0xaa, 0x1f, 0x50, 0xaa, 0x24, 0x2e, 0x0b, 0x59, 0xd6, 0xea, 0x63, 0x83, 0x9a, 0x69, 0x46, 0x50, - 0xec, 0x65, 0x46, 0x10, 0xd3, 0xcd, 0x57, 0xaa, 0xff, 0xb8, 0x05, 0x43, 0x5c, 0x16, 0xd7, 0x9f, - 0x28, 0x54, 0xd3, 0xac, 0xc5, 0x63, 0x77, 0x87, 0x16, 0x0a, 0x4d, 0x19, 0x5a, 0x83, 0x12, 0xfb, - 0xc1, 0x64, 0x89, 0xc5, 0x7c, 0xab, 0x7b, 0xde, 0xaa, 0xde, 0xc1, 0x3b, 0xb2, 0x1a, 0x8e, 0x29, - 0xd8, 0x3f, 0x5c, 0xa4, 0xa7, 0x5b, 0x8c, 0x6a, 0x5c, 0xfa, 0xd6, 0xa3, 0xbb, 0xf4, 0x0b, 0x8f, - 0xea, 0xd2, 0xdf, 0x86, 0xc9, 0xba, 0xa6, 0x87, 0x8b, 0x67, 0xf2, 0x72, 0xd7, 0x45, 0xa2, 0xa9, - 0xec, 0xb8, 0x94, 0x65, 0xd9, 0x24, 0x82, 0x93, 0x54, 0xd1, 0xb7, 0xc1, 0x18, 0x9f, 0x67, 0xd1, - 0x0a, 0xb7, 0xc4, 0xf8, 0x40, 0xfe, 0x7a, 0xd1, 0x9b, 0xe0, 0x52, 0x39, 0xad, 0x3a, 0x36, 0x88, - 0xd9, 0x7f, 0x6a, 0x01, 0x5a, 0x69, 0xef, 0x90, 0x16, 0x09, 0x9c, 0x66, 0x2c, 0x4e, 0xff, 0x7e, - 0x0b, 0x66, 0x49, 0xaa, 0x78, 0xd9, 0x6f, 0xb5, 0xc4, 0xa3, 0x25, 0xe7, 0x5d, 0xbd, 0x92, 0x53, - 0x47, 0xb9, 0x25, 0xcc, 0xe6, 0x61, 0xe0, 0xdc, 0xf6, 0xd0, 0x1a, 0xcc, 0xf0, 0x5b, 0x52, 0x01, - 0x34, 0xdb, 0xeb, 0xc7, 0x05, 0xe1, 0x99, 0x8d, 0x34, 0x0a, 0xce, 0xaa, 0x67, 0x7f, 0xd7, 0x18, - 0xe4, 0xf6, 0xe2, 0x3d, 0x3d, 0xc2, 0x7b, 0x7a, 0x84, 0xf7, 0xf4, 0x08, 0xef, 0xe9, 0x11, 0xde, - 0xd3, 0x23, 0x7c, 0xd3, 0xeb, 0x11, 0xfe, 0xd8, 0x82, 0x99, 0xf4, 0x35, 0x70, 0x12, 0x8c, 0x79, - 0x07, 0x66, 0xd2, 0x77, 0x5d, 0x57, 0x3b, 0xbb, 0x74, 0x3f, 0xe3, 0x7b, 0x2f, 0xe3, 0x1b, 0x70, - 0x16, 0x7d, 0xfb, 0xff, 0xb7, 0xe0, 0xb4, 0x42, 0x36, 0x5e, 0xfa, 0x9f, 0x87, 0x19, 0x7e, 0xbe, - 0x2c, 0x37, 0x1d, 0xb7, 0xb5, 0x41, 0x5a, 0xed, 0xa6, 0x13, 0x49, 0x33, 0x83, 0xab, 0x99, 0x5b, - 0x35, 0x61, 0xa2, 0x6b, 0x54, 0x5c, 0x7a, 0x8c, 0xf6, 0x2b, 0x03, 0x80, 0xb3, 0x9a, 0xb1, 0x7f, - 0x71, 0x04, 0x06, 0x57, 0xf6, 0x88, 0x17, 0x9d, 0xc0, 0xd0, 0xd7, 0x61, 0xc2, 0xf5, 0xf6, 0xfc, - 0xe6, 0x1e, 0x69, 0x70, 0xf8, 0x51, 0x9e, 0xee, 0x67, 0x04, 0xe9, 0x89, 0x8a, 0x41, 0x02, 0x27, - 0x48, 0x3e, 0x0a, 0xf1, 0xf9, 0x35, 0x18, 0xe2, 0xb7, 0x96, 0x90, 0x9d, 0x67, 0x5e, 0x52, 0x6c, - 0x10, 0xc5, 0x5d, 0x1c, 0x8b, 0xf6, 0xf9, 0xad, 0x28, 0xaa, 0xa3, 0xcf, 0xc1, 0xc4, 0x96, 0x1b, - 0x84, 0xd1, 0x86, 0xdb, 0x22, 0x61, 0xe4, 0xb4, 0xda, 0x0f, 0x21, 0x2e, 0x57, 0xe3, 0xb0, 0x6a, - 0x50, 0xc2, 0x09, 0xca, 0x68, 0x1b, 0xc6, 0x9b, 0x8e, 0xde, 0xd4, 0xf0, 0x91, 0x9b, 0x52, 0xd7, - 0xe1, 0x4d, 0x9d, 0x10, 0x36, 0xe9, 0xd2, 0xf3, 0xa3, 0xce, 0x24, 0xbe, 0x23, 0x4c, 0x0e, 0xa2, - 0xce, 0x0f, 0x2e, 0xea, 0xe5, 0x30, 0xca, 0xd9, 0x31, 0x8b, 0xe0, 0x92, 0xc9, 0xd9, 0x69, 0x76, - 0xbf, 0x9f, 0x85, 0x12, 0xa1, 0x43, 0x48, 0x09, 0x8b, 0x1b, 0xf5, 0x4a, 0x7f, 0x7d, 0x5d, 0x73, - 0xeb, 0x81, 0x6f, 0x2a, 0x2a, 0x56, 0x24, 0x25, 0x1c, 0x13, 0x45, 0xcb, 0x30, 0x14, 0x92, 0xc0, - 0x25, 0xa1, 0xb8, 0x5b, 0xbb, 0x4c, 0x23, 0x43, 0xe3, 0xce, 0x34, 0xfc, 0x37, 0x16, 0x55, 0xe9, - 0xf2, 0x72, 0x98, 0x0c, 0x97, 0xdd, 0x7e, 0xda, 0xf2, 0x5a, 0x64, 0xa5, 0x58, 0x40, 0xd1, 0xeb, - 0x30, 0x1c, 0x90, 0x26, 0xd3, 0x84, 0x8d, 0xf7, 0xbf, 0xc8, 0xb9, 0x62, 0x8d, 0xd7, 0xc3, 0x92, - 0x00, 0xba, 0x01, 0x28, 0x20, 0x94, 0x33, 0x74, 0xbd, 0x6d, 0x65, 0x27, 0x2b, 0x6e, 0x16, 0x75, - 0x12, 0xe1, 0x18, 0x43, 0xfa, 0x35, 0xe1, 0x8c, 0x6a, 0xe8, 0x1a, 0x4c, 0xab, 0xd2, 0x8a, 0x17, - 0x46, 0x0e, 0x3d, 0xd1, 0x27, 0x19, 0x2d, 0x25, 0x98, 0xc1, 0x49, 0x04, 0x9c, 0xae, 0x63, 0x7f, - 0xd9, 0x02, 0x3e, 0xce, 0x27, 0x20, 0x8e, 0x78, 0xcd, 0x14, 0x47, 0x9c, 0xcd, 0x9d, 0xb9, 0x1c, - 0x51, 0xc4, 0x97, 0x2d, 0x18, 0xd5, 0x66, 0x36, 0x5e, 0xb3, 0x56, 0x97, 0x35, 0xdb, 0x81, 0x29, - 0xba, 0xd2, 0x6f, 0x6d, 0x86, 0x24, 0xd8, 0x23, 0x0d, 0xb6, 0x30, 0x0b, 0x0f, 0xb7, 0x30, 0x95, - 0x4d, 0xde, 0xcd, 0x04, 0x41, 0x9c, 0x6a, 0xc2, 0xfe, 0xac, 0xec, 0xaa, 0x32, 0x61, 0xac, 0xab, - 0x39, 0x4f, 0x98, 0x30, 0xaa, 0x59, 0xc5, 0x31, 0x0e, 0xdd, 0x6a, 0x3b, 0x7e, 0x18, 0x25, 0x4d, - 0x18, 0xaf, 0xfb, 0x61, 0x84, 0x19, 0xc4, 0x7e, 0x01, 0x60, 0xe5, 0x3e, 0xa9, 0xf3, 0x15, 0xab, - 0xbf, 0x96, 0xac, 0xfc, 0xd7, 0x92, 0xfd, 0xdb, 0x16, 0x4c, 0xac, 0x2e, 0x1b, 0x37, 0xd7, 0x02, - 0x00, 0x7f, 0xe2, 0xdd, 0xbd, 0xbb, 0x2e, 0xf5, 0xff, 0x5c, 0x85, 0xab, 0x4a, 0xb1, 0x86, 0x81, - 0xce, 0x42, 0xb1, 0xd9, 0xf1, 0x84, 0xbc, 0x74, 0x98, 0xf2, 0x03, 0x37, 0x3b, 0x1e, 0xa6, 0x65, - 0x9a, 0x0f, 0x45, 0xb1, 0x6f, 0x1f, 0x8a, 0x9e, 0xb1, 0x0c, 0xd0, 0x3c, 0x0c, 0xde, 0xbb, 0xe7, - 0x36, 0xb8, 0xc7, 0xa8, 0xb0, 0x4d, 0xb8, 0x7b, 0xb7, 0x52, 0x0e, 0x31, 0x2f, 0xb7, 0xbf, 0x54, - 0x84, 0xb9, 0xd5, 0x26, 0xb9, 0xff, 0x0e, 0xbd, 0x66, 0xfb, 0xf5, 0x00, 0x39, 0x9a, 0xe4, 0xe9, - 0xa8, 0x5e, 0x3e, 0xbd, 0xc7, 0x63, 0x0b, 0x86, 0xb9, 0x05, 0x9f, 0xf4, 0xa1, 0x7d, 0x35, 0xab, - 0xf5, 0xfc, 0x01, 0x59, 0xe0, 0x96, 0x80, 0xc2, 0x05, 0x50, 0x5d, 0x98, 0xa2, 0x14, 0x4b, 0xe2, - 0x73, 0xaf, 0xc0, 0x98, 0x8e, 0x79, 0x24, 0x7f, 0xbb, 0xff, 0xa7, 0x08, 0x53, 0xb4, 0x07, 0x8f, - 0x74, 0x22, 0x6e, 0xa7, 0x27, 0xe2, 0xb8, 0x7d, 0xae, 0x7a, 0xcf, 0xc6, 0x9b, 0xc9, 0xd9, 0xb8, - 0x9a, 0x37, 0x1b, 0x27, 0x3d, 0x07, 0xdf, 0x69, 0xc1, 0xcc, 0x6a, 0xd3, 0xaf, 0xef, 0x26, 0xfc, - 0xa2, 0x5e, 0x82, 0x51, 0x7a, 0x1c, 0x87, 0x86, 0xcb, 0xbe, 0x11, 0xc4, 0x41, 0x80, 0xb0, 0x8e, - 0xa7, 0x55, 0xbb, 0x7d, 0xbb, 0x52, 0xce, 0x8a, 0xfd, 0x20, 0x40, 0x58, 0xc7, 0xb3, 0x7f, 0xd3, - 0x82, 0x73, 0xd7, 0x96, 0x57, 0xe2, 0xa5, 0x98, 0x0a, 0x3f, 0x71, 0x09, 0x86, 0xda, 0x0d, 0xad, - 0x2b, 0xb1, 0x3c, 0xb9, 0xcc, 0x7a, 0x21, 0xa0, 0xef, 0x96, 0xd0, 0x2a, 0x3f, 0x6d, 0xc1, 0xcc, - 0x35, 0x37, 0xa2, 0xb7, 0x6b, 0x32, 0x10, 0x02, 0xbd, 0x5e, 0x43, 0x37, 0xf2, 0x83, 0xfd, 0x64, - 0x20, 0x04, 0xac, 0x20, 0x58, 0xc3, 0xe2, 0x2d, 0xef, 0xb9, 0xcc, 0x76, 0xbc, 0x60, 0x6a, 0xd6, - 0xb0, 0x28, 0xc7, 0x0a, 0x83, 0x7e, 0x58, 0xc3, 0x0d, 0x98, 0x50, 0x72, 0x5f, 0x9c, 0xb0, 0xea, - 0xc3, 0xca, 0x12, 0x80, 0x63, 0x1c, 0xfa, 0x3e, 0x9b, 0xbf, 0xd6, 0xec, 0x84, 0x11, 0x09, 0xb6, - 0xc2, 0x9c, 0xd3, 0xf1, 0x05, 0x28, 0x11, 0xa9, 0x02, 0x10, 0xbd, 0x56, 0x1c, 0xa3, 0xd2, 0x0d, - 0xf0, 0x78, 0x0c, 0x0a, 0xaf, 0x0f, 0x2f, 0xcb, 0xa3, 0xb9, 0xc9, 0xad, 0x02, 0x22, 0x7a, 0x5b, - 0x7a, 0x80, 0x0a, 0xe6, 0xe9, 0xbe, 0x92, 0x82, 0xe2, 0x8c, 0x1a, 0xf6, 0x8f, 0x59, 0x70, 0x5a, - 0x7d, 0xf0, 0xbb, 0xee, 0x33, 0xed, 0x9f, 0x2b, 0xc0, 0xf8, 0xf5, 0x8d, 0x8d, 0xea, 0x35, 0x12, - 0x89, 0x6b, 0xbb, 0xb7, 0x62, 0x1f, 0x6b, 0xfa, 0xc9, 0x6e, 0x8f, 0xb9, 0x4e, 0xe4, 0x36, 0x17, - 0x78, 0x9c, 0xa3, 0x85, 0x8a, 0x17, 0xdd, 0x0a, 0x6a, 0x51, 0xe0, 0x7a, 0xdb, 0x99, 0x1a, 0x4d, - 0xc9, 0x5c, 0x14, 0xf3, 0x98, 0x0b, 0xf4, 0x02, 0x0c, 0xb1, 0x40, 0x4b, 0x72, 0x12, 0x1e, 0x57, - 0x6f, 0x21, 0x56, 0x7a, 0x78, 0x30, 0x5f, 0xba, 0x8d, 0x2b, 0xfc, 0x0f, 0x16, 0xa8, 0xe8, 0x36, - 0x8c, 0xee, 0x44, 0x51, 0xfb, 0x3a, 0x71, 0x1a, 0xf4, 0x31, 0xce, 0x8f, 0xc3, 0xf3, 0x59, 0xc7, - 0x21, 0x1d, 0x04, 0x8e, 0x16, 0x9f, 0x20, 0x71, 0x59, 0x88, 0x75, 0x3a, 0x76, 0x0d, 0x20, 0x86, - 0x1d, 0x93, 0x6a, 0xc6, 0xfe, 0x43, 0x0b, 0x86, 0x79, 0xcc, 0x8b, 0x00, 0x7d, 0x14, 0x06, 0xc8, - 0x7d, 0x52, 0x17, 0x1c, 0x6f, 0x66, 0x87, 0x63, 0x4e, 0x8b, 0x8b, 0x98, 0xe9, 0x7f, 0xcc, 0x6a, - 0xa1, 0xeb, 0x30, 0x4c, 0x7b, 0x7b, 0x4d, 0x05, 0x00, 0x79, 0x32, 0xef, 0x8b, 0xd5, 0xb4, 0x73, - 0xe6, 0x4c, 0x14, 0x61, 0x59, 0x9d, 0xe9, 0xc3, 0xeb, 0xed, 0x1a, 0x3d, 0xb1, 0xa3, 0x6e, 0x8c, - 0xc5, 0xc6, 0x72, 0x95, 0x23, 0x09, 0x6a, 0x5c, 0x1f, 0x2e, 0x0b, 0x71, 0x4c, 0xc4, 0xde, 0x80, - 0x12, 0x9d, 0xd4, 0xc5, 0xa6, 0xeb, 0x74, 0x57, 0xf1, 0x3f, 0x03, 0x25, 0xa9, 0xc0, 0x0f, 0x85, - 0xaf, 0x3b, 0xa3, 0x2a, 0xf5, 0xfb, 0x21, 0x8e, 0xe1, 0xf6, 0x16, 0x9c, 0x62, 0xe6, 0x98, 0x4e, - 0xb4, 0x63, 0xec, 0xb1, 0xde, 0x8b, 0xf9, 0x59, 0xf1, 0x80, 0xe4, 0x33, 0x33, 0xab, 0xb9, 0x93, - 0x8e, 0x49, 0x8a, 0xf1, 0x63, 0xd2, 0xfe, 0xda, 0x00, 0x3c, 0x5e, 0xa9, 0xe5, 0x87, 0x43, 0x79, - 0x19, 0xc6, 0x38, 0x5f, 0x4a, 0x97, 0xb6, 0xd3, 0x14, 0xed, 0x2a, 0xd9, 0xf2, 0x86, 0x06, 0xc3, - 0x06, 0x26, 0x3a, 0x07, 0x45, 0xf7, 0x2d, 0x2f, 0xe9, 0x6c, 0x55, 0x79, 0x63, 0x1d, 0xd3, 0x72, - 0x0a, 0xa6, 0x2c, 0x2e, 0xbf, 0x3b, 0x14, 0x58, 0xb1, 0xb9, 0xaf, 0xc1, 0x84, 0x1b, 0xd6, 0x43, - 0xb7, 0xe2, 0xd1, 0x73, 0x46, 0x3b, 0xa9, 0x94, 0x70, 0x83, 0x76, 0x5a, 0x41, 0x71, 0x02, 0x5b, - 0xbb, 0xc8, 0x06, 0xfb, 0x66, 0x93, 0x7b, 0x3a, 0x7f, 0xd3, 0x17, 0x40, 0x9b, 0x7d, 0x5d, 0xc8, - 0x94, 0x04, 0xe2, 0x05, 0xc0, 0x3f, 0x38, 0xc4, 0x12, 0x46, 0x5f, 0x8e, 0xf5, 0x1d, 0xa7, 0xbd, - 0xd8, 0x89, 0x76, 0xca, 0x6e, 0x58, 0xf7, 0xf7, 0x48, 0xb0, 0xcf, 0x1e, 0xfd, 0x23, 0xf1, 0xcb, - 0x51, 0x01, 0x96, 0xaf, 0x2f, 0x56, 0x29, 0x26, 0x4e, 0xd7, 0x41, 0x8b, 0x30, 0x29, 0x0b, 0x6b, - 0x24, 0x64, 0x57, 0xd8, 0x28, 0x23, 0xa3, 0xdc, 0x9f, 0x44, 0xb1, 0x22, 0x92, 0xc4, 0x37, 0x39, - 0x69, 0x38, 0x0e, 0x4e, 0xfa, 0x23, 0x30, 0xee, 0x7a, 0x6e, 0xe4, 0x3a, 0x91, 0xcf, 0x35, 0x5c, - 0xfc, 0x7d, 0xcf, 0x44, 0xf7, 0x15, 0x1d, 0x80, 0x4d, 0x3c, 0xfb, 0x3f, 0x0f, 0xc0, 0x34, 0x9b, - 0xb6, 0xf7, 0x56, 0xd8, 0x37, 0xd3, 0x0a, 0xbb, 0x9d, 0x5e, 0x61, 0xc7, 0xf1, 0x44, 0x78, 0xe8, - 0x65, 0xf6, 0x39, 0x28, 0x29, 0x8f, 0x2f, 0xe9, 0xf2, 0x69, 0xe5, 0xb8, 0x7c, 0xf6, 0xe6, 0x3e, - 0xa4, 0xd1, 0x5c, 0x31, 0xd3, 0x68, 0xee, 0xaf, 0x5b, 0x10, 0xab, 0x6c, 0xd0, 0x75, 0x28, 0xb5, - 0x7d, 0x66, 0x0b, 0x1a, 0x48, 0x03, 0xeb, 0xc7, 0x33, 0x2f, 0x2a, 0x7e, 0x29, 0xf2, 0x8f, 0xaf, - 0xca, 0x1a, 0x38, 0xae, 0x8c, 0x96, 0x60, 0xb8, 0x1d, 0x90, 0x5a, 0xc4, 0xa2, 0xa2, 0xf4, 0xa4, - 0xc3, 0xd7, 0x08, 0xc7, 0xc7, 0xb2, 0xa2, 0xfd, 0xf3, 0x16, 0x00, 0xb7, 0x4b, 0x73, 0xbc, 0x6d, - 0x72, 0x02, 0x52, 0xeb, 0x32, 0x0c, 0x84, 0x6d, 0x52, 0xef, 0x66, 0xa5, 0x1b, 0xf7, 0xa7, 0xd6, - 0x26, 0xf5, 0x78, 0xc0, 0xe9, 0x3f, 0xcc, 0x6a, 0xdb, 0xdf, 0x0d, 0x30, 0x11, 0xa3, 0x55, 0x22, - 0xd2, 0x42, 0xcf, 0x19, 0x51, 0x12, 0xce, 0x26, 0xa2, 0x24, 0x94, 0x18, 0xb6, 0x26, 0x20, 0xfd, - 0x1c, 0x14, 0x5b, 0xce, 0x7d, 0x21, 0x01, 0x7b, 0xa6, 0x7b, 0x37, 0x28, 0xfd, 0x85, 0x35, 0xe7, - 0x3e, 0x7f, 0x24, 0x3e, 0x23, 0x17, 0xc8, 0x9a, 0x73, 0xff, 0x90, 0xdb, 0xe2, 0xb2, 0x43, 0xea, - 0xa6, 0x1b, 0x46, 0x5f, 0xf8, 0x4f, 0xf1, 0x7f, 0xb6, 0xec, 0x68, 0x23, 0xac, 0x2d, 0xd7, 0x13, - 0x26, 0x57, 0x7d, 0xb5, 0xe5, 0x7a, 0xc9, 0xb6, 0x5c, 0xaf, 0x8f, 0xb6, 0x5c, 0x0f, 0xbd, 0x0d, - 0xc3, 0xc2, 0x22, 0x52, 0x44, 0x25, 0xba, 0xd2, 0x47, 0x7b, 0xc2, 0xa0, 0x92, 0xb7, 0x79, 0x45, - 0x3e, 0x82, 0x45, 0x69, 0xcf, 0x76, 0x65, 0x83, 0xe8, 0xaf, 0x58, 0x30, 0x21, 0x7e, 0x63, 0xf2, - 0x56, 0x87, 0x84, 0x91, 0xe0, 0x3d, 0x3f, 0xdc, 0x7f, 0x1f, 0x44, 0x45, 0xde, 0x95, 0x0f, 0xcb, - 0x63, 0xd6, 0x04, 0xf6, 0xec, 0x51, 0xa2, 0x17, 0xe8, 0xef, 0x59, 0x70, 0xaa, 0xe5, 0xdc, 0xe7, - 0x2d, 0xf2, 0x32, 0xec, 0x44, 0xae, 0x2f, 0x2c, 0x0b, 0x3e, 0xda, 0xdf, 0xf4, 0xa7, 0xaa, 0xf3, - 0x4e, 0x4a, 0xf5, 0xe7, 0xa9, 0x2c, 0x94, 0x9e, 0x5d, 0xcd, 0xec, 0xd7, 0xdc, 0x16, 0x8c, 0xc8, - 0xf5, 0x96, 0x21, 0x6a, 0x28, 0xeb, 0x8c, 0xf5, 0x91, 0x0d, 0x52, 0xf5, 0xe8, 0x03, 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, 0xed, 0x6a, 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, 0x04, 0x4c, 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, 0x14, 0x5e, 0xe8, 0x69, 0x14, 0xbe, - 0x2c, 0x6d, 0xaa, 0x06, 0xf2, 0xe7, 0x8f, 0x32, 0x92, 0xc9, 0xb8, 0x31, 0x86, 0xf5, 0xef, 0x0e, - 0x20, 0xbd, 0x97, 0xc2, 0x45, 0x07, 0xc3, 0xb0, 0xcb, 0xfb, 0x2b, 0x26, 0xf1, 0xa9, 0x6c, 0x06, - 0x2f, 0xf5, 0x79, 0x9a, 0xf3, 0x09, 0x2f, 0xc0, 0x92, 0x90, 0xfd, 0x32, 0x64, 0xfa, 0xf9, 0xf7, - 0x16, 0x3e, 0xd8, 0x9f, 0x84, 0x69, 0x56, 0xf3, 0x88, 0x0f, 0x63, 0x3b, 0x21, 0xdb, 0xcc, 0x88, - 0x00, 0x68, 0x7f, 0xd1, 0x82, 0xc9, 0xf5, 0x44, 0x60, 0xb4, 0x4b, 0x4c, 0x1b, 0x9a, 0x21, 0x52, - 0xaf, 0xb1, 0x52, 0x2c, 0xa0, 0xc7, 0x2e, 0xc9, 0xfa, 0x4b, 0x0b, 0xe2, 0xd0, 0x1b, 0x27, 0xc0, - 0xbe, 0x2d, 0x1b, 0xec, 0x5b, 0xa6, 0x84, 0x45, 0x75, 0x27, 0x8f, 0x7b, 0x43, 0x37, 0x54, 0x50, - 0xaa, 0x2e, 0xc2, 0x95, 0x98, 0x0c, 0x5f, 0x8a, 0x13, 0x66, 0xe4, 0x2a, 0x19, 0xa6, 0xca, 0xfe, - 0x9d, 0x02, 0x20, 0x85, 0xdb, 0x77, 0xd0, 0xac, 0x74, 0x8d, 0xe3, 0x09, 0x9a, 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, - 0xdc, 0xf0, 0x7e, 0xd6, 0x82, 0x71, 0x35, 0x4c, 0xef, 0x12, 0x23, 0x79, 0xd5, 0x9f, 0x9c, 0x03, - 0xb4, 0xaa, 0x75, 0x99, 0x5d, 0x2c, 0xdf, 0xca, 0xdc, 0x29, 0x9d, 0xa6, 0xfb, 0x36, 0x51, 0x21, - 0x0b, 0xe7, 0x85, 0x7b, 0xa4, 0x28, 0x3d, 0x3c, 0x98, 0x1f, 0x57, 0xff, 0x78, 0x88, 0xe4, 0xb8, - 0x0a, 0x3d, 0x92, 0x27, 0x13, 0x4b, 0x11, 0xbd, 0x04, 0x83, 0xed, 0x1d, 0x27, 0x24, 0x09, 0x67, - 0xa2, 0xc1, 0x2a, 0x2d, 0x3c, 0x3c, 0x98, 0x9f, 0x50, 0x15, 0x58, 0x09, 0xe6, 0xd8, 0xfd, 0x87, - 0x22, 0x4b, 0x2f, 0xce, 0x9e, 0xa1, 0xc8, 0xfe, 0xd4, 0x82, 0x81, 0x75, 0xbf, 0x71, 0x12, 0x47, - 0xc0, 0x6b, 0xc6, 0x11, 0xf0, 0x44, 0x5e, 0xf4, 0xfa, 0xdc, 0xdd, 0xbf, 0x9a, 0xd8, 0xfd, 0xe7, - 0x73, 0x29, 0x74, 0xdf, 0xf8, 0x2d, 0x18, 0x65, 0x31, 0xf1, 0x85, 0xe3, 0xd4, 0x0b, 0xc6, 0x86, - 0x9f, 0x4f, 0x6c, 0xf8, 0x49, 0x0d, 0x55, 0xdb, 0xe9, 0x4f, 0xc3, 0xb0, 0xf0, 0xc4, 0x49, 0x7a, - 0xa5, 0x0a, 0x5c, 0x2c, 0xe1, 0xf6, 0x8f, 0x17, 0xc1, 0x88, 0xc1, 0x8f, 0x7e, 0xc5, 0x82, 0x85, - 0x80, 0x5b, 0xe8, 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, 0xc0, - 0x7f, 0x65, 0xe9, 0xfe, 0xfc, 0x83, 0x83, 0xf9, 0x05, 0x7c, 0x24, 0xda, 0xf8, 0x88, 0x7d, 0x41, - 0xbf, 0x69, 0xc1, 0x15, 0x1e, 0x9a, 0xbe, 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, 0xd3, 0x22, 0x8c, 0x8b, 0x90, 0x55, 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, 0x75, 0xec, 0x53, 0x50, 0x52, 0x6e, 0x24, - 0xe2, 0xd0, 0xe9, 0x1e, 0xbc, 0x2f, 0x49, 0x81, 0x8b, 0xd0, 0x62, 0x17, 0xa6, 0x98, 0x9c, 0xfd, - 0xf7, 0x0b, 0x46, 0x83, 0x7c, 0x12, 0xd7, 0x61, 0xc4, 0x09, 0x43, 0x77, 0xdb, 0x23, 0x0d, 0xb1, - 0x63, 0xdf, 0x9f, 0xb7, 0x63, 0x8d, 0x66, 0x98, 0x2b, 0xcf, 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, 0x2c, 0x44, 0x7f, - 0x04, 0xa7, 0xa5, 0xed, 0xa1, 0xaa, 0x8e, 0x4d, 0x6a, 0xfd, 0x85, 0xf1, 0xfc, 0x3c, 0xcc, 0x50, - 0xd2, 0xa6, 0xd7, 0x76, 0x88, 0x08, 0x4c, 0x8a, 0x78, 0x68, 0xb2, 0x4c, 0x8c, 0x5d, 0xe6, 0x53, - 0xce, 0xac, 0x1d, 0xcb, 0x91, 0x6f, 0x98, 0x24, 0x70, 0x92, 0xa6, 0xfd, 0x53, 0x16, 0x30, 0x0f, - 0xd6, 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, 0x59, 0xfc, - 0x10, 0x53, 0x4e, 0x1e, 0xe8, 0xdb, 0x61, 0xa4, 0xee, 0xb4, 0x9d, 0x3a, 0x4f, 0x18, 0x93, 0x2b, - 0xd1, 0x33, 0x2a, 0x2d, 0x2c, 0x8b, 0x1a, 0x5c, 0x42, 0x25, 0xe3, 0xea, 0x8d, 0xc8, 0xe2, 0x9e, - 0x52, 0x29, 0xd5, 0xe4, 0xdc, 0x2e, 0x8c, 0x1b, 0xc4, 0x1e, 0xa9, 0x38, 0xe3, 0xdb, 0xf9, 0x15, - 0xab, 0xe2, 0x40, 0xb6, 0x60, 0xda, 0xd3, 0xfe, 0xd3, 0x0b, 0x45, 0x3e, 0x2e, 0xdf, 0xdf, 0xeb, - 0x12, 0x65, 0xb7, 0x8f, 0xe6, 0x1c, 0x9b, 0x20, 0x83, 0xd3, 0x94, 0xed, 0x9f, 0xb0, 0xe0, 0x31, - 0x1d, 0x51, 0xf3, 0xbf, 0xe9, 0xa5, 0x23, 0x28, 0xc3, 0x88, 0xdf, 0x26, 0x81, 0x13, 0xf9, 0x81, - 0xb8, 0x35, 0x2e, 0xcb, 0x41, 0xbf, 0x25, 0xca, 0x0f, 0x45, 0xb8, 0x75, 0x49, 0x5d, 0x96, 0x63, - 0x55, 0x93, 0xbe, 0x3e, 0xd9, 0x60, 0x84, 0xc2, 0xd3, 0x8a, 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, 0x44, 0x18, 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, 0x70, 0x8b, 0xa2, - 0x69, 0x2c, 0x54, 0x55, 0x10, 0xac, 0x61, 0xa1, 0x57, 0x61, 0xbc, 0xe3, 0x85, 0x9c, 0x1d, 0xd1, - 0x42, 0xd9, 0x2a, 0x33, 0x96, 0xdb, 0x3a, 0x10, 0x9b, 0xb8, 0x68, 0x11, 0x86, 0x22, 0x87, 0x19, - 0xbf, 0x0c, 0xe6, 0x1b, 0xdf, 0x6e, 0x50, 0x0c, 0x3d, 0x37, 0x09, 0xad, 0x80, 0x45, 0x45, 0xf4, - 0x29, 0xe9, 0xcf, 0xcb, 0x0f, 0x76, 0x61, 0xf5, 0xde, 0xdf, 0x25, 0xa0, 0x79, 0xf3, 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, 0x60, 0xc3, 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, 0x87, 0x45, 0x83, 0x7d, 0xed, 0xf5, 0x40, 0x44, 0x55, 0x3d, 0x78, - 0xc1, 0x60, 0xbe, 0x77, 0xa0, 0xf6, 0x4e, 0xea, 0x11, 0xb8, 0xe0, 0x73, 0x30, 0xd9, 0x30, 0x99, - 0x00, 0xb1, 0x12, 0x9f, 0xca, 0xa3, 0x9b, 0xe0, 0x19, 0xe2, 0x6b, 0x3f, 0x01, 0xc0, 0x49, 0xc2, - 0xa8, 0xca, 0x63, 0x59, 0x54, 0xbc, 0x2d, 0x5f, 0x78, 0x5e, 0xd8, 0xb9, 0x73, 0xb9, 0x1f, 0x46, - 0xa4, 0x45, 0x31, 0xe3, 0xdb, 0x7d, 0x5d, 0xd4, 0xc5, 0x8a, 0x0a, 0x7a, 0x1d, 0x86, 0x98, 0x7b, - 0x58, 0x38, 0x3b, 0x92, 0x2f, 0x71, 0x36, 0x83, 0xb3, 0xc5, 0x1b, 0x92, 0xfd, 0x0d, 0xb1, 0xa0, - 0x80, 0xae, 0x4b, 0xe7, 0xcb, 0xb0, 0xe2, 0xdd, 0x0e, 0x09, 0x73, 0xbe, 0x2c, 0x2d, 0xbd, 0x3f, - 0xf6, 0xab, 0xe4, 0xe5, 0x99, 0x19, 0xcc, 0x8c, 0x9a, 0x94, 0x8b, 0x12, 0xff, 0x65, 0x62, 0xb4, - 0x59, 0xc8, 0xef, 0x9e, 0x99, 0x3c, 0x2d, 0x1e, 0xce, 0x3b, 0x26, 0x09, 0x9c, 0xa4, 0x49, 0x39, - 0x52, 0xbe, 0xeb, 0x85, 0xef, 0x46, 0xaf, 0xb3, 0x83, 0x3f, 0xc4, 0xd9, 0x6d, 0xc4, 0x4b, 0xb0, - 0xa8, 0x7f, 0xa2, 0xec, 0xc1, 0x9c, 0x07, 0x53, 0xc9, 0x2d, 0xfa, 0x48, 0xd9, 0x91, 0x3f, 0x1c, - 0x80, 0x09, 0x73, 0x49, 0xa1, 0x2b, 0x50, 0x12, 0x44, 0x54, 0x32, 0x03, 0xb5, 0x4b, 0xd6, 0x24, - 0x00, 0xc7, 0x38, 0x2c, 0x87, 0x05, 0xab, 0xae, 0x19, 0xeb, 0xc6, 0x39, 0x2c, 0x14, 0x04, 0x6b, - 0x58, 0xf4, 0x61, 0xb5, 0xe9, 0xfb, 0x91, 0xba, 0x90, 0xd4, 0xba, 0x5b, 0x62, 0xa5, 0x58, 0x40, - 0xe9, 0x45, 0xb4, 0x4b, 0x02, 0x8f, 0x34, 0xcd, 0xb0, 0xc7, 0xea, 0x22, 0xba, 0xa1, 0x03, 0xb1, - 0x89, 0x4b, 0xaf, 0x53, 0x3f, 0x64, 0x0b, 0x59, 0x3c, 0xdf, 0x62, 0xe3, 0xe7, 0x1a, 0xf7, 0xff, - 0x96, 0x70, 0xf4, 0x49, 0x78, 0x4c, 0x85, 0x76, 0xc2, 0x5c, 0x9b, 0x21, 0x5b, 0x1c, 0x32, 0xa4, - 0x2d, 0x8f, 0x2d, 0x67, 0xa3, 0xe1, 0xbc, 0xfa, 0xe8, 0x35, 0x98, 0x10, 0x2c, 0xbe, 0xa4, 0x38, - 0x6c, 0x1a, 0xd8, 0xdc, 0x30, 0xa0, 0x38, 0x81, 0x2d, 0x03, 0x37, 0x33, 0x2e, 0x5b, 0x52, 0x18, - 0x49, 0x07, 0x6e, 0xd6, 0xe1, 0x38, 0x55, 0x03, 0x2d, 0xc2, 0x24, 0xe7, 0xc1, 0x5c, 0x6f, 0x9b, - 0xcf, 0x89, 0x70, 0xad, 0x52, 0x5b, 0xea, 0x96, 0x09, 0xc6, 0x49, 0x7c, 0xf4, 0x32, 0x8c, 0x39, - 0x41, 0x7d, 0xc7, 0x8d, 0x48, 0x3d, 0xea, 0x04, 0xdc, 0xe7, 0x4a, 0xb3, 0x50, 0x5a, 0xd4, 0x60, - 0xd8, 0xc0, 0xb4, 0xdf, 0x86, 0x99, 0x8c, 0xc0, 0x10, 0x74, 0xe1, 0x38, 0x6d, 0x57, 0x7e, 0x53, - 0xc2, 0x8c, 0x79, 0xb1, 0x5a, 0x91, 0x5f, 0xa3, 0x61, 0xd1, 0xd5, 0xc9, 0x02, 0x48, 0x68, 0x79, - 0x10, 0xd5, 0xea, 0x5c, 0x95, 0x00, 0x1c, 0xe3, 0xd8, 0xff, 0xbd, 0x00, 0x93, 0x19, 0xba, 0x15, - 0x96, 0x8b, 0x2f, 0xf1, 0x48, 0x89, 0x53, 0xef, 0x99, 0x71, 0xc0, 0x0b, 0x47, 0x88, 0x03, 0x5e, - 0xec, 0x15, 0x07, 0x7c, 0xe0, 0x9d, 0xc4, 0x01, 0x37, 0x47, 0x6c, 0xb0, 0xaf, 0x11, 0xcb, 0x88, - 0x1d, 0x3e, 0x74, 0xc4, 0xd8, 0xe1, 0xc6, 0xa0, 0x0f, 0xf7, 0x31, 0xe8, 0x3f, 0x5c, 0x80, 0xa9, - 0xa4, 0x25, 0xe5, 0x09, 0xc8, 0x6d, 0x5f, 0x37, 0xe4, 0xb6, 0x97, 0xfb, 0x71, 0x85, 0xcd, 0x95, - 0xe1, 0xe2, 0x84, 0x0c, 0xf7, 0x83, 0x7d, 0x51, 0xeb, 0x2e, 0xcf, 0xfd, 0x9b, 0x05, 0x38, 0x9d, - 0xe9, 0x8b, 0x7b, 0x02, 0x63, 0x73, 0xcb, 0x18, 0x9b, 0xe7, 0xfa, 0x76, 0x13, 0xce, 0x1d, 0xa0, - 0xbb, 0x89, 0x01, 0xba, 0xd2, 0x3f, 0xc9, 0xee, 0xa3, 0xf4, 0xd5, 0x22, 0x9c, 0xcf, 0xac, 0x17, - 0x8b, 0x3d, 0x57, 0x0d, 0xb1, 0xe7, 0xf3, 0x09, 0xb1, 0xa7, 0xdd, 0xbd, 0xf6, 0xf1, 0xc8, 0x41, - 0x85, 0xbb, 0x2c, 0x8b, 0x72, 0xf0, 0x90, 0x32, 0x50, 0xc3, 0x5d, 0x56, 0x11, 0xc2, 0x26, 0xdd, - 0x6f, 0x26, 0xd9, 0xe7, 0xbf, 0xb6, 0xe0, 0x6c, 0xe6, 0xdc, 0x9c, 0x80, 0xac, 0x6b, 0xdd, 0x94, - 0x75, 0x3d, 0xdd, 0xf7, 0x6a, 0xcd, 0x11, 0x7e, 0xfd, 0xfa, 0x40, 0xce, 0xb7, 0xb0, 0x97, 0xfc, - 0x2d, 0x18, 0x75, 0xea, 0x75, 0x12, 0x86, 0x6b, 0x7e, 0x43, 0x85, 0x3a, 0x7e, 0x8e, 0xbd, 0xb3, - 0xe2, 0xe2, 0xc3, 0x83, 0xf9, 0xb9, 0x24, 0x89, 0x18, 0x8c, 0x75, 0x0a, 0xe8, 0xd3, 0x30, 0x12, - 0x8a, 0x7b, 0x53, 0xcc, 0xfd, 0x0b, 0x7d, 0x0e, 0x8e, 0xb3, 0x49, 0x9a, 0x66, 0x2c, 0x26, 0x25, - 0xa9, 0x50, 0x24, 0xcd, 0xb8, 0x2d, 0x85, 0x63, 0x8d, 0xdb, 0xf2, 0x3c, 0xc0, 0x9e, 0x7a, 0x0c, - 0x24, 0xe5, 0x0f, 0xda, 0x33, 0x41, 0xc3, 0x42, 0x1f, 0x87, 0xa9, 0x90, 0x07, 0x2b, 0x5c, 0x6e, - 0x3a, 0x21, 0x73, 0x96, 0x11, 0xab, 0x90, 0xc5, 0x7b, 0xaa, 0x25, 0x60, 0x38, 0x85, 0x8d, 0x56, - 0x65, 0xab, 0x2c, 0xb2, 0x22, 0x5f, 0x98, 0x97, 0xe2, 0x16, 0x45, 0x26, 0xe0, 0x53, 0xc9, 0xe1, - 0x67, 0x03, 0xaf, 0xd5, 0x44, 0x9f, 0x06, 0xa0, 0xcb, 0x47, 0xc8, 0x21, 0x86, 0xf3, 0x0f, 0x4f, - 0x7a, 0xaa, 0x34, 0x32, 0x6d, 0x7b, 0x99, 0x87, 0x6b, 0x59, 0x11, 0xc1, 0x1a, 0x41, 0xfb, 0x87, - 0x07, 0xe0, 0xf1, 0x2e, 0x67, 0x24, 0x5a, 0x34, 0xf5, 0xb0, 0xcf, 0x24, 0x1f, 0xd7, 0x73, 0x99, - 0x95, 0x8d, 0xd7, 0x76, 0x62, 0x29, 0x16, 0xde, 0xf1, 0x52, 0xfc, 0x01, 0x4b, 0x13, 0x7b, 0x70, - 0x8b, 0xcf, 0x8f, 0x1d, 0xf1, 0xec, 0x3f, 0x46, 0x39, 0xc8, 0x56, 0x86, 0x30, 0xe1, 0xf9, 0xbe, - 0xbb, 0xd3, 0xb7, 0x74, 0xe1, 0x64, 0xa5, 0xc4, 0xbf, 0x6d, 0xc1, 0xb9, 0xae, 0x41, 0x3b, 0xbe, - 0x01, 0x19, 0x06, 0xfb, 0x0b, 0x16, 0x3c, 0x99, 0x59, 0xc3, 0x30, 0x33, 0xba, 0x02, 0xa5, 0x3a, - 0x2d, 0xd4, 0xbc, 0x34, 0x63, 0xf7, 0x75, 0x09, 0xc0, 0x31, 0x8e, 0x61, 0x4d, 0x54, 0xe8, 0x69, - 0x4d, 0xf4, 0xab, 0x16, 0xa4, 0x36, 0xfd, 0x09, 0xdc, 0x3e, 0x15, 0xf3, 0xf6, 0x79, 0x7f, 0x3f, - 0xa3, 0x99, 0x73, 0xf1, 0xfc, 0xc9, 0x24, 0x9c, 0xc9, 0xf1, 0x52, 0xda, 0x83, 0xe9, 0xed, 0x3a, - 0x31, 0xfd, 0x5f, 0xbb, 0xc5, 0x85, 0xe9, 0xea, 0x2c, 0xcb, 0x72, 0x95, 0x4e, 0xa7, 0x50, 0x70, - 0xba, 0x09, 0xf4, 0x05, 0x0b, 0x4e, 0x39, 0xf7, 0xc2, 0x15, 0xca, 0x45, 0xb8, 0xf5, 0xa5, 0xa6, - 0x5f, 0xdf, 0xa5, 0x47, 0xb4, 0xdc, 0x08, 0x2f, 0x66, 0x4a, 0x76, 0xee, 0xd6, 0x52, 0xf8, 0x46, - 0xf3, 0x2c, 0x79, 0x6b, 0x16, 0x16, 0xce, 0x6c, 0x0b, 0x61, 0x11, 0xd1, 0x9f, 0xbe, 0x51, 0xba, - 0x78, 0x68, 0x67, 0xb9, 0x93, 0xf1, 0x6b, 0x51, 0x42, 0xb0, 0xa2, 0x83, 0x3e, 0x0b, 0xa5, 0x6d, - 0xe9, 0xe3, 0x99, 0x71, 0xed, 0xc6, 0x03, 0xd9, 0xdd, 0xf3, 0x95, 0xab, 0x67, 0x15, 0x12, 0x8e, - 0x89, 0xa2, 0xd7, 0xa0, 0xe8, 0x6d, 0x85, 0xdd, 0xf2, 0x9f, 0x26, 0xec, 0xf0, 0x78, 0x1c, 0x84, - 0xf5, 0xd5, 0x1a, 0xa6, 0x15, 0xd1, 0x75, 0x28, 0x06, 0x9b, 0x0d, 0x21, 0x96, 0xcc, 0xdc, 0xa4, - 0x78, 0xa9, 0x9c, 0xd3, 0x2b, 0x46, 0x09, 0x2f, 0x95, 0x31, 0x25, 0x81, 0xaa, 0x30, 0xc8, 0x5c, - 0x7b, 0xc4, 0x25, 0x97, 0xc9, 0xce, 0x77, 0x71, 0x91, 0xe3, 0xc1, 0x12, 0x18, 0x02, 0xe6, 0x84, - 0xd0, 0x06, 0x0c, 0xd5, 0x59, 0xae, 0x4c, 0x11, 0x09, 0xee, 0x43, 0x99, 0x02, 0xc8, 0x2e, 0x49, - 0x44, 0x85, 0x3c, 0x8e, 0x61, 0x60, 0x41, 0x8b, 0x51, 0x25, 0xed, 0x9d, 0xad, 0x50, 0xe4, 0x76, - 0xce, 0xa6, 0xda, 0x25, 0x37, 0xae, 0xa0, 0xca, 0x30, 0xb0, 0xa0, 0x85, 0x5e, 0x81, 0xc2, 0x56, - 0x5d, 0xb8, 0xed, 0x64, 0x4a, 0x22, 0xcd, 0x50, 0x16, 0x4b, 0x43, 0x0f, 0x0e, 0xe6, 0x0b, 0xab, - 0xcb, 0xb8, 0xb0, 0x55, 0x47, 0xeb, 0x30, 0xbc, 0xc5, 0x9d, 0xdf, 0x85, 0xb0, 0xf1, 0xa9, 0x6c, - 0xbf, 0xfc, 0x94, 0x7f, 0x3c, 0xf7, 0x58, 0x11, 0x00, 0x2c, 0x89, 0xb0, 0x00, 0xf9, 0xca, 0x89, - 0x5f, 0x04, 0x4d, 0x5b, 0x38, 0x5a, 0xe0, 0x05, 0xce, 0x74, 0xc4, 0xa1, 0x00, 0xb0, 0x46, 0x91, - 0xae, 0x6a, 0x47, 0x26, 0xd8, 0x17, 0xc1, 0x66, 0x32, 0x57, 0xb5, 0xca, 0xc2, 0xdf, 0x6d, 0x55, - 0x2b, 0x24, 0x1c, 0x13, 0x45, 0xbb, 0x30, 0xbe, 0x17, 0xb6, 0x77, 0x88, 0xdc, 0xd2, 0x2c, 0xf6, - 0x4c, 0xce, 0xbd, 0x7c, 0x47, 0x20, 0xba, 0x41, 0xd4, 0x71, 0x9a, 0xa9, 0x53, 0x88, 0xe9, 0xf4, - 0xef, 0xe8, 0xc4, 0xb0, 0x49, 0x9b, 0x0e, 0xff, 0x5b, 0x1d, 0x7f, 0x73, 0x3f, 0x22, 0x22, 0xd6, - 0x59, 0xe6, 0xf0, 0xbf, 0xc1, 0x51, 0xd2, 0xc3, 0x2f, 0x00, 0x58, 0x12, 0x41, 0x77, 0xc4, 0xf0, - 0xb0, 0xd3, 0x73, 0x2a, 0x3f, 0x20, 0xe9, 0xa2, 0x44, 0xca, 0x19, 0x14, 0x76, 0x5a, 0xc6, 0xa4, - 0xd8, 0x29, 0xd9, 0xde, 0xf1, 0x23, 0xdf, 0x4b, 0x9c, 0xd0, 0xd3, 0xf9, 0xa7, 0x64, 0x35, 0x03, - 0x3f, 0x7d, 0x4a, 0x66, 0x61, 0xe1, 0xcc, 0xb6, 0x50, 0x03, 0x26, 0xda, 0x7e, 0x10, 0xdd, 0xf3, - 0x03, 0xb9, 0xbe, 0x50, 0x17, 0x61, 0x89, 0x81, 0x29, 0x5a, 0x64, 0x61, 0x04, 0x4d, 0x08, 0x4e, - 0xd0, 0x44, 0x9f, 0x80, 0xe1, 0xb0, 0xee, 0x34, 0x49, 0xe5, 0xd6, 0xec, 0x4c, 0xfe, 0xf5, 0x53, - 0xe3, 0x28, 0x39, 0xab, 0x8b, 0x47, 0xd3, 0xe7, 0x28, 0x58, 0x92, 0x43, 0xab, 0x30, 0xc8, 0x12, - 0xa0, 0xb1, 0xc0, 0x7c, 0x39, 0x71, 0x55, 0x53, 0x56, 0xd1, 0xfc, 0x6c, 0x62, 0xc5, 0x98, 0x57, - 0xa7, 0x7b, 0x40, 0xbc, 0x19, 0xfc, 0x70, 0xf6, 0x74, 0xfe, 0x1e, 0x10, 0x4f, 0x8d, 0x5b, 0xb5, - 0x6e, 0x7b, 0x40, 0x21, 0xe1, 0x98, 0x28, 0x3d, 0x99, 0xe9, 0x69, 0x7a, 0xa6, 0x8b, 0x39, 0x4f, - 0xee, 0x59, 0xca, 0x4e, 0x66, 0x7a, 0x92, 0x52, 0x12, 0xf6, 0xef, 0x0f, 0xa7, 0x79, 0x16, 0xf6, - 0xca, 0xfc, 0x2e, 0x2b, 0xa5, 0x80, 0xfc, 0x70, 0xbf, 0x42, 0xaf, 0x63, 0x64, 0xc1, 0xbf, 0x60, - 0xc1, 0x99, 0x76, 0xe6, 0x87, 0x08, 0x06, 0xa0, 0x3f, 0xd9, 0x19, 0xff, 0x74, 0x15, 0xc4, 0x31, - 0x1b, 0x8e, 0x73, 0x5a, 0x4a, 0x3e, 0x73, 0x8a, 0xef, 0xf8, 0x99, 0xb3, 0x06, 0x23, 0x8c, 0xc9, - 0xec, 0x91, 0x3b, 0x3a, 0xf9, 0xda, 0x63, 0xac, 0xc4, 0xb2, 0xa8, 0x88, 0x15, 0x09, 0xf4, 0x83, - 0x16, 0x9c, 0x4b, 0x76, 0x1d, 0x13, 0x06, 0x16, 0x91, 0x1f, 0xf9, 0x03, 0x77, 0x55, 0x7c, 0x7f, - 0x8a, 0xff, 0x37, 0x90, 0x0f, 0x7b, 0x21, 0xe0, 0xee, 0x8d, 0xa1, 0x72, 0xc6, 0x0b, 0x7b, 0xc8, - 0xd4, 0x2a, 0xf4, 0xf1, 0xca, 0x7e, 0x11, 0xc6, 0x5a, 0x7e, 0xc7, 0x8b, 0x84, 0xf5, 0x8f, 0xb0, - 0x44, 0x60, 0x1a, 0xf8, 0x35, 0xad, 0x1c, 0x1b, 0x58, 0x89, 0xb7, 0xf9, 0xc8, 0x43, 0xbf, 0xcd, - 0xdf, 0x84, 0x31, 0x4f, 0x33, 0x57, 0x15, 0xfc, 0xc0, 0xa5, 0xfc, 0xa8, 0xad, 0xba, 0x71, 0x2b, - 0xef, 0xa5, 0x5e, 0x82, 0x0d, 0x6a, 0x27, 0xfb, 0xe0, 0xfb, 0xb2, 0x95, 0xc1, 0xd4, 0x73, 0x11, - 0xc0, 0x47, 0x4d, 0x11, 0xc0, 0xa5, 0xa4, 0x08, 0x20, 0x25, 0x51, 0x36, 0x5e, 0xff, 0xfd, 0x27, - 0xa5, 0xe9, 0x37, 0x10, 0xa2, 0xdd, 0x84, 0x0b, 0xbd, 0xae, 0x25, 0x66, 0x06, 0xd6, 0x50, 0xfa, - 0xc3, 0xd8, 0x0c, 0xac, 0x51, 0x29, 0x63, 0x06, 0xe9, 0x37, 0xc4, 0x8e, 0xfd, 0x5f, 0x2d, 0x28, - 0x56, 0xfd, 0xc6, 0x09, 0x3c, 0x78, 0x3f, 0x66, 0x3c, 0x78, 0x1f, 0xcf, 0xbe, 0x10, 0x1b, 0xb9, - 0xf2, 0xf0, 0x95, 0x84, 0x3c, 0xfc, 0x5c, 0x1e, 0x81, 0xee, 0xd2, 0xef, 0x9f, 0x2c, 0xc2, 0x68, - 0xd5, 0x6f, 0x28, 0x1b, 0xec, 0x5f, 0x7f, 0x18, 0x1b, 0xec, 0xdc, 0xd4, 0x0a, 0x1a, 0x65, 0x66, - 0x3d, 0x26, 0xdd, 0x4f, 0xbf, 0xc1, 0x4c, 0xb1, 0xef, 0x12, 0x77, 0x7b, 0x27, 0x22, 0x8d, 0xe4, - 0xe7, 0x9c, 0x9c, 0x29, 0xf6, 0xef, 0x17, 0x60, 0x32, 0xd1, 0x3a, 0x6a, 0xc2, 0x78, 0x53, 0x97, - 0xb6, 0x8a, 0x75, 0xfa, 0x50, 0x82, 0x5a, 0x61, 0xca, 0xaa, 0x15, 0x61, 0x93, 0x38, 0x5a, 0x00, - 0x50, 0xea, 0x47, 0x29, 0xd6, 0x63, 0x5c, 0xbf, 0xd2, 0x4f, 0x86, 0x58, 0xc3, 0x40, 0x2f, 0xc1, - 0x68, 0xe4, 0xb7, 0xfd, 0xa6, 0xbf, 0xbd, 0x7f, 0x83, 0xc8, 0xa0, 0x4e, 0xca, 0x40, 0x6d, 0x23, - 0x06, 0x61, 0x1d, 0x0f, 0xdd, 0x87, 0x69, 0x45, 0xa4, 0x76, 0x0c, 0x12, 0x68, 0x26, 0x55, 0x58, - 0x4f, 0x52, 0xc4, 0xe9, 0x46, 0xec, 0x9f, 0x2e, 0xf2, 0x21, 0xf6, 0x22, 0xf7, 0xbd, 0xdd, 0xf0, - 0xee, 0xde, 0x0d, 0x5f, 0xb5, 0x60, 0x8a, 0xb6, 0xce, 0xac, 0x6f, 0xe4, 0x35, 0xaf, 0xe2, 0x44, - 0x5b, 0x5d, 0xe2, 0x44, 0x5f, 0xa2, 0xa7, 0x66, 0xc3, 0xef, 0x44, 0x42, 0x76, 0xa7, 0x1d, 0x8b, - 0xb4, 0x14, 0x0b, 0xa8, 0xc0, 0x23, 0x41, 0x20, 0x3c, 0x06, 0x75, 0x3c, 0x12, 0x04, 0x58, 0x40, - 0x65, 0x18, 0xe9, 0x81, 0xec, 0x30, 0xd2, 0x3c, 0x38, 0xa6, 0xb0, 0xd3, 0x10, 0x0c, 0x97, 0x16, - 0x1c, 0x53, 0x1a, 0x70, 0xc4, 0x38, 0xf6, 0xcf, 0x15, 0x61, 0xac, 0xea, 0x37, 0x62, 0xd5, 0xe3, - 0x8b, 0x86, 0xea, 0xf1, 0x42, 0x42, 0xf5, 0x38, 0xa5, 0xe3, 0xbe, 0xa7, 0x68, 0xfc, 0x7a, 0x29, - 0x1a, 0xff, 0x89, 0xc5, 0x66, 0xad, 0xbc, 0x5e, 0xe3, 0xc6, 0x5c, 0xe8, 0x2a, 0x8c, 0xb2, 0x03, - 0x86, 0xb9, 0xa8, 0x4a, 0x7d, 0x1c, 0x4b, 0x8f, 0xb4, 0x1e, 0x17, 0x63, 0x1d, 0x07, 0x5d, 0x86, - 0x91, 0x90, 0x38, 0x41, 0x7d, 0x47, 0x9d, 0xae, 0x42, 0x79, 0xc6, 0xcb, 0xb0, 0x82, 0xa2, 0x37, - 0xe2, 0xb8, 0x8c, 0xc5, 0x7c, 0x97, 0x37, 0xbd, 0x3f, 0x7c, 0x8b, 0xe4, 0x07, 0x63, 0xb4, 0xef, - 0x02, 0x4a, 0xe3, 0xf7, 0x11, 0x90, 0x6c, 0xde, 0x0c, 0x48, 0x56, 0x4a, 0x05, 0x23, 0xfb, 0x0b, - 0x0b, 0x26, 0xaa, 0x7e, 0x83, 0x6e, 0xdd, 0x6f, 0xa6, 0x7d, 0xaa, 0x07, 0xa5, 0x1d, 0xea, 0x12, - 0x94, 0xf6, 0x22, 0x0c, 0x56, 0xfd, 0x46, 0xa5, 0xda, 0xcd, 0xdf, 0xdc, 0xfe, 0x5b, 0x16, 0x0c, - 0x57, 0xfd, 0xc6, 0x09, 0xa8, 0x05, 0x3e, 0x6a, 0xaa, 0x05, 0x1e, 0xcb, 0x59, 0x37, 0x39, 0x9a, - 0x80, 0xbf, 0x31, 0x00, 0xe3, 0xb4, 0x9f, 0xfe, 0xb6, 0x9c, 0x4a, 0x63, 0xd8, 0xac, 0x3e, 0x86, - 0x8d, 0x72, 0xe1, 0x7e, 0xb3, 0xe9, 0xdf, 0x4b, 0x4e, 0xeb, 0x2a, 0x2b, 0xc5, 0x02, 0x8a, 0x9e, - 0x85, 0x91, 0x76, 0x40, 0xf6, 0x5c, 0x5f, 0xb0, 0xb7, 0x9a, 0x92, 0xa5, 0x2a, 0xca, 0xb1, 0xc2, - 0xa0, 0xcf, 0xc2, 0xd0, 0xf5, 0xe8, 0x55, 0x5e, 0xf7, 0xbd, 0x06, 0x97, 0x9c, 0x17, 0x45, 0xaa, - 0x08, 0xad, 0x1c, 0x1b, 0x58, 0xe8, 0x2e, 0x94, 0xd8, 0x7f, 0x76, 0xec, 0x1c, 0x3d, 0xe9, 0xa8, - 0x48, 0x42, 0x27, 0x08, 0xe0, 0x98, 0x16, 0x7a, 0x1e, 0x20, 0x92, 0xd1, 0xc7, 0x43, 0x11, 0x7c, - 0x4a, 0x3d, 0x05, 0x54, 0x5c, 0xf2, 0x10, 0x6b, 0x58, 0xe8, 0x19, 0x28, 0x45, 0x8e, 0xdb, 0xbc, - 0xe9, 0x7a, 0x24, 0x64, 0x12, 0xf1, 0xa2, 0xcc, 0x05, 0x27, 0x0a, 0x71, 0x0c, 0xa7, 0xac, 0x18, - 0x8b, 0xcc, 0xc0, 0x53, 0x16, 0x8f, 0x30, 0x6c, 0xc6, 0x8a, 0xdd, 0x54, 0xa5, 0x58, 0xc3, 0x40, - 0x3b, 0xf0, 0x84, 0xeb, 0xb1, 0xb4, 0x0a, 0xa4, 0xb6, 0xeb, 0xb6, 0x37, 0x6e, 0xd6, 0xee, 0x90, - 0xc0, 0xdd, 0xda, 0x5f, 0x72, 0xea, 0xbb, 0xc4, 0x93, 0xe9, 0x24, 0xdf, 0x2f, 0xba, 0xf8, 0x44, - 0xa5, 0x0b, 0x2e, 0xee, 0x4a, 0xc9, 0x7e, 0x19, 0x4e, 0x57, 0xfd, 0x46, 0xd5, 0x0f, 0xa2, 0x55, - 0x3f, 0xb8, 0xe7, 0x04, 0x0d, 0xb9, 0x52, 0xe6, 0x65, 0x94, 0x04, 0x7a, 0x14, 0x0e, 0xf2, 0x83, - 0xc2, 0x88, 0x80, 0xf0, 0x02, 0x63, 0xbe, 0x8e, 0xe8, 0xdb, 0x53, 0x67, 0x6c, 0x80, 0xca, 0x31, - 0x72, 0xcd, 0x89, 0x08, 0xba, 0xc5, 0x72, 0x27, 0xc7, 0x37, 0xa2, 0xa8, 0xfe, 0xb4, 0x96, 0x3b, - 0x39, 0x06, 0x66, 0x5e, 0xa1, 0x66, 0x7d, 0xfb, 0xbf, 0x0d, 0xb2, 0xc3, 0x31, 0x91, 0xa7, 0x02, - 0x7d, 0x06, 0x26, 0x42, 0x72, 0xd3, 0xf5, 0x3a, 0xf7, 0xa5, 0x34, 0xa2, 0x8b, 0x77, 0x56, 0x6d, - 0x45, 0xc7, 0xe4, 0x32, 0x4d, 0xb3, 0x0c, 0x27, 0xa8, 0xa1, 0x16, 0x4c, 0xdc, 0x73, 0xbd, 0x86, - 0x7f, 0x2f, 0x94, 0xf4, 0x47, 0xf2, 0x45, 0x9b, 0x77, 0x39, 0x66, 0xa2, 0x8f, 0x46, 0x73, 0x77, - 0x0d, 0x62, 0x38, 0x41, 0x9c, 0x2e, 0xc0, 0xa0, 0xe3, 0x2d, 0x86, 0xb7, 0x43, 0x12, 0x88, 0x2c, - 0xd8, 0x6c, 0x01, 0x62, 0x59, 0x88, 0x63, 0x38, 0x5d, 0x80, 0xec, 0xcf, 0xb5, 0xc0, 0xef, 0xf0, - 0x1c, 0x01, 0x62, 0x01, 0x62, 0x55, 0x8a, 0x35, 0x0c, 0xba, 0x41, 0xd9, 0xbf, 0x75, 0xdf, 0xc3, - 0xbe, 0x1f, 0xc9, 0x2d, 0xcd, 0xf2, 0xae, 0x6a, 0xe5, 0xd8, 0xc0, 0x42, 0xab, 0x80, 0xc2, 0x4e, - 0xbb, 0xdd, 0x64, 0x66, 0x1f, 0x4e, 0x93, 0x91, 0xe2, 0x2a, 0xf7, 0x22, 0x0f, 0x9d, 0x5a, 0x4b, - 0x41, 0x71, 0x46, 0x0d, 0x7a, 0x56, 0x6f, 0x89, 0xae, 0x0e, 0xb2, 0xae, 0x72, 0x35, 0x48, 0x8d, - 0xf7, 0x53, 0xc2, 0xd0, 0x0a, 0x0c, 0x87, 0xfb, 0x61, 0x3d, 0x12, 0x31, 0xe0, 0x72, 0x52, 0x11, - 0xd5, 0x18, 0x8a, 0x96, 0x09, 0x8f, 0x57, 0xc1, 0xb2, 0x2e, 0xaa, 0xc3, 0x8c, 0xa0, 0xb8, 0xbc, - 0xe3, 0x78, 0x2a, 0xb1, 0x0b, 0xb7, 0x7e, 0xbd, 0xfa, 0xe0, 0x60, 0x7e, 0x46, 0xb4, 0xac, 0x83, - 0x0f, 0x0f, 0xe6, 0xcf, 0x54, 0xfd, 0x46, 0x06, 0x04, 0x67, 0x51, 0xe3, 0x8b, 0xaf, 0x5e, 0xf7, - 0x5b, 0xed, 0x6a, 0xe0, 0x6f, 0xb9, 0x4d, 0xd2, 0x4d, 0x95, 0x54, 0x33, 0x30, 0xc5, 0xe2, 0x33, - 0xca, 0x70, 0x82, 0x9a, 0xfd, 0xed, 0x8c, 0x9f, 0x61, 0x89, 0x9f, 0xa3, 0x4e, 0x40, 0x50, 0x0b, - 0xc6, 0xdb, 0x6c, 0x9b, 0x88, 0xc8, 0xfd, 0x62, 0xad, 0xbf, 0xd8, 0xa7, 0x48, 0xe4, 0x1e, 0xbd, - 0x06, 0x94, 0xc8, 0x92, 0xbd, 0x35, 0xab, 0x3a, 0x39, 0x6c, 0x52, 0xb7, 0x7f, 0xec, 0x31, 0x76, - 0x23, 0xd6, 0xb8, 0x9c, 0x63, 0x58, 0x18, 0xdb, 0x8b, 0xa7, 0xd5, 0x5c, 0xbe, 0xc0, 0x2d, 0x9e, - 0x16, 0x61, 0xb0, 0x8f, 0x65, 0x5d, 0xf4, 0x69, 0x98, 0xa0, 0x2f, 0x15, 0x2d, 0xa3, 0xca, 0xa9, - 0xfc, 0xa0, 0x08, 0x71, 0x22, 0x15, 0x2d, 0xab, 0x87, 0x5e, 0x19, 0x27, 0x88, 0xa1, 0x37, 0x98, - 0x59, 0x88, 0x99, 0xac, 0xa5, 0x07, 0x69, 0xdd, 0x02, 0x44, 0x92, 0xd5, 0x88, 0xe4, 0x25, 0x82, - 0xb1, 0x1f, 0x6d, 0x22, 0x18, 0x74, 0x13, 0xc6, 0x45, 0xf6, 0x63, 0xb1, 0x72, 0x8b, 0x86, 0x1c, - 0x70, 0x1c, 0xeb, 0xc0, 0xc3, 0x64, 0x01, 0x36, 0x2b, 0xa3, 0x6d, 0x38, 0xa7, 0x65, 0x23, 0xba, - 0x16, 0x38, 0x4c, 0x99, 0xef, 0xb2, 0xe3, 0x54, 0xbb, 0xab, 0x9f, 0x7c, 0x70, 0x30, 0x7f, 0x6e, - 0xa3, 0x1b, 0x22, 0xee, 0x4e, 0x07, 0xdd, 0x82, 0xd3, 0xdc, 0xa5, 0xb7, 0x4c, 0x9c, 0x46, 0xd3, - 0xf5, 0x14, 0x33, 0xc0, 0xb7, 0xfc, 0xd9, 0x07, 0x07, 0xf3, 0xa7, 0x17, 0xb3, 0x10, 0x70, 0x76, - 0x3d, 0xf4, 0x51, 0x28, 0x35, 0xbc, 0x50, 0x8c, 0xc1, 0x90, 0x91, 0xf0, 0xa9, 0x54, 0x5e, 0xaf, - 0xa9, 0xef, 0x8f, 0xff, 0xe0, 0xb8, 0x02, 0xda, 0xe6, 0xb2, 0x62, 0x25, 0xc1, 0x18, 0x4e, 0x85, - 0x34, 0x4a, 0x0a, 0xf9, 0x0c, 0xa7, 0x3e, 0xae, 0x24, 0x51, 0xb6, 0xee, 0x86, 0xbf, 0x9f, 0x41, - 0x18, 0xbd, 0x0e, 0x88, 0xbe, 0x20, 0xdc, 0x3a, 0x59, 0xac, 0xb3, 0xb4, 0x10, 0x4c, 0xb4, 0x3e, - 0x62, 0xba, 0x99, 0xd5, 0x52, 0x18, 0x38, 0xa3, 0x16, 0xba, 0x4e, 0x4f, 0x15, 0xbd, 0x54, 0x9c, - 0x5a, 0x2a, 0x3d, 0x5f, 0x99, 0xb4, 0x03, 0x52, 0x77, 0x22, 0xd2, 0x30, 0x29, 0xe2, 0x44, 0x3d, - 0xd4, 0x80, 0x27, 0x9c, 0x4e, 0xe4, 0x33, 0x31, 0xbc, 0x89, 0xba, 0xe1, 0xef, 0x12, 0x8f, 0x69, - 0xc0, 0x46, 0x96, 0x2e, 0x50, 0x6e, 0x63, 0xb1, 0x0b, 0x1e, 0xee, 0x4a, 0x85, 0x72, 0x89, 0x2a, - 0x1f, 0x2f, 0x98, 0x81, 0x9a, 0x32, 0x72, 0xf2, 0xbe, 0x04, 0xa3, 0x3b, 0x7e, 0x18, 0xad, 0x93, - 0xe8, 0x9e, 0x1f, 0xec, 0x8a, 0x78, 0x9b, 0x71, 0x8c, 0xe6, 0x18, 0x84, 0x75, 0x3c, 0xfa, 0x0c, - 0x64, 0xf6, 0x19, 0x95, 0x32, 0x53, 0x8d, 0x8f, 0xc4, 0x67, 0xcc, 0x75, 0x5e, 0x8c, 0x25, 0x5c, - 0xa2, 0x56, 0xaa, 0xcb, 0x4c, 0xcd, 0x9d, 0x40, 0xad, 0x54, 0x97, 0xb1, 0x84, 0xd3, 0xe5, 0x1a, - 0xee, 0x38, 0x01, 0xa9, 0x06, 0x7e, 0x9d, 0x84, 0x5a, 0x64, 0xf0, 0xc7, 0x79, 0x34, 0x51, 0xba, - 0x5c, 0x6b, 0x59, 0x08, 0x38, 0xbb, 0x1e, 0x22, 0xe9, 0x4c, 0x5c, 0x13, 0xf9, 0xfa, 0x89, 0x34, - 0x3f, 0xd3, 0x67, 0x32, 0x2e, 0x0f, 0xa6, 0x54, 0x0e, 0x30, 0x1e, 0x3f, 0x34, 0x9c, 0x9d, 0x64, - 0x6b, 0xbb, 0xff, 0xe0, 0xa3, 0x4a, 0xe3, 0x53, 0x49, 0x50, 0xc2, 0x29, 0xda, 0x46, 0x2c, 0xae, - 0xa9, 0x9e, 0xb1, 0xb8, 0xae, 0x40, 0x29, 0xec, 0x6c, 0x36, 0xfc, 0x96, 0xe3, 0x7a, 0x4c, 0xcd, - 0xad, 0xbd, 0x47, 0x6a, 0x12, 0x80, 0x63, 0x1c, 0xb4, 0x0a, 0x23, 0x8e, 0x54, 0xe7, 0xa0, 0xfc, - 0xe8, 0x2b, 0x4a, 0x89, 0xc3, 0x03, 0x12, 0x48, 0x05, 0x8e, 0xaa, 0x8b, 0x5e, 0x85, 0x71, 0xe1, - 0x92, 0x2a, 0xd2, 0x4f, 0xce, 0x98, 0x7e, 0x43, 0x35, 0x1d, 0x88, 0x4d, 0x5c, 0x74, 0x1b, 0x46, - 0x23, 0xbf, 0xc9, 0x9c, 0x5f, 0x28, 0x9b, 0x77, 0x26, 0x3f, 0x8e, 0xd8, 0x86, 0x42, 0xd3, 0x25, - 0xa9, 0xaa, 0x2a, 0xd6, 0xe9, 0xa0, 0x0d, 0xbe, 0xde, 0x59, 0x84, 0x6c, 0x12, 0xce, 0x3e, 0x96, - 0x7f, 0x27, 0xa9, 0x40, 0xda, 0xe6, 0x76, 0x10, 0x35, 0xb1, 0x4e, 0x06, 0x5d, 0x83, 0xe9, 0x76, - 0xe0, 0xfa, 0x6c, 0x4d, 0x28, 0x4d, 0xde, 0xac, 0x99, 0x9e, 0xa7, 0x9a, 0x44, 0xc0, 0xe9, 0x3a, - 0xcc, 0xa3, 0x58, 0x14, 0xce, 0x9e, 0xe5, 0x19, 0xaa, 0xf9, 0xf3, 0x8e, 0x97, 0x61, 0x05, 0x45, - 0x6b, 0xec, 0x24, 0xe6, 0x92, 0x89, 0xd9, 0xb9, 0xfc, 0x80, 0x2f, 0xba, 0x04, 0x83, 0x33, 0xaf, - 0xea, 0x2f, 0x8e, 0x29, 0xa0, 0x86, 0x96, 0xca, 0x90, 0xbe, 0x18, 0xc2, 0xd9, 0x27, 0xba, 0x18, - 0xc9, 0x25, 0x9e, 0x17, 0x31, 0x43, 0x60, 0x14, 0x87, 0x38, 0x41, 0x13, 0x7d, 0x1c, 0xa6, 0x44, - 0x98, 0xba, 0x78, 0x98, 0xce, 0xc5, 0x26, 0xc5, 0x38, 0x01, 0xc3, 0x29, 0x6c, 0x9e, 0x39, 0xc0, - 0xd9, 0x6c, 0x12, 0x71, 0xf4, 0xdd, 0x74, 0xbd, 0xdd, 0x70, 0xf6, 0x3c, 0x3b, 0x1f, 0x44, 0xe6, - 0x80, 0x24, 0x14, 0x67, 0xd4, 0x40, 0x1b, 0x30, 0xd5, 0x0e, 0x08, 0x69, 0x31, 0x46, 0x5f, 0xdc, - 0x67, 0xf3, 0xdc, 0xa1, 0x9e, 0xf6, 0xa4, 0x9a, 0x80, 0x1d, 0x66, 0x94, 0xe1, 0x14, 0x05, 0x74, - 0x0f, 0x46, 0xfc, 0x3d, 0x12, 0xec, 0x10, 0xa7, 0x31, 0x7b, 0xa1, 0x8b, 0x89, 0xbb, 0xb8, 0xdc, - 0x6e, 0x09, 0xdc, 0x84, 0xf6, 0x5f, 0x16, 0xf7, 0xd6, 0xfe, 0xcb, 0xc6, 0xd0, 0x0f, 0x59, 0x70, - 0x56, 0x2a, 0x0c, 0x6a, 0x6d, 0x3a, 0xea, 0xcb, 0xbe, 0x17, 0x46, 0x01, 0x77, 0x01, 0x7f, 0x32, - 0xdf, 0x2d, 0x7a, 0x23, 0xa7, 0x92, 0x12, 0x8e, 0x9e, 0xcd, 0xc3, 0x08, 0x71, 0x7e, 0x8b, 0x68, - 0x19, 0xa6, 0x43, 0x12, 0xc9, 0xc3, 0x68, 0x31, 0x5c, 0x7d, 0xa3, 0xbc, 0x3e, 0x7b, 0x91, 0xfb, - 0xaf, 0xd3, 0xcd, 0x50, 0x4b, 0x02, 0x71, 0x1a, 0x7f, 0xee, 0x5b, 0x61, 0x3a, 0x75, 0xfd, 0x1f, - 0x25, 0x23, 0xca, 0xdc, 0x2e, 0x8c, 0x1b, 0x43, 0xfc, 0x48, 0xb5, 0xc7, 0xff, 0x72, 0x18, 0x4a, - 0x4a, 0xb3, 0x88, 0xae, 0x98, 0x0a, 0xe3, 0xb3, 0x49, 0x85, 0xf1, 0x08, 0x7d, 0xd7, 0xeb, 0x3a, - 0xe2, 0x8d, 0x8c, 0xa8, 0x5d, 0x79, 0x1b, 0xba, 0x7f, 0x77, 0x6c, 0x4d, 0x5c, 0x5b, 0xec, 0x5b, - 0xf3, 0x3c, 0xd0, 0x55, 0x02, 0x7c, 0x0d, 0xa6, 0x3d, 0x9f, 0xf1, 0x9c, 0xa4, 0x21, 0x19, 0x0a, - 0xc6, 0x37, 0x94, 0xf4, 0x30, 0x18, 0x09, 0x04, 0x9c, 0xae, 0x43, 0x1b, 0xe4, 0x17, 0x7f, 0x52, - 0xe4, 0xcc, 0xf9, 0x02, 0x2c, 0xa0, 0xe8, 0x22, 0x0c, 0xb6, 0xfd, 0x46, 0xa5, 0x2a, 0xf8, 0x4d, - 0x2d, 0x56, 0x64, 0xa3, 0x52, 0xc5, 0x1c, 0x86, 0x16, 0x61, 0x88, 0xfd, 0x08, 0x67, 0xc7, 0xf2, - 0xe3, 0x1d, 0xb0, 0x1a, 0x5a, 0xbe, 0x19, 0x56, 0x01, 0x8b, 0x8a, 0x4c, 0xf4, 0x45, 0x99, 0x74, - 0x26, 0xfa, 0x1a, 0x7e, 0x48, 0xd1, 0x97, 0x24, 0x80, 0x63, 0x5a, 0xe8, 0x3e, 0x9c, 0x36, 0x1e, - 0x46, 0x7c, 0x89, 0x90, 0x50, 0xf8, 0x5c, 0x5f, 0xec, 0xfa, 0x22, 0x12, 0x9a, 0xea, 0x73, 0xa2, - 0xd3, 0xa7, 0x2b, 0x59, 0x94, 0x70, 0x76, 0x03, 0xa8, 0x09, 0xd3, 0xf5, 0x54, 0xab, 0x23, 0xfd, - 0xb7, 0xaa, 0x26, 0x34, 0xdd, 0x62, 0x9a, 0x30, 0x7a, 0x15, 0x46, 0xde, 0xf2, 0x43, 0x76, 0x56, - 0x0b, 0x1e, 0x59, 0x3a, 0xec, 0x8e, 0xbc, 0x71, 0xab, 0xc6, 0xca, 0x0f, 0x0f, 0xe6, 0x47, 0xab, - 0x7e, 0x43, 0xfe, 0xc5, 0xaa, 0x02, 0xfa, 0x5e, 0x0b, 0xe6, 0xd2, 0x2f, 0x2f, 0xd5, 0xe9, 0xf1, - 0xfe, 0x3b, 0x6d, 0x8b, 0x46, 0xe7, 0x56, 0x72, 0xc9, 0xe1, 0x2e, 0x4d, 0xd9, 0xbf, 0x6c, 0x31, - 0xa9, 0x9b, 0xd0, 0x00, 0x91, 0xb0, 0xd3, 0x3c, 0x89, 0x34, 0x9b, 0x2b, 0x86, 0x72, 0xea, 0xa1, - 0x2d, 0x17, 0xfe, 0x99, 0xc5, 0x2c, 0x17, 0x4e, 0xd0, 0x45, 0xe1, 0x0d, 0x18, 0x89, 0x64, 0xfa, - 0xd3, 0x2e, 0x99, 0x41, 0xb5, 0x4e, 0x31, 0xeb, 0x0d, 0xc5, 0xb1, 0xaa, 0x4c, 0xa7, 0x8a, 0x8c, - 0xfd, 0x0f, 0xf9, 0x0c, 0x48, 0xc8, 0x09, 0xe8, 0x00, 0xca, 0xa6, 0x0e, 0x60, 0xbe, 0xc7, 0x17, - 0xe4, 0xe8, 0x02, 0xfe, 0x81, 0xd9, 0x6f, 0x26, 0xa9, 0x79, 0xb7, 0x9b, 0xcc, 0xd8, 0x5f, 0xb4, - 0x00, 0xe2, 0x50, 0xbc, 0x4c, 0xbe, 0xec, 0x07, 0x32, 0xc7, 0x62, 0x56, 0x36, 0xa1, 0x97, 0x29, - 0x8f, 0xea, 0x47, 0x7e, 0xdd, 0x6f, 0x0a, 0x0d, 0xd7, 0x13, 0xb1, 0x1a, 0x82, 0x97, 0x1f, 0x6a, - 0xbf, 0xb1, 0xc2, 0x46, 0xf3, 0x32, 0xf0, 0x57, 0x31, 0x56, 0x8c, 0x19, 0x41, 0xbf, 0x7e, 0xc4, - 0x82, 0x53, 0x59, 0xf6, 0xae, 0xf4, 0xc5, 0xc3, 0x65, 0x56, 0xca, 0x9c, 0x49, 0xcd, 0xe6, 0x1d, - 0x51, 0x8e, 0x15, 0x46, 0xdf, 0x99, 0xc3, 0x8e, 0x16, 0x03, 0xf7, 0x16, 0x8c, 0x57, 0x03, 0xa2, - 0x5d, 0xae, 0xaf, 0x71, 0x67, 0x72, 0xde, 0x9f, 0x67, 0x8f, 0xec, 0x48, 0x6e, 0xff, 0x4c, 0x01, - 0x4e, 0x71, 0xab, 0x80, 0xc5, 0x3d, 0xdf, 0x6d, 0x54, 0xfd, 0x86, 0xc8, 0xfa, 0xf6, 0x29, 0x18, - 0x6b, 0x6b, 0x82, 0xc6, 0x6e, 0xf1, 0x1c, 0x75, 0x81, 0x64, 0x2c, 0x1a, 0xd1, 0x4b, 0xb1, 0x41, - 0x0b, 0x35, 0x60, 0x8c, 0xec, 0xb9, 0x75, 0xa5, 0x5a, 0x2e, 0x1c, 0xf9, 0xa2, 0x53, 0xad, 0xac, - 0x68, 0x74, 0xb0, 0x41, 0xf5, 0x11, 0xe4, 0xf3, 0xb5, 0x7f, 0xd4, 0x82, 0xc7, 0x72, 0xa2, 0x3f, - 0xd2, 0xe6, 0xee, 0x31, 0xfb, 0x0b, 0xb1, 0x6c, 0x55, 0x73, 0xdc, 0x2a, 0x03, 0x0b, 0x28, 0xfa, - 0x04, 0x00, 0xb7, 0xaa, 0xa0, 0x4f, 0xee, 0x5e, 0x61, 0xf2, 0x8c, 0x08, 0x5f, 0x5a, 0xb0, 0x26, - 0x59, 0x1f, 0x6b, 0xb4, 0xec, 0x9f, 0x2a, 0xc2, 0x20, 0x4f, 0xb6, 0xbe, 0x0a, 0xc3, 0x3b, 0x3c, - 0x17, 0x46, 0x3f, 0x69, 0x37, 0x62, 0x61, 0x08, 0x2f, 0xc0, 0xb2, 0x32, 0x5a, 0x83, 0x19, 0x9e, - 0x4b, 0xa4, 0x59, 0x26, 0x4d, 0x67, 0x5f, 0x4a, 0xee, 0x78, 0x1e, 0x4e, 0x25, 0xc1, 0xac, 0xa4, - 0x51, 0x70, 0x56, 0x3d, 0xf4, 0x1a, 0x4c, 0xd0, 0x97, 0x94, 0xdf, 0x89, 0x24, 0x25, 0x9e, 0x45, - 0x44, 0x3d, 0xdd, 0x36, 0x0c, 0x28, 0x4e, 0x60, 0xd3, 0xc7, 0x7c, 0x3b, 0x25, 0xa3, 0x1c, 0x8c, - 0x1f, 0xf3, 0xa6, 0x5c, 0xd2, 0xc4, 0x65, 0x86, 0xae, 0x1d, 0x66, 0xd6, 0xbb, 0xb1, 0x13, 0x90, - 0x70, 0xc7, 0x6f, 0x36, 0x18, 0xd3, 0x37, 0xa8, 0x19, 0xba, 0x26, 0xe0, 0x38, 0x55, 0x83, 0x52, - 0xd9, 0x72, 0xdc, 0x66, 0x27, 0x20, 0x31, 0x95, 0x21, 0x93, 0xca, 0x6a, 0x02, 0x8e, 0x53, 0x35, - 0xe8, 0x3a, 0x3a, 0x5d, 0x0d, 0x7c, 0x7a, 0x90, 0xca, 0x90, 0x36, 0xca, 0x7a, 0x79, 0x58, 0x7a, - 0xdf, 0x76, 0x09, 0xfe, 0x26, 0xec, 0x3b, 0x39, 0x05, 0xc3, 0x80, 0xa0, 0x26, 0xfc, 0x6e, 0x25, - 0x15, 0x74, 0x15, 0x46, 0x45, 0x86, 0x08, 0x66, 0x64, 0xcb, 0xa7, 0x8e, 0x19, 0x3c, 0x94, 0xe3, - 0x62, 0xac, 0xe3, 0xd8, 0xdf, 0x57, 0x80, 0x99, 0x0c, 0x2f, 0x09, 0x7e, 0x54, 0x6d, 0xbb, 0x61, - 0xa4, 0x72, 0x0d, 0x6a, 0x47, 0x15, 0x2f, 0xc7, 0x0a, 0x83, 0xee, 0x07, 0x7e, 0x18, 0x26, 0x0f, - 0x40, 0x61, 0x85, 0x2c, 0xa0, 0x47, 0xcc, 0xda, 0x77, 0x01, 0x06, 0x3a, 0x21, 0x91, 0x61, 0x1b, - 0xd5, 0xd5, 0xc0, 0xf4, 0x60, 0x0c, 0x42, 0x59, 0xf5, 0x6d, 0xa5, 0x52, 0xd2, 0x58, 0x75, 0xae, - 0x54, 0xe2, 0x30, 0xda, 0xb9, 0x88, 0x78, 0x8e, 0x17, 0x09, 0x86, 0x3e, 0x8e, 0x3f, 0xc6, 0x4a, - 0xb1, 0x80, 0xda, 0x5f, 0x2a, 0xc2, 0xd9, 0x5c, 0xbf, 0x29, 0xda, 0xf5, 0x96, 0xef, 0xb9, 0x91, - 0xaf, 0x2c, 0x49, 0x78, 0xcc, 0x31, 0xd2, 0xde, 0x59, 0x13, 0xe5, 0x58, 0x61, 0xa0, 0x4b, 0x30, - 0xc8, 0xa4, 0x68, 0xa9, 0xac, 0x8b, 0x4b, 0x65, 0x1e, 0x84, 0x86, 0x83, 0xfb, 0xce, 0x68, 0x7b, - 0x91, 0xde, 0x92, 0x7e, 0x33, 0x79, 0x68, 0xd1, 0xee, 0xfa, 0x7e, 0x13, 0x33, 0x20, 0xfa, 0x80, - 0x18, 0xaf, 0x84, 0xe9, 0x04, 0x76, 0x1a, 0x7e, 0xa8, 0x0d, 0xda, 0xd3, 0x30, 0xbc, 0x4b, 0xf6, - 0x03, 0xd7, 0xdb, 0x4e, 0x9a, 0xd4, 0xdc, 0xe0, 0xc5, 0x58, 0xc2, 0xcd, 0x04, 0x5a, 0xc3, 0xc7, - 0x9d, 0x8a, 0x76, 0xa4, 0xe7, 0x15, 0xf8, 0x03, 0x45, 0x98, 0xc4, 0x4b, 0xe5, 0xf7, 0x26, 0xe2, - 0x76, 0x7a, 0x22, 0x8e, 0x3b, 0x15, 0x6d, 0xef, 0xd9, 0xf8, 0x05, 0x0b, 0x26, 0x59, 0x9e, 0x0a, - 0x11, 0xad, 0xca, 0xf5, 0xbd, 0x13, 0x60, 0x37, 0x2f, 0xc2, 0x60, 0x40, 0x1b, 0x4d, 0xa6, 0x5b, - 0x64, 0x3d, 0xc1, 0x1c, 0x86, 0x9e, 0x80, 0x01, 0xd6, 0x05, 0x3a, 0x79, 0x63, 0x3c, 0x53, 0x55, - 0xd9, 0x89, 0x1c, 0xcc, 0x4a, 0x59, 0x08, 0x16, 0x4c, 0xda, 0x4d, 0x97, 0x77, 0x3a, 0xd6, 0x71, - 0xbe, 0x3b, 0x3c, 0xaa, 0x33, 0xbb, 0xf6, 0xce, 0x42, 0xb0, 0x64, 0x93, 0xec, 0xfe, 0x94, 0xfb, - 0xe3, 0x02, 0x9c, 0xcf, 0xac, 0xd7, 0x77, 0x08, 0x96, 0xee, 0xb5, 0x1f, 0x65, 0x26, 0x82, 0xe2, - 0x09, 0x1a, 0x2c, 0x0e, 0xf4, 0xcb, 0x61, 0x0e, 0xf6, 0x11, 0x19, 0x25, 0x73, 0xc8, 0xde, 0x25, - 0x91, 0x51, 0x32, 0xfb, 0x96, 0xf3, 0x14, 0xfd, 0xcb, 0x42, 0xce, 0xb7, 0xb0, 0x47, 0xe9, 0x65, - 0x7a, 0xce, 0x30, 0x60, 0x28, 0x1f, 0x7a, 0xfc, 0x8c, 0xe1, 0x65, 0x58, 0x41, 0xd1, 0x22, 0x4c, - 0xb6, 0x5c, 0x8f, 0x1e, 0x3e, 0xfb, 0x26, 0xe3, 0xa7, 0x02, 0x57, 0xad, 0x99, 0x60, 0x9c, 0xc4, - 0x47, 0xae, 0x16, 0x35, 0xa5, 0x90, 0x9f, 0xc0, 0x3c, 0xb7, 0xb7, 0x0b, 0xa6, 0xfe, 0x57, 0x8d, - 0x62, 0x46, 0x04, 0x95, 0x35, 0x4d, 0x16, 0x51, 0xec, 0x5f, 0x16, 0x31, 0x96, 0x2d, 0x87, 0x98, - 0x7b, 0x15, 0xc6, 0x1f, 0x5a, 0xf8, 0x6c, 0x7f, 0xb5, 0x08, 0x8f, 0x77, 0xd9, 0xf6, 0xfc, 0xac, - 0x37, 0xe6, 0x40, 0x3b, 0xeb, 0x53, 0xf3, 0x50, 0x85, 0x53, 0x5b, 0x9d, 0x66, 0x73, 0x9f, 0xd9, - 0xf1, 0x93, 0x86, 0xc4, 0x10, 0x3c, 0xa5, 0x7c, 0x80, 0x9f, 0x5a, 0xcd, 0xc0, 0xc1, 0x99, 0x35, - 0x29, 0x43, 0x4f, 0x6f, 0x92, 0x7d, 0x45, 0x2a, 0xc1, 0xd0, 0x63, 0x1d, 0x88, 0x4d, 0x5c, 0x74, - 0x0d, 0xa6, 0x9d, 0x3d, 0xc7, 0xe5, 0xa1, 0x67, 0x25, 0x01, 0xce, 0xd1, 0x2b, 0x99, 0xe1, 0x62, - 0x12, 0x01, 0xa7, 0xeb, 0xa0, 0xd7, 0x01, 0xf9, 0x9b, 0xcc, 0xda, 0xb7, 0x71, 0x8d, 0x78, 0x42, - 0x4d, 0xc7, 0xe6, 0xae, 0x18, 0x1f, 0x09, 0xb7, 0x52, 0x18, 0x38, 0xa3, 0x56, 0x22, 0x0a, 0xc9, - 0x50, 0x7e, 0x14, 0x92, 0xee, 0xe7, 0x62, 0xcf, 0x24, 0x18, 0xff, 0xd1, 0xa2, 0xd7, 0x17, 0x67, - 0xf2, 0xcd, 0x60, 0x7a, 0xaf, 0x32, 0x33, 0x3b, 0x2e, 0x4f, 0xd4, 0x62, 0x67, 0x9c, 0xd6, 0xcc, - 0xec, 0x62, 0x20, 0x36, 0x71, 0xf9, 0x82, 0x08, 0x63, 0x97, 0x4d, 0x83, 0xc5, 0x17, 0x11, 0x7f, - 0x14, 0x06, 0xfa, 0x24, 0x0c, 0x37, 0xdc, 0x3d, 0x37, 0x14, 0xd2, 0x94, 0x23, 0xab, 0x2e, 0xe2, - 0x73, 0xb0, 0xcc, 0xc9, 0x60, 0x49, 0xcf, 0xfe, 0x81, 0x02, 0x8c, 0xcb, 0x16, 0xdf, 0xe8, 0xf8, - 0x91, 0x73, 0x02, 0xd7, 0xf2, 0x35, 0xe3, 0x5a, 0xfe, 0x40, 0xb7, 0xb0, 0x47, 0xac, 0x4b, 0xb9, - 0xd7, 0xf1, 0xad, 0xc4, 0x75, 0xfc, 0x54, 0x6f, 0x52, 0xdd, 0xaf, 0xe1, 0x7f, 0x64, 0xc1, 0xb4, - 0x81, 0x7f, 0x02, 0xb7, 0xc1, 0xaa, 0x79, 0x1b, 0x3c, 0xd9, 0xf3, 0x1b, 0x72, 0x6e, 0x81, 0xef, - 0x2e, 0x26, 0xfa, 0xce, 0x4e, 0xff, 0xb7, 0x60, 0x60, 0xc7, 0x09, 0x1a, 0xdd, 0xc2, 0xbc, 0xa7, - 0x2a, 0x2d, 0x5c, 0x77, 0x02, 0xa1, 0xa7, 0x7c, 0x56, 0xe5, 0x0f, 0x77, 0x82, 0xde, 0x3a, 0x4a, - 0xd6, 0x14, 0x7a, 0x19, 0x86, 0xc2, 0xba, 0xdf, 0x56, 0x56, 0xfc, 0x17, 0x78, 0x6e, 0x71, 0x5a, - 0x72, 0x78, 0x30, 0x8f, 0xcc, 0xe6, 0x68, 0x31, 0x16, 0xf8, 0xe8, 0x53, 0x30, 0xce, 0x7e, 0x29, - 0xa3, 0xa1, 0x62, 0x7e, 0x4a, 0xa8, 0x9a, 0x8e, 0xc8, 0x2d, 0xea, 0x8c, 0x22, 0x6c, 0x92, 0x9a, - 0xdb, 0x86, 0x92, 0xfa, 0xac, 0x47, 0xaa, 0x1b, 0xfc, 0x77, 0x45, 0x98, 0xc9, 0x58, 0x73, 0x28, - 0x34, 0x66, 0xe2, 0x6a, 0x9f, 0x4b, 0xf5, 0x1d, 0xce, 0x45, 0xc8, 0x5e, 0x43, 0x0d, 0xb1, 0xb6, - 0xfa, 0x6e, 0xf4, 0x76, 0x48, 0x92, 0x8d, 0xd2, 0xa2, 0xde, 0x8d, 0xd2, 0xc6, 0x4e, 0x6c, 0xa8, - 0x69, 0x43, 0xaa, 0xa7, 0x8f, 0x74, 0x4e, 0xff, 0xac, 0x08, 0xa7, 0xb2, 0x22, 0xb1, 0xa1, 0xcf, - 0x27, 0x92, 0x0c, 0xbe, 0xd8, 0x6f, 0x0c, 0x37, 0x9e, 0x79, 0x90, 0xcb, 0x80, 0x97, 0x16, 0xcc, - 0xb4, 0x83, 0x3d, 0x87, 0x59, 0xb4, 0xc9, 0xc2, 0x11, 0x04, 0x3c, 0x39, 0xa4, 0x3c, 0x3e, 0x3e, - 0xdc, 0x77, 0x07, 0x44, 0x56, 0xc9, 0x30, 0x61, 0x90, 0x20, 0x8b, 0x7b, 0x1b, 0x24, 0xc8, 0x96, - 0xe7, 0x5c, 0x18, 0xd5, 0xbe, 0xe6, 0x91, 0xce, 0xf8, 0x2e, 0xbd, 0xad, 0xb4, 0x7e, 0x3f, 0xd2, - 0x59, 0xff, 0x51, 0x0b, 0x12, 0x36, 0xea, 0x4a, 0x2c, 0x66, 0xe5, 0x8a, 0xc5, 0x2e, 0xc0, 0x40, - 0xe0, 0x37, 0x49, 0x32, 0x1b, 0x1f, 0xf6, 0x9b, 0x04, 0x33, 0x08, 0xc5, 0x88, 0x62, 0x61, 0xc7, - 0x98, 0xfe, 0x90, 0x13, 0x4f, 0xb4, 0x8b, 0x30, 0xd8, 0x24, 0x7b, 0xa4, 0x99, 0x4c, 0x9a, 0x72, - 0x93, 0x16, 0x62, 0x0e, 0xb3, 0x7f, 0x61, 0x00, 0xce, 0x75, 0x0d, 0xe8, 0x41, 0x9f, 0x43, 0xdb, - 0x4e, 0x44, 0xee, 0x39, 0xfb, 0xc9, 0xec, 0x06, 0xd7, 0x78, 0x31, 0x96, 0x70, 0xe6, 0x45, 0xc4, - 0x83, 0x14, 0x27, 0x84, 0x88, 0x22, 0x36, 0xb1, 0x80, 0x9a, 0x42, 0xa9, 0xe2, 0x71, 0x08, 0xa5, - 0x9e, 0x07, 0x08, 0xc3, 0x26, 0xb7, 0xe4, 0x69, 0x08, 0xf7, 0xa4, 0x38, 0x98, 0x75, 0xed, 0xa6, - 0x80, 0x60, 0x0d, 0x0b, 0x95, 0x61, 0xaa, 0x1d, 0xf8, 0x11, 0x97, 0xc9, 0x96, 0xb9, 0xb1, 0xdb, - 0xa0, 0x19, 0x4b, 0xa1, 0x9a, 0x80, 0xe3, 0x54, 0x0d, 0xf4, 0x12, 0x8c, 0x8a, 0xf8, 0x0a, 0x55, - 0xdf, 0x6f, 0x0a, 0x31, 0x90, 0xb2, 0xff, 0xaa, 0xc5, 0x20, 0xac, 0xe3, 0x69, 0xd5, 0x98, 0xa0, - 0x77, 0x38, 0xb3, 0x1a, 0x17, 0xf6, 0x6a, 0x78, 0x89, 0xa8, 0x8c, 0x23, 0x7d, 0x45, 0x65, 0x8c, - 0x05, 0x63, 0xa5, 0xbe, 0x75, 0x5b, 0xd0, 0x53, 0x94, 0xf4, 0xb3, 0x03, 0x30, 0x23, 0x16, 0xce, - 0xa3, 0x5e, 0x2e, 0xb7, 0xd3, 0xcb, 0xe5, 0x38, 0x44, 0x67, 0xef, 0xad, 0x99, 0x93, 0x5e, 0x33, - 0x3f, 0x68, 0x81, 0xc9, 0x5e, 0xa1, 0xff, 0x2b, 0x37, 0x3d, 0xcc, 0x4b, 0xb9, 0xec, 0x5a, 0x43, - 0x5e, 0x20, 0xef, 0x30, 0x51, 0x8c, 0xfd, 0x1f, 0x2c, 0x78, 0xb2, 0x27, 0x45, 0xb4, 0x02, 0x25, - 0xc6, 0x03, 0x6a, 0xaf, 0xb3, 0xa7, 0x94, 0x31, 0xac, 0x04, 0xe4, 0xb0, 0xa4, 0x71, 0x4d, 0xb4, - 0x92, 0xca, 0xc3, 0xf3, 0x74, 0x46, 0x1e, 0x9e, 0xd3, 0xc6, 0xf0, 0x3c, 0x64, 0x22, 0x9e, 0xef, - 0xa7, 0x37, 0x8e, 0xe1, 0x88, 0x82, 0x3e, 0x6c, 0x88, 0xfd, 0xec, 0x84, 0xd8, 0x0f, 0x99, 0xd8, - 0xda, 0x1d, 0xf2, 0x71, 0x98, 0x62, 0x81, 0x97, 0x98, 0x69, 0xb6, 0x70, 0x91, 0x29, 0xc4, 0xe6, - 0x97, 0x37, 0x13, 0x30, 0x9c, 0xc2, 0xb6, 0xff, 0xa8, 0x08, 0x43, 0x7c, 0xfb, 0x9d, 0xc0, 0x9b, - 0xf0, 0x19, 0x28, 0xb9, 0xad, 0x56, 0x87, 0xa7, 0x56, 0x19, 0xe4, 0x7e, 0xb1, 0x74, 0x9e, 0x2a, - 0xb2, 0x10, 0xc7, 0x70, 0xb4, 0x2a, 0x24, 0xce, 0x5d, 0x62, 0x3b, 0xf2, 0x8e, 0x2f, 0x94, 0x9d, - 0xc8, 0xe1, 0x0c, 0x8e, 0xba, 0x67, 0x63, 0xd9, 0x34, 0xfa, 0x0c, 0x40, 0x18, 0x05, 0xae, 0xb7, - 0x4d, 0xcb, 0x44, 0x28, 0xd3, 0x0f, 0x76, 0xa1, 0x56, 0x53, 0xc8, 0x9c, 0x66, 0x7c, 0xe6, 0x28, - 0x00, 0xd6, 0x28, 0xa2, 0x05, 0xe3, 0xa6, 0x9f, 0x4b, 0xcc, 0x1d, 0x70, 0xaa, 0xf1, 0x9c, 0xcd, - 0x7d, 0x04, 0x4a, 0x8a, 0x78, 0x2f, 0xf9, 0xd3, 0x98, 0xce, 0x16, 0x7d, 0x0c, 0x26, 0x13, 0x7d, - 0x3b, 0x92, 0xf8, 0xea, 0x17, 0x2d, 0x98, 0xe4, 0x9d, 0x59, 0xf1, 0xf6, 0xc4, 0x6d, 0xf0, 0x36, - 0x9c, 0x6a, 0x66, 0x9c, 0xca, 0x62, 0xfa, 0xfb, 0x3f, 0xc5, 0x95, 0xb8, 0x2a, 0x0b, 0x8a, 0x33, - 0xdb, 0x40, 0x97, 0xe9, 0x8e, 0xa3, 0xa7, 0xae, 0xd3, 0x14, 0x6e, 0xb2, 0x63, 0x7c, 0xb7, 0xf1, - 0x32, 0xac, 0xa0, 0xf6, 0xef, 0x5a, 0x30, 0xcd, 0x7b, 0x7e, 0x83, 0xec, 0xab, 0xb3, 0xe9, 0xeb, - 0xd9, 0x77, 0x91, 0xd4, 0xab, 0x90, 0x93, 0xd4, 0x4b, 0xff, 0xb4, 0x62, 0xd7, 0x4f, 0xfb, 0x19, - 0x0b, 0xc4, 0x0a, 0x39, 0x01, 0x21, 0xc4, 0xb7, 0x9a, 0x42, 0x88, 0xb9, 0xfc, 0x4d, 0x90, 0x23, - 0x7d, 0xf8, 0x0b, 0x0b, 0xa6, 0x38, 0x42, 0xac, 0x2d, 0xff, 0xba, 0xce, 0x43, 0x3f, 0xa9, 0x7f, - 0x6f, 0x90, 0xfd, 0x0d, 0xbf, 0xea, 0x44, 0x3b, 0xd9, 0x1f, 0x65, 0x4c, 0xd6, 0x40, 0xd7, 0xc9, - 0x6a, 0xc8, 0x0d, 0x74, 0x84, 0x7c, 0xe2, 0x47, 0xce, 0x79, 0x61, 0x7f, 0xcd, 0x02, 0xc4, 0x9b, - 0x31, 0x18, 0x37, 0xca, 0x0e, 0xb1, 0x52, 0xed, 0xa2, 0x8b, 0x8f, 0x26, 0x05, 0xc1, 0x1a, 0xd6, - 0xb1, 0x0c, 0x4f, 0xc2, 0xe4, 0xa1, 0xd8, 0xdb, 0xe4, 0xe1, 0x08, 0x23, 0xfa, 0xaf, 0x86, 0x20, - 0xe9, 0x8c, 0x83, 0xee, 0xc0, 0x58, 0xdd, 0x69, 0x3b, 0x9b, 0x6e, 0xd3, 0x8d, 0x5c, 0x12, 0x76, - 0xb3, 0x95, 0x5a, 0xd6, 0xf0, 0x84, 0x92, 0x5a, 0x2b, 0xc1, 0x06, 0x1d, 0xb4, 0x00, 0xd0, 0x0e, - 0xdc, 0x3d, 0xb7, 0x49, 0xb6, 0x99, 0xac, 0x84, 0x39, 0xe6, 0x73, 0x03, 0x20, 0x59, 0x8a, 0x35, - 0x8c, 0x0c, 0xcf, 0xe7, 0xe2, 0x23, 0xf6, 0x7c, 0x86, 0x13, 0xf3, 0x7c, 0x1e, 0x38, 0x92, 0xe7, - 0xf3, 0xc8, 0x91, 0x3d, 0x9f, 0x07, 0xfb, 0xf2, 0x7c, 0xc6, 0x70, 0x46, 0xf2, 0x9e, 0xf4, 0xff, - 0xaa, 0xdb, 0x24, 0xe2, 0xc1, 0xc1, 0xa3, 0x09, 0xcc, 0x3d, 0x38, 0x98, 0x3f, 0x83, 0x33, 0x31, - 0x70, 0x4e, 0x4d, 0xf4, 0x09, 0x98, 0x75, 0x9a, 0x4d, 0xff, 0x9e, 0x9a, 0xd4, 0x95, 0xb0, 0xee, - 0x34, 0xb9, 0x12, 0x62, 0x98, 0x51, 0x7d, 0xe2, 0xc1, 0xc1, 0xfc, 0xec, 0x62, 0x0e, 0x0e, 0xce, - 0xad, 0x8d, 0x3e, 0x0a, 0xa5, 0x76, 0xe0, 0xd7, 0xd7, 0x34, 0x8f, 0xc1, 0xf3, 0x74, 0x00, 0xab, - 0xb2, 0xf0, 0xf0, 0x60, 0x7e, 0x5c, 0xfd, 0x61, 0x17, 0x7e, 0x5c, 0x21, 0xc3, 0x95, 0x79, 0xf4, - 0x58, 0x5d, 0x99, 0x77, 0x61, 0xa6, 0x46, 0x02, 0x97, 0x65, 0x1f, 0x6f, 0xc4, 0xe7, 0xd3, 0x06, - 0x94, 0x82, 0xc4, 0x89, 0xdc, 0x57, 0xbc, 0x45, 0x2d, 0xf9, 0x80, 0x3c, 0x81, 0x63, 0x42, 0xf6, - 0xff, 0xb4, 0x60, 0x58, 0x38, 0xdf, 0x9c, 0x00, 0xd7, 0xb8, 0x68, 0x68, 0x12, 0xe6, 0xb3, 0x07, - 0x8c, 0x75, 0x26, 0x57, 0x87, 0x50, 0x49, 0xe8, 0x10, 0x9e, 0xec, 0x46, 0xa4, 0xbb, 0xf6, 0xe0, - 0xaf, 0x15, 0x29, 0xf7, 0x6e, 0xb8, 0x81, 0x3e, 0xfa, 0x21, 0x58, 0x87, 0xe1, 0x50, 0xb8, 0x21, - 0x16, 0xf2, 0xed, 0xe6, 0x93, 0x93, 0x18, 0xdb, 0xb1, 0x09, 0xc7, 0x43, 0x49, 0x24, 0xd3, 0xbf, - 0xb1, 0xf8, 0x08, 0xfd, 0x1b, 0x7b, 0x39, 0xca, 0x0e, 0x1c, 0x87, 0xa3, 0xac, 0xfd, 0x15, 0x76, - 0x73, 0xea, 0xe5, 0x27, 0xc0, 0x54, 0x5d, 0x33, 0xef, 0x58, 0xbb, 0xcb, 0xca, 0x12, 0x9d, 0xca, - 0x61, 0xae, 0x7e, 0xde, 0x82, 0x73, 0x19, 0x5f, 0xa5, 0x71, 0x5a, 0xcf, 0xc2, 0x88, 0xd3, 0x69, - 0xb8, 0x6a, 0x2f, 0x6b, 0xfa, 0xc4, 0x45, 0x51, 0x8e, 0x15, 0x06, 0x5a, 0x86, 0x69, 0x72, 0xbf, - 0xed, 0x72, 0x55, 0xaa, 0x6e, 0x6c, 0x5a, 0xe4, 0x1e, 0x5b, 0x2b, 0x49, 0x20, 0x4e, 0xe3, 0xab, - 0xe0, 0x24, 0xc5, 0xdc, 0xe0, 0x24, 0x7f, 0xd7, 0x82, 0x51, 0xe5, 0x88, 0xf7, 0xc8, 0x47, 0xfb, - 0xe3, 0xe6, 0x68, 0x3f, 0xde, 0x65, 0xb4, 0x73, 0x86, 0xf9, 0xb7, 0x0b, 0xaa, 0xbf, 0x55, 0x3f, - 0x88, 0xfa, 0xe0, 0xe0, 0x1e, 0xde, 0x3c, 0xfe, 0x2a, 0x8c, 0x3a, 0xed, 0xb6, 0x04, 0x48, 0x1b, - 0x34, 0x16, 0x3d, 0x37, 0x2e, 0xc6, 0x3a, 0x8e, 0xb2, 0xd6, 0x2f, 0xe6, 0x5a, 0xeb, 0x37, 0x00, - 0x22, 0x27, 0xd8, 0x26, 0x11, 0x2d, 0x13, 0x81, 0xc4, 0xf2, 0xcf, 0x9b, 0x4e, 0xe4, 0x36, 0x17, - 0x5c, 0x2f, 0x0a, 0xa3, 0x60, 0xa1, 0xe2, 0x45, 0xb7, 0x02, 0xfe, 0x84, 0xd4, 0x22, 0xf5, 0x28, - 0x5a, 0x58, 0xa3, 0x2b, 0x9d, 0xce, 0x59, 0x1b, 0x83, 0xa6, 0x31, 0xc3, 0xba, 0x28, 0xc7, 0x0a, - 0xc3, 0xfe, 0x08, 0xbb, 0x7d, 0xd8, 0x98, 0x1e, 0x2d, 0xb4, 0xcd, 0x7f, 0x19, 0x53, 0xb3, 0xc1, - 0x34, 0x99, 0x65, 0x3d, 0x80, 0x4e, 0xf7, 0xc3, 0x9e, 0x36, 0xac, 0xfb, 0x8e, 0xc5, 0x51, 0x76, - 0xd0, 0xb7, 0xa5, 0x0c, 0x54, 0x9e, 0xeb, 0x71, 0x6b, 0x1c, 0xc1, 0x24, 0x85, 0xa5, 0xd2, 0x60, - 0x89, 0x06, 0x2a, 0x55, 0xb1, 0x2f, 0xb4, 0x54, 0x1a, 0x02, 0x80, 0x63, 0x1c, 0xca, 0x4c, 0xa9, - 0x3f, 0xe1, 0x2c, 0x8a, 0x43, 0x4a, 0x2a, 0xec, 0x10, 0x6b, 0x18, 0xe8, 0x8a, 0x10, 0x28, 0x70, - 0xbd, 0xc0, 0xe3, 0x09, 0x81, 0x82, 0x1c, 0x2e, 0x4d, 0x0a, 0x74, 0x15, 0x46, 0x55, 0x36, 0xdd, - 0x2a, 0x4f, 0xd2, 0x2a, 0x96, 0xd9, 0x4a, 0x5c, 0x8c, 0x75, 0x1c, 0xb4, 0x01, 0x93, 0x21, 0x97, - 0xb3, 0xa9, 0x38, 0xbf, 0x5c, 0x5e, 0xf9, 0x41, 0x69, 0x05, 0x54, 0x33, 0xc1, 0x87, 0xac, 0x88, - 0x9f, 0x4e, 0xd2, 0x31, 0x3c, 0x49, 0x02, 0xbd, 0x06, 0x13, 0x4d, 0xdf, 0x69, 0x2c, 0x39, 0x4d, - 0xc7, 0xab, 0xb3, 0xf1, 0x19, 0x31, 0x93, 0x32, 0xde, 0x34, 0xa0, 0x38, 0x81, 0x4d, 0x99, 0x37, - 0xbd, 0x44, 0xc4, 0xa6, 0x76, 0xbc, 0x6d, 0x12, 0x8a, 0xdc, 0xa8, 0x8c, 0x79, 0xbb, 0x99, 0x83, - 0x83, 0x73, 0x6b, 0xa3, 0x97, 0x61, 0x4c, 0x7e, 0xbe, 0x16, 0x47, 0x21, 0x76, 0x7c, 0xd0, 0x60, - 0xd8, 0xc0, 0x44, 0xf7, 0xe0, 0xb4, 0xfc, 0xbf, 0x11, 0x38, 0x5b, 0x5b, 0x6e, 0x5d, 0x38, 0x17, - 0x73, 0x0f, 0xc9, 0x45, 0xe9, 0xc6, 0xb7, 0x92, 0x85, 0x74, 0x78, 0x30, 0x7f, 0x41, 0x8c, 0x5a, - 0x26, 0x9c, 0x4d, 0x62, 0x36, 0x7d, 0xb4, 0x06, 0x33, 0x3b, 0xc4, 0x69, 0x46, 0x3b, 0xcb, 0x3b, - 0xa4, 0xbe, 0x2b, 0x37, 0x1d, 0x8b, 0xce, 0xa0, 0xb9, 0x0b, 0x5c, 0x4f, 0xa3, 0xe0, 0xac, 0x7a, - 0xe8, 0x4d, 0x98, 0x6d, 0x77, 0x36, 0x9b, 0x6e, 0xb8, 0xb3, 0xee, 0x47, 0xcc, 0x14, 0x48, 0x25, - 0xe7, 0x15, 0x61, 0x1c, 0x54, 0xfc, 0x8b, 0x6a, 0x0e, 0x1e, 0xce, 0xa5, 0x80, 0xde, 0x86, 0xd3, - 0x89, 0xc5, 0x20, 0x1c, 0xd9, 0x27, 0xf2, 0x23, 0xfd, 0xd7, 0xb2, 0x2a, 0x88, 0x98, 0x10, 0x59, - 0x20, 0x9c, 0xdd, 0x04, 0x7d, 0x7c, 0x68, 0xa1, 0x55, 0xc3, 0xd9, 0xa9, 0xd8, 0x66, 0x59, 0x8b, - 0xbf, 0x1a, 0x62, 0x03, 0x0b, 0xbd, 0x02, 0xe0, 0xb6, 0x57, 0x9d, 0x96, 0xdb, 0xa4, 0x8f, 0xcc, - 0x19, 0x56, 0x87, 0x3e, 0x38, 0xa0, 0x52, 0x95, 0xa5, 0xf4, 0x54, 0x17, 0xff, 0xf6, 0xb1, 0x86, - 0x8d, 0xaa, 0x30, 0x21, 0xfe, 0xed, 0x8b, 0xc5, 0x30, 0xad, 0x3c, 0xcd, 0x27, 0x64, 0x0d, 0xb5, - 0x02, 0x90, 0x59, 0xc2, 0xe6, 0x3c, 0x51, 0x1f, 0x6d, 0xc3, 0x39, 0x91, 0xfd, 0x99, 0xe8, 0xab, - 0x5b, 0xce, 0x5e, 0xc8, 0x02, 0xf3, 0x8f, 0xf0, 0x00, 0x32, 0x8b, 0xdd, 0x10, 0x71, 0x77, 0x3a, - 0x94, 0x2b, 0xd0, 0x37, 0x09, 0xf7, 0xed, 0x3c, 0xcd, 0x8d, 0x9a, 0x28, 0x57, 0x70, 0x33, 0x09, - 0xc4, 0x69, 0x7c, 0x14, 0xc2, 0x69, 0xd7, 0xcb, 0xda, 0x13, 0x67, 0x18, 0xa1, 0x8f, 0x71, 0xb7, - 0xd6, 0xee, 0xfb, 0x21, 0x13, 0xce, 0xf7, 0x43, 0x26, 0xed, 0x77, 0x66, 0xbb, 0xf7, 0x3b, 0x16, - 0xad, 0xad, 0xf1, 0xf7, 0xe8, 0xb3, 0x30, 0xa6, 0x7f, 0x98, 0xe0, 0x55, 0x2e, 0x65, 0xb3, 0xbf, - 0xda, 0xa9, 0xc2, 0x5f, 0x07, 0xea, 0xe4, 0xd0, 0x61, 0xd8, 0xa0, 0x88, 0xea, 0x19, 0x0e, 0xe0, - 0x57, 0xfa, 0xe3, 0x85, 0xfa, 0x37, 0x5d, 0x23, 0x90, 0xbd, 0x59, 0xd0, 0x4d, 0x18, 0xa9, 0x37, - 0x5d, 0xe2, 0x45, 0x95, 0x6a, 0xb7, 0x90, 0x6d, 0xcb, 0x02, 0x47, 0xec, 0x3e, 0x11, 0x67, 0x9f, - 0x97, 0x61, 0x45, 0xc1, 0xfe, 0xb5, 0x02, 0xcc, 0xf7, 0x48, 0xda, 0x90, 0x50, 0x64, 0x59, 0x7d, - 0x29, 0xb2, 0x16, 0x65, 0xde, 0xea, 0xf5, 0x84, 0x8c, 0x2c, 0x91, 0x93, 0x3a, 0x96, 0x94, 0x25, - 0xf1, 0xfb, 0x76, 0x2c, 0xd0, 0x75, 0x61, 0x03, 0x3d, 0x5d, 0x63, 0x0c, 0x1d, 0xf8, 0x60, 0xff, - 0x0f, 0xe7, 0x5c, 0x7d, 0xa6, 0xfd, 0x95, 0x02, 0x9c, 0x56, 0x43, 0xf8, 0xcd, 0x3b, 0x70, 0xb7, - 0xd3, 0x03, 0x77, 0x0c, 0xda, 0x60, 0xfb, 0x16, 0x0c, 0xf1, 0x18, 0x74, 0x7d, 0x30, 0xec, 0x17, - 0xcd, 0x70, 0xad, 0x8a, 0x47, 0x34, 0x42, 0xb6, 0x7e, 0xaf, 0x05, 0x93, 0x1b, 0xcb, 0xd5, 0x9a, - 0x5f, 0xdf, 0x25, 0xd1, 0x22, 0x7f, 0x60, 0x61, 0xcd, 0x55, 0xf6, 0x61, 0x98, 0xea, 0x2c, 0x76, - 0xfd, 0x02, 0x0c, 0xec, 0xf8, 0x61, 0x94, 0x34, 0x15, 0xb9, 0xee, 0x87, 0x11, 0x66, 0x10, 0xfb, - 0xf7, 0x2c, 0x18, 0xdc, 0x70, 0x5c, 0x2f, 0x92, 0x6a, 0x05, 0x2b, 0x47, 0xad, 0xd0, 0xcf, 0x77, - 0xa1, 0x97, 0x60, 0x88, 0x6c, 0x6d, 0x91, 0x7a, 0x24, 0x66, 0x55, 0xc6, 0x19, 0x18, 0x5a, 0x61, - 0xa5, 0x94, 0x83, 0x64, 0x8d, 0xf1, 0xbf, 0x58, 0x20, 0xa3, 0xbb, 0x50, 0x8a, 0xdc, 0x16, 0x59, - 0x6c, 0x34, 0x84, 0xb2, 0xfd, 0x21, 0x62, 0x25, 0x6c, 0x48, 0x02, 0x38, 0xa6, 0x65, 0x7f, 0xa9, - 0x00, 0x10, 0x07, 0xef, 0xe9, 0xf5, 0x89, 0x4b, 0x29, 0x35, 0xec, 0xa5, 0x0c, 0x35, 0x2c, 0x8a, - 0x09, 0x66, 0xe8, 0x60, 0xd5, 0x30, 0x15, 0xfb, 0x1a, 0xa6, 0x81, 0xa3, 0x0c, 0xd3, 0x32, 0x4c, - 0xc7, 0xc1, 0x87, 0xcc, 0xd8, 0x6b, 0xec, 0xfa, 0xdc, 0x48, 0x02, 0x71, 0x1a, 0xdf, 0x26, 0x70, - 0x41, 0xc5, 0x60, 0x11, 0x37, 0x1a, 0xb3, 0xe5, 0xd6, 0xd5, 0xda, 0x3d, 0xc6, 0x29, 0xd6, 0x33, - 0x17, 0x72, 0xf5, 0xcc, 0x3f, 0x61, 0xc1, 0xa9, 0x64, 0x3b, 0xcc, 0xb9, 0xf6, 0x8b, 0x16, 0x9c, - 0x66, 0xda, 0x76, 0xd6, 0x6a, 0x5a, 0xb7, 0xff, 0x62, 0xd7, 0xb8, 0x32, 0x39, 0x3d, 0x8e, 0x03, - 0x5a, 0xac, 0x65, 0x91, 0xc6, 0xd9, 0x2d, 0xda, 0xff, 0xbe, 0x00, 0xb3, 0x79, 0x01, 0x69, 0x98, - 0xab, 0x87, 0x73, 0xbf, 0xb6, 0x4b, 0xee, 0x09, 0x83, 0xfa, 0xd8, 0xd5, 0x83, 0x17, 0x63, 0x09, - 0x4f, 0xc6, 0xe1, 0x2f, 0xf4, 0x19, 0x87, 0x7f, 0x07, 0xa6, 0xef, 0xed, 0x10, 0xef, 0xb6, 0x17, - 0x3a, 0x91, 0x1b, 0x6e, 0xb9, 0x4c, 0x33, 0xcd, 0xd7, 0xcd, 0x2b, 0xd2, 0xec, 0xfd, 0x6e, 0x12, - 0xe1, 0xf0, 0x60, 0xfe, 0x9c, 0x51, 0x10, 0x77, 0x99, 0x1f, 0x24, 0x38, 0x4d, 0x34, 0x9d, 0xc6, - 0x60, 0xe0, 0x11, 0xa6, 0x31, 0xb0, 0xbf, 0x68, 0xc1, 0xd9, 0xdc, 0xdc, 0xa9, 0xe8, 0x32, 0x8c, - 0x38, 0x6d, 0x97, 0x0b, 0xf7, 0xc5, 0x31, 0xca, 0x84, 0x48, 0xd5, 0x0a, 0x17, 0xed, 0x2b, 0xa8, - 0xca, 0xe9, 0x5e, 0xc8, 0xcd, 0xe9, 0xde, 0x33, 0x45, 0xbb, 0xfd, 0x3d, 0x16, 0x08, 0x37, 0xd5, - 0x3e, 0xce, 0xee, 0x4f, 0xc1, 0xd8, 0x5e, 0x3a, 0xd5, 0xd1, 0x85, 0x7c, 0xbf, 0x5d, 0x91, 0xe0, - 0x48, 0x31, 0x64, 0x46, 0x5a, 0x23, 0x83, 0x96, 0xdd, 0x00, 0x01, 0x2d, 0x13, 0x26, 0xba, 0xee, - 0xdd, 0x9b, 0xe7, 0x01, 0x1a, 0x0c, 0x57, 0x4b, 0x8c, 0xaf, 0x6e, 0xe6, 0xb2, 0x82, 0x60, 0x0d, - 0xcb, 0xfe, 0x37, 0x05, 0x18, 0x95, 0xa9, 0x75, 0x3a, 0x5e, 0x3f, 0x02, 0xa6, 0x23, 0xe5, 0xda, - 0x44, 0x57, 0xa0, 0xc4, 0x24, 0xa0, 0xd5, 0x58, 0x2e, 0xa7, 0xe4, 0x0f, 0x6b, 0x12, 0x80, 0x63, - 0x1c, 0xba, 0x8b, 0xc2, 0xce, 0x26, 0x43, 0x4f, 0x38, 0x55, 0xd6, 0x78, 0x31, 0x96, 0x70, 0xf4, - 0x09, 0x98, 0xe2, 0xf5, 0x02, 0xbf, 0xed, 0x6c, 0x73, 0xad, 0xc9, 0xa0, 0x8a, 0x86, 0x30, 0xb5, - 0x96, 0x80, 0x1d, 0x1e, 0xcc, 0x9f, 0x4a, 0x96, 0x31, 0x75, 0x60, 0x8a, 0x0a, 0x33, 0x8e, 0xe2, - 0x8d, 0xd0, 0xdd, 0x9f, 0xb2, 0xa9, 0x8a, 0x41, 0x58, 0xc7, 0xb3, 0x3f, 0x0b, 0x28, 0x9d, 0x64, - 0x08, 0xbd, 0xce, 0x2d, 0x62, 0xdd, 0x80, 0x34, 0xba, 0xa9, 0x07, 0x75, 0x9f, 0x7f, 0xe9, 0x0f, - 0xc5, 0x6b, 0x61, 0x55, 0xdf, 0xfe, 0x7f, 0x8b, 0x30, 0x95, 0xf4, 0x00, 0x47, 0xd7, 0x61, 0x88, - 0xb3, 0x1e, 0x82, 0x7c, 0x17, 0xeb, 0x13, 0xcd, 0x6f, 0x9c, 0x1d, 0xc2, 0x82, 0x7b, 0x11, 0xf5, - 0xd1, 0x9b, 0x30, 0xda, 0xf0, 0xef, 0x79, 0xf7, 0x9c, 0xa0, 0xb1, 0x58, 0xad, 0x88, 0xe5, 0x9c, - 0xf9, 0x1c, 0x2e, 0xc7, 0x68, 0xba, 0x2f, 0x3a, 0xd3, 0xb4, 0xc6, 0x20, 0xac, 0x93, 0x43, 0x1b, - 0x2c, 0x32, 0xf9, 0x96, 0xbb, 0xbd, 0xe6, 0xb4, 0xbb, 0xb9, 0x47, 0x2c, 0x4b, 0x24, 0x8d, 0xf2, - 0xb8, 0x08, 0x5f, 0xce, 0x01, 0x38, 0x26, 0x84, 0x3e, 0x0f, 0x33, 0x61, 0x8e, 0x90, 0x3e, 0x2f, - 0xe7, 0x5c, 0x37, 0xb9, 0xf5, 0xd2, 0x63, 0x0f, 0x0e, 0xe6, 0x67, 0xb2, 0xc4, 0xf9, 0x59, 0xcd, - 0xd8, 0x3f, 0x72, 0x0a, 0x8c, 0x4d, 0x6c, 0xa4, 0x20, 0xb5, 0x8e, 0x29, 0x05, 0x29, 0x86, 0x11, - 0xd2, 0x6a, 0x47, 0xfb, 0x65, 0x37, 0xe8, 0x96, 0x98, 0x7b, 0x45, 0xe0, 0xa4, 0x69, 0x4a, 0x08, - 0x56, 0x74, 0xb2, 0xf3, 0xc4, 0x16, 0xbf, 0x8e, 0x79, 0x62, 0x07, 0x4e, 0x30, 0x4f, 0xec, 0x3a, - 0x0c, 0x6f, 0xbb, 0x11, 0x26, 0x6d, 0x5f, 0x30, 0xfd, 0x99, 0xeb, 0xf0, 0x1a, 0x47, 0x49, 0x67, - 0x24, 0x14, 0x00, 0x2c, 0x89, 0xa0, 0xd7, 0xd5, 0x0e, 0x1c, 0xca, 0x7f, 0x98, 0xa7, 0xcd, 0x24, - 0x32, 0xf7, 0xa0, 0xc8, 0x06, 0x3b, 0xfc, 0xb0, 0xd9, 0x60, 0x57, 0x65, 0x0e, 0xd7, 0x91, 0x7c, - 0x5f, 0x26, 0x96, 0xa2, 0xb5, 0x47, 0xe6, 0xd6, 0x3b, 0x7a, 0xde, 0xdb, 0x52, 0xfe, 0x49, 0xa0, - 0x52, 0xda, 0xf6, 0x99, 0xed, 0xf6, 0x7b, 0x2c, 0x38, 0xdd, 0xce, 0x4a, 0x01, 0x2d, 0x2c, 0x0a, - 0x5e, 0xea, 0x3b, 0xcb, 0xb4, 0xd1, 0x20, 0x93, 0xc4, 0x65, 0xa2, 0xe1, 0xec, 0xe6, 0xe8, 0x40, - 0x07, 0x9b, 0x0d, 0xa1, 0xd9, 0xbe, 0x98, 0x93, 0x36, 0xb7, 0x4b, 0xb2, 0xdc, 0x8d, 0x8c, 0x14, - 0xad, 0xef, 0xcf, 0x4b, 0xd1, 0xda, 0x77, 0x62, 0xd6, 0xd7, 0x55, 0xc2, 0xdc, 0xf1, 0xfc, 0xa5, - 0xc4, 0xd3, 0xe1, 0xf6, 0x4c, 0x93, 0xfb, 0xba, 0x4a, 0x93, 0xdb, 0x25, 0xec, 0x2c, 0x4f, 0x82, - 0xdb, 0x33, 0x39, 0xae, 0x96, 0xe0, 0x76, 0xf2, 0x78, 0x12, 0xdc, 0x1a, 0x57, 0x0d, 0xcf, 0xb1, - 0xfa, 0x4c, 0x8f, 0xab, 0xc6, 0xa0, 0xdb, 0xfd, 0xb2, 0xe1, 0xc9, 0x7c, 0xa7, 0x1f, 0x2a, 0x99, - 0xef, 0x1d, 0x3d, 0x39, 0x2e, 0xea, 0x91, 0xfd, 0x95, 0x22, 0xf5, 0x99, 0x12, 0xf7, 0x8e, 0x7e, - 0x01, 0xce, 0xe4, 0xd3, 0x55, 0xf7, 0x5c, 0x9a, 0x6e, 0xe6, 0x15, 0x98, 0x4a, 0xb5, 0x7b, 0xea, - 0x64, 0x52, 0xed, 0x9e, 0x3e, 0xf6, 0x54, 0xbb, 0x67, 0x4e, 0x20, 0xd5, 0xee, 0x63, 0x27, 0x98, - 0x6a, 0xf7, 0x0e, 0x33, 0xc3, 0xe1, 0xc1, 0x7e, 0x44, 0x98, 0xdc, 0xec, 0x90, 0xac, 0x59, 0x11, - 0x81, 0xf8, 0xc7, 0x29, 0x10, 0x8e, 0x49, 0x65, 0xa4, 0xf0, 0x9d, 0x7d, 0x04, 0x29, 0x7c, 0xd7, - 0xe3, 0x14, 0xbe, 0x67, 0xf3, 0xa7, 0x3a, 0xc3, 0x71, 0x23, 0x27, 0x71, 0xef, 0x1d, 0x3d, 0xe1, - 0xee, 0xe3, 0x5d, 0x74, 0x2d, 0x59, 0x82, 0xc7, 0x2e, 0x69, 0x76, 0x5f, 0xe3, 0x69, 0x76, 0x9f, - 0xc8, 0x3f, 0xc9, 0x93, 0xd7, 0x9d, 0x91, 0x5c, 0x97, 0xf6, 0x4b, 0x05, 0x64, 0x64, 0x01, 0x81, - 0x73, 0xfa, 0xa5, 0x22, 0x3a, 0xa6, 0xfb, 0xa5, 0x40, 0x38, 0x26, 0x65, 0x7f, 0x5f, 0x01, 0xce, - 0x77, 0xdf, 0x6f, 0xb1, 0x34, 0xb5, 0x1a, 0xab, 0x9e, 0x13, 0xd2, 0x54, 0xfe, 0x66, 0x8b, 0xb1, - 0xfa, 0x8e, 0x2f, 0x77, 0x0d, 0xa6, 0x95, 0xc7, 0x47, 0xd3, 0xad, 0xef, 0xaf, 0xc7, 0x2f, 0x5f, - 0xe5, 0x25, 0x5f, 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, 0x72, 0xd4, - 0xf5, 0x1d, 0x3e, 0x6d, 0x0b, 0x26, 0xdb, 0x66, 0xd5, 0x1e, 0x11, 0x1f, 0x8d, 0x4c, 0x78, 0xaa, - 0xaf, 0x09, 0x00, 0x4e, 0x12, 0xb5, 0xff, 0xdc, 0x82, 0x73, 0x5d, 0x4d, 0x18, 0x11, 0x86, 0x33, - 0xdb, 0xad, 0xd0, 0x59, 0x0e, 0x48, 0x83, 0x78, 0x91, 0xeb, 0x34, 0x6b, 0x6d, 0x52, 0xd7, 0xe4, - 0xe1, 0xcc, 0x16, 0xf0, 0xda, 0x5a, 0x6d, 0x31, 0x8d, 0x81, 0x73, 0x6a, 0xa2, 0x55, 0x40, 0x69, - 0x88, 0x98, 0x61, 0x16, 0x5a, 0x3a, 0x4d, 0x0f, 0x67, 0xd4, 0x40, 0x1f, 0x81, 0x71, 0x65, 0x1a, - 0xa9, 0xcd, 0x38, 0x3b, 0xd8, 0xb1, 0x0e, 0xc0, 0x26, 0xde, 0xd2, 0xe5, 0xdf, 0xf8, 0x83, 0xf3, - 0xef, 0xfb, 0xad, 0x3f, 0x38, 0xff, 0xbe, 0xdf, 0xfd, 0x83, 0xf3, 0xef, 0xfb, 0x8e, 0x07, 0xe7, - 0xad, 0xdf, 0x78, 0x70, 0xde, 0xfa, 0xad, 0x07, 0xe7, 0xad, 0xdf, 0x7d, 0x70, 0xde, 0xfa, 0xfd, - 0x07, 0xe7, 0xad, 0x2f, 0xfd, 0xe1, 0xf9, 0xf7, 0x7d, 0xaa, 0xb0, 0x77, 0xf5, 0xff, 0x04, 0x00, - 0x00, 0xff, 0xff, 0xa2, 0x82, 0x58, 0xc4, 0x53, 0x04, 0x01, 0x00, + 0x75, 0x18, 0xac, 0x9e, 0xc1, 0x6b, 0x0e, 0xde, 0x17, 0x24, 0x17, 0xc4, 0x2e, 0x09, 0x6e, 0x53, + 0xe2, 0x72, 0xb5, 0xbb, 0xa0, 0xb8, 0x0f, 0x69, 0xbd, 0x2b, 0xad, 0x05, 0x60, 0x00, 0x72, 0x96, + 0x04, 0x38, 0x7b, 0x07, 0x24, 0x25, 0x79, 0xa5, 0x52, 0x63, 0xe6, 0x02, 0x68, 0x61, 0xa6, 0x7b, + 0xb6, 0xbb, 0x07, 0x24, 0xf6, 0x93, 0xeb, 0xf3, 0x27, 0x3f, 0xe5, 0xc7, 0x57, 0xaa, 0x94, 0xf3, + 0xb2, 0x5d, 0xae, 0x94, 0xe3, 0x54, 0xac, 0x38, 0x49, 0xc5, 0xb1, 0x63, 0x3b, 0x96, 0x13, 0x3b, + 0x71, 0x1e, 0x4e, 0x7e, 0x38, 0x8e, 0x2b, 0xb1, 0x5c, 0xe5, 0x0a, 0x62, 0xd3, 0x49, 0xb9, 0xf4, + 0x23, 0xb6, 0x13, 0x3b, 0x3f, 0x82, 0xb8, 0xe2, 0xd4, 0x7d, 0xf6, 0xbd, 0xfd, 0x98, 0x19, 0x70, + 0x41, 0x68, 0xa5, 0xda, 0x7f, 0x33, 0xf7, 0x9c, 0x7b, 0xee, 0xed, 0xfb, 0x3c, 0xf7, 0x3c, 0xe1, + 0xd5, 0xdd, 0x97, 0xc3, 0x05, 0xd7, 0xbf, 0xb2, 0xdb, 0xd9, 0x24, 0x81, 0x47, 0x22, 0x12, 0x5e, + 0xd9, 0x23, 0x5e, 0xc3, 0x0f, 0xae, 0x08, 0x80, 0xd3, 0x76, 0xaf, 0xd4, 0xfd, 0x80, 0x5c, 0xd9, + 0xbb, 0x7a, 0x65, 0x9b, 0x78, 0x24, 0x70, 0x22, 0xd2, 0x58, 0x68, 0x07, 0x7e, 0xe4, 0x23, 0xc4, + 0x71, 0x16, 0x9c, 0xb6, 0xbb, 0x40, 0x71, 0x16, 0xf6, 0xae, 0xce, 0x3d, 0xb7, 0xed, 0x46, 0x3b, + 0x9d, 0xcd, 0x85, 0xba, 0xdf, 0xba, 0xb2, 0xed, 0x6f, 0xfb, 0x57, 0x18, 0xea, 0x66, 0x67, 0x8b, + 0xfd, 0x63, 0x7f, 0xd8, 0x2f, 0x4e, 0x62, 0xee, 0xc5, 0xb8, 0x99, 0x96, 0x53, 0xdf, 0x71, 0x3d, + 0x12, 0xec, 0x5f, 0x69, 0xef, 0x6e, 0xb3, 0x76, 0x03, 0x12, 0xfa, 0x9d, 0xa0, 0x4e, 0x92, 0x0d, + 0x77, 0xad, 0x15, 0x5e, 0x69, 0x91, 0xc8, 0xc9, 0xe8, 0xee, 0xdc, 0x95, 0xbc, 0x5a, 0x41, 0xc7, + 0x8b, 0xdc, 0x56, 0xba, 0x99, 0x0f, 0xf7, 0xaa, 0x10, 0xd6, 0x77, 0x48, 0xcb, 0x49, 0xd5, 0x7b, + 0x21, 0xaf, 0x5e, 0x27, 0x72, 0x9b, 0x57, 0x5c, 0x2f, 0x0a, 0xa3, 0x20, 0x59, 0xc9, 0xfe, 0xaa, + 0x05, 0x17, 0x16, 0xef, 0xd6, 0x56, 0x9a, 0x4e, 0x18, 0xb9, 0xf5, 0xa5, 0xa6, 0x5f, 0xdf, 0xad, + 0x45, 0x7e, 0x40, 0xee, 0xf8, 0xcd, 0x4e, 0x8b, 0xd4, 0xd8, 0x40, 0xa0, 0x67, 0x61, 0x64, 0x8f, + 0xfd, 0xaf, 0x94, 0x67, 0xad, 0x0b, 0xd6, 0xe5, 0xd2, 0xd2, 0xd4, 0xaf, 0x1f, 0xcc, 0xbf, 0xef, + 0xc1, 0xc1, 0xfc, 0xc8, 0x1d, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x04, 0x43, 0x5b, 0xe1, 0xc6, 0x7e, + 0x9b, 0xcc, 0x16, 0x18, 0xee, 0x84, 0xc0, 0x1d, 0x5a, 0xad, 0xd1, 0x52, 0x2c, 0xa0, 0xe8, 0x0a, + 0x94, 0xda, 0x4e, 0x10, 0xb9, 0x91, 0xeb, 0x7b, 0xb3, 0xc5, 0x0b, 0xd6, 0xe5, 0xc1, 0xa5, 0x69, + 0x81, 0x5a, 0xaa, 0x4a, 0x00, 0x8e, 0x71, 0x68, 0x37, 0x02, 0xe2, 0x34, 0x6e, 0x79, 0xcd, 0xfd, + 0xd9, 0x81, 0x0b, 0xd6, 0xe5, 0x91, 0xb8, 0x1b, 0x58, 0x94, 0x63, 0x85, 0x61, 0xff, 0x48, 0x01, + 0x46, 0x16, 0xb7, 0xb6, 0x5c, 0xcf, 0x8d, 0xf6, 0xd1, 0x1d, 0x18, 0xf3, 0xfc, 0x06, 0x91, 0xff, + 0xd9, 0x57, 0x8c, 0x3e, 0x7f, 0x61, 0x21, 0xbd, 0x94, 0x16, 0xd6, 0x35, 0xbc, 0xa5, 0xa9, 0x07, + 0x07, 0xf3, 0x63, 0x7a, 0x09, 0x36, 0xe8, 0x20, 0x0c, 0xa3, 0x6d, 0xbf, 0xa1, 0xc8, 0x16, 0x18, + 0xd9, 0xf9, 0x2c, 0xb2, 0xd5, 0x18, 0x6d, 0x69, 0xf2, 0xc1, 0xc1, 0xfc, 0xa8, 0x56, 0x80, 0x75, + 0x22, 0x68, 0x13, 0x26, 0xe9, 0x5f, 0x2f, 0x72, 0x15, 0xdd, 0x22, 0xa3, 0x7b, 0x31, 0x8f, 0xae, + 0x86, 0xba, 0x34, 0xf3, 0xe0, 0x60, 0x7e, 0x32, 0x51, 0x88, 0x93, 0x04, 0xed, 0xb7, 0x61, 0x62, + 0x31, 0x8a, 0x9c, 0xfa, 0x0e, 0x69, 0xf0, 0x19, 0x44, 0x2f, 0xc2, 0x80, 0xe7, 0xb4, 0x88, 0x98, + 0xdf, 0x0b, 0x62, 0x60, 0x07, 0xd6, 0x9d, 0x16, 0x39, 0x3c, 0x98, 0x9f, 0xba, 0xed, 0xb9, 0x6f, + 0x75, 0xc4, 0xaa, 0xa0, 0x65, 0x98, 0x61, 0xa3, 0xe7, 0x01, 0x1a, 0x64, 0xcf, 0xad, 0x93, 0xaa, + 0x13, 0xed, 0x88, 0xf9, 0x46, 0xa2, 0x2e, 0x94, 0x15, 0x04, 0x6b, 0x58, 0xf6, 0x7d, 0x28, 0x2d, + 0xee, 0xf9, 0x6e, 0xa3, 0xea, 0x37, 0x42, 0xb4, 0x0b, 0x93, 0xed, 0x80, 0x6c, 0x91, 0x40, 0x15, + 0xcd, 0x5a, 0x17, 0x8a, 0x97, 0x47, 0x9f, 0xbf, 0x9c, 0xf9, 0xb1, 0x26, 0xea, 0x8a, 0x17, 0x05, + 0xfb, 0x4b, 0x8f, 0x89, 0xf6, 0x26, 0x13, 0x50, 0x9c, 0xa4, 0x6c, 0xff, 0x8b, 0x02, 0x9c, 0x5e, + 0x7c, 0xbb, 0x13, 0x90, 0xb2, 0x1b, 0xee, 0x26, 0x57, 0x78, 0xc3, 0x0d, 0x77, 0xd7, 0xe3, 0x11, + 0x50, 0x4b, 0xab, 0x2c, 0xca, 0xb1, 0xc2, 0x40, 0xcf, 0xc1, 0x30, 0xfd, 0x7d, 0x1b, 0x57, 0xc4, + 0x27, 0xcf, 0x08, 0xe4, 0xd1, 0xb2, 0x13, 0x39, 0x65, 0x0e, 0xc2, 0x12, 0x07, 0xad, 0xc1, 0x68, + 0x9d, 0x6d, 0xc8, 0xed, 0x35, 0xbf, 0x41, 0xd8, 0x64, 0x96, 0x96, 0x9e, 0xa1, 0xe8, 0xcb, 0x71, + 0xf1, 0xe1, 0xc1, 0xfc, 0x2c, 0xef, 0x9b, 0x20, 0xa1, 0xc1, 0xb0, 0x5e, 0x1f, 0xd9, 0x6a, 0x7f, + 0x0d, 0x30, 0x4a, 0x90, 0xb1, 0xb7, 0x2e, 0x6b, 0x5b, 0x65, 0x90, 0x6d, 0x95, 0xb1, 0xec, 0x6d, + 0x82, 0xae, 0xc2, 0xc0, 0xae, 0xeb, 0x35, 0x66, 0x87, 0x18, 0xad, 0x73, 0x74, 0xce, 0x6f, 0xb8, + 0x5e, 0xe3, 0xf0, 0x60, 0x7e, 0xda, 0xe8, 0x0e, 0x2d, 0xc4, 0x0c, 0xd5, 0xfe, 0x53, 0x0b, 0xe6, + 0x19, 0x6c, 0xd5, 0x6d, 0x92, 0x2a, 0x09, 0x42, 0x37, 0x8c, 0x88, 0x17, 0x19, 0x03, 0xfa, 0x3c, + 0x40, 0x48, 0xea, 0x01, 0x89, 0xb4, 0x21, 0x55, 0x0b, 0xa3, 0xa6, 0x20, 0x58, 0xc3, 0xa2, 0x07, + 0x42, 0xb8, 0xe3, 0x04, 0x6c, 0x7d, 0x89, 0x81, 0x55, 0x07, 0x42, 0x4d, 0x02, 0x70, 0x8c, 0x63, + 0x1c, 0x08, 0xc5, 0x5e, 0x07, 0x02, 0xfa, 0x18, 0x4c, 0xc6, 0x8d, 0x85, 0x6d, 0xa7, 0x2e, 0x07, + 0x90, 0x6d, 0x99, 0x9a, 0x09, 0xc2, 0x49, 0x5c, 0xfb, 0xef, 0x58, 0x62, 0xf1, 0xd0, 0xaf, 0x7e, + 0x97, 0x7f, 0xab, 0xfd, 0x8b, 0x16, 0x0c, 0x2f, 0xb9, 0x5e, 0xc3, 0xf5, 0xb6, 0xd1, 0x67, 0x61, + 0x84, 0xde, 0x4d, 0x0d, 0x27, 0x72, 0xc4, 0xb9, 0xf7, 0x21, 0x6d, 0x6f, 0xa9, 0xab, 0x62, 0xa1, + 0xbd, 0xbb, 0x4d, 0x0b, 0xc2, 0x05, 0x8a, 0x4d, 0x77, 0xdb, 0xad, 0xcd, 0xcf, 0x91, 0x7a, 0xb4, + 0x46, 0x22, 0x27, 0xfe, 0x9c, 0xb8, 0x0c, 0x2b, 0xaa, 0xe8, 0x06, 0x0c, 0x45, 0x4e, 0xb0, 0x4d, + 0x22, 0x71, 0x00, 0x66, 0x1e, 0x54, 0xbc, 0x26, 0xa6, 0x3b, 0x92, 0x78, 0x75, 0x12, 0x5f, 0x0b, + 0x1b, 0xac, 0x2a, 0x16, 0x24, 0xec, 0x1f, 0x1a, 0x86, 0xb3, 0xcb, 0xb5, 0x4a, 0xce, 0xba, 0xba, + 0x04, 0x43, 0x8d, 0xc0, 0xdd, 0x23, 0x81, 0x18, 0x67, 0x45, 0xa5, 0xcc, 0x4a, 0xb1, 0x80, 0xa2, + 0x97, 0x61, 0x8c, 0x5f, 0x48, 0xd7, 0x1d, 0xaf, 0xd1, 0x94, 0x43, 0x7c, 0x4a, 0x60, 0x8f, 0xdd, + 0xd1, 0x60, 0xd8, 0xc0, 0x3c, 0xe2, 0xa2, 0xba, 0x94, 0xd8, 0x8c, 0x79, 0x97, 0xdd, 0x17, 0x2d, + 0x98, 0xe2, 0xcd, 0x2c, 0x46, 0x51, 0xe0, 0x6e, 0x76, 0x22, 0x12, 0xce, 0x0e, 0xb2, 0x93, 0x6e, + 0x39, 0x6b, 0xb4, 0x72, 0x47, 0x60, 0xe1, 0x4e, 0x82, 0x0a, 0x3f, 0x04, 0x67, 0x45, 0xbb, 0x53, + 0x49, 0x30, 0x4e, 0x35, 0x8b, 0xbe, 0xd3, 0x82, 0xb9, 0xba, 0xef, 0x45, 0x81, 0xdf, 0x6c, 0x92, + 0xa0, 0xda, 0xd9, 0x6c, 0xba, 0xe1, 0x0e, 0x5f, 0xa7, 0x98, 0x6c, 0xb1, 0x93, 0x20, 0x67, 0x0e, + 0x15, 0x92, 0x98, 0xc3, 0xf3, 0x0f, 0x0e, 0xe6, 0xe7, 0x96, 0x73, 0x49, 0xe1, 0x2e, 0xcd, 0xa0, + 0x5d, 0x40, 0xf4, 0x2a, 0xad, 0x45, 0xce, 0x36, 0x89, 0x1b, 0x1f, 0xee, 0xbf, 0xf1, 0x33, 0x0f, + 0x0e, 0xe6, 0xd1, 0x7a, 0x8a, 0x04, 0xce, 0x20, 0x8b, 0xde, 0x82, 0x53, 0xb4, 0x34, 0xf5, 0xad, + 0x23, 0xfd, 0x37, 0x37, 0xfb, 0xe0, 0x60, 0xfe, 0xd4, 0x7a, 0x06, 0x11, 0x9c, 0x49, 0x1a, 0x7d, + 0x87, 0x05, 0x67, 0xe3, 0xcf, 0x5f, 0xb9, 0xdf, 0x76, 0xbc, 0x46, 0xdc, 0x70, 0xa9, 0xff, 0x86, + 0xe9, 0x99, 0x7c, 0x76, 0x39, 0x8f, 0x12, 0xce, 0x6f, 0x64, 0x6e, 0x19, 0x4e, 0x67, 0xae, 0x16, + 0x34, 0x05, 0xc5, 0x5d, 0xc2, 0xb9, 0xa0, 0x12, 0xa6, 0x3f, 0xd1, 0x29, 0x18, 0xdc, 0x73, 0x9a, + 0x1d, 0xb1, 0x51, 0x30, 0xff, 0xf3, 0x4a, 0xe1, 0x65, 0xcb, 0xfe, 0x97, 0x45, 0x98, 0x5c, 0xae, + 0x55, 0x1e, 0x6a, 0x17, 0xea, 0xd7, 0x50, 0xa1, 0xeb, 0x35, 0x14, 0x5f, 0x6a, 0xc5, 0xdc, 0x4b, + 0xed, 0xff, 0xcd, 0xd8, 0x42, 0x03, 0x6c, 0x0b, 0x7d, 0x4b, 0xce, 0x16, 0x3a, 0xe6, 0x8d, 0xb3, + 0x97, 0xb3, 0x8a, 0x06, 0xd9, 0x64, 0x66, 0x72, 0x2c, 0x37, 0xfd, 0xba, 0xd3, 0x4c, 0x1e, 0x7d, + 0x47, 0x5c, 0x4a, 0xc7, 0x33, 0x8f, 0x75, 0x18, 0x5b, 0x76, 0xda, 0xce, 0xa6, 0xdb, 0x74, 0x23, + 0x97, 0x84, 0xe8, 0x29, 0x28, 0x3a, 0x8d, 0x06, 0xe3, 0xb6, 0x4a, 0x4b, 0xa7, 0x1f, 0x1c, 0xcc, + 0x17, 0x17, 0x1b, 0xf4, 0xda, 0x07, 0x85, 0xb5, 0x8f, 0x29, 0x06, 0xfa, 0x20, 0x0c, 0x34, 0x02, + 0xbf, 0x3d, 0x5b, 0x60, 0x98, 0x74, 0xd7, 0x0d, 0x94, 0x03, 0xbf, 0x9d, 0x40, 0x65, 0x38, 0xf6, + 0xaf, 0x16, 0xe0, 0x89, 0x65, 0xd2, 0xde, 0x59, 0xad, 0xe5, 0x9c, 0xdf, 0x97, 0x61, 0xa4, 0xe5, + 0x7b, 0x6e, 0xe4, 0x07, 0xa1, 0x68, 0x9a, 0xad, 0x88, 0x35, 0x51, 0x86, 0x15, 0x14, 0x5d, 0x80, + 0x81, 0x76, 0xcc, 0x54, 0x8e, 0x49, 0x86, 0x94, 0xb1, 0x93, 0x0c, 0x42, 0x31, 0x3a, 0x21, 0x09, + 0xc4, 0x8a, 0x51, 0x18, 0xb7, 0x43, 0x12, 0x60, 0x06, 0x89, 0x6f, 0x66, 0x7a, 0x67, 0x8b, 0x13, + 0x3a, 0x71, 0x33, 0x53, 0x08, 0xd6, 0xb0, 0x50, 0x15, 0x4a, 0x61, 0x62, 0x66, 0xfb, 0xda, 0xa6, + 0xe3, 0xec, 0xea, 0x56, 0x33, 0x19, 0x13, 0x31, 0x6e, 0x94, 0xa1, 0x9e, 0x57, 0xf7, 0x57, 0x0a, + 0x80, 0xf8, 0x10, 0x7e, 0x83, 0x0d, 0xdc, 0xed, 0xf4, 0xc0, 0xf5, 0xbf, 0x25, 0x8e, 0x6b, 0xf4, + 0xfe, 0xcc, 0x82, 0x27, 0x96, 0x5d, 0xaf, 0x41, 0x82, 0x9c, 0x05, 0xf8, 0x68, 0xde, 0xb2, 0x47, + 0x63, 0x1a, 0x8c, 0x25, 0x36, 0x70, 0x0c, 0x4b, 0xcc, 0xfe, 0x63, 0x0b, 0x10, 0xff, 0xec, 0x77, + 0xdd, 0xc7, 0xde, 0x4e, 0x7f, 0xec, 0x31, 0x2c, 0x0b, 0xfb, 0x26, 0x4c, 0x2c, 0x37, 0x5d, 0xe2, + 0x45, 0x95, 0xea, 0xb2, 0xef, 0x6d, 0xb9, 0xdb, 0xe8, 0x15, 0x98, 0x88, 0xdc, 0x16, 0xf1, 0x3b, + 0x51, 0x8d, 0xd4, 0x7d, 0x8f, 0xbd, 0x24, 0xad, 0xcb, 0x83, 0x4b, 0xe8, 0xc1, 0xc1, 0xfc, 0xc4, + 0x86, 0x01, 0xc1, 0x09, 0x4c, 0xfb, 0x77, 0xe9, 0xf8, 0xf9, 0xad, 0xb6, 0xef, 0x11, 0x2f, 0x5a, + 0xf6, 0xbd, 0x06, 0x97, 0x38, 0xbc, 0x02, 0x03, 0x11, 0x1d, 0x0f, 0x3e, 0x76, 0x97, 0xe4, 0x46, + 0xa1, 0xa3, 0x70, 0x78, 0x30, 0x7f, 0x26, 0x5d, 0x83, 0x8d, 0x13, 0xab, 0x83, 0xbe, 0x05, 0x86, + 0xc2, 0xc8, 0x89, 0x3a, 0xa1, 0x18, 0xcd, 0x27, 0xe5, 0x68, 0xd6, 0x58, 0xe9, 0xe1, 0xc1, 0xfc, + 0xa4, 0xaa, 0xc6, 0x8b, 0xb0, 0xa8, 0x80, 0x9e, 0x86, 0xe1, 0x16, 0x09, 0x43, 0x67, 0x5b, 0xde, + 0x86, 0x93, 0xa2, 0xee, 0xf0, 0x1a, 0x2f, 0xc6, 0x12, 0x8e, 0x2e, 0xc2, 0x20, 0x09, 0x02, 0x3f, + 0x10, 0x7b, 0x74, 0x5c, 0x20, 0x0e, 0xae, 0xd0, 0x42, 0xcc, 0x61, 0xf6, 0xbf, 0xb3, 0x60, 0x52, + 0xf5, 0x95, 0xb7, 0x75, 0x02, 0xaf, 0x82, 0x4f, 0x01, 0xd4, 0xe5, 0x07, 0x86, 0xec, 0xf6, 0x18, + 0x7d, 0xfe, 0x52, 0xe6, 0x45, 0x9d, 0x1a, 0xc6, 0x98, 0xb2, 0x2a, 0x0a, 0xb1, 0x46, 0xcd, 0xfe, + 0x27, 0x16, 0xcc, 0x24, 0xbe, 0xe8, 0xa6, 0x1b, 0x46, 0xe8, 0xcd, 0xd4, 0x57, 0x2d, 0xf4, 0xf7, + 0x55, 0xb4, 0x36, 0xfb, 0x26, 0xb5, 0x94, 0x65, 0x89, 0xf6, 0x45, 0xd7, 0x61, 0xd0, 0x8d, 0x48, + 0x4b, 0x7e, 0xcc, 0xc5, 0xae, 0x1f, 0xc3, 0x7b, 0x15, 0xcf, 0x48, 0x85, 0xd6, 0xc4, 0x9c, 0x80, + 0xfd, 0xab, 0x45, 0x28, 0xf1, 0x65, 0xbb, 0xe6, 0xb4, 0x4f, 0x60, 0x2e, 0x9e, 0x81, 0x92, 0xdb, + 0x6a, 0x75, 0x22, 0x67, 0x53, 0x1c, 0xe7, 0x23, 0x7c, 0x6b, 0x55, 0x64, 0x21, 0x8e, 0xe1, 0xa8, + 0x02, 0x03, 0xac, 0x2b, 0xfc, 0x2b, 0x9f, 0xca, 0xfe, 0x4a, 0xd1, 0xf7, 0x85, 0xb2, 0x13, 0x39, + 0x9c, 0x93, 0x52, 0xf7, 0x08, 0x2d, 0xc2, 0x8c, 0x04, 0x72, 0x00, 0x36, 0x5d, 0xcf, 0x09, 0xf6, + 0x69, 0xd9, 0x6c, 0x91, 0x11, 0x7c, 0xae, 0x3b, 0xc1, 0x25, 0x85, 0xcf, 0xc9, 0xaa, 0x0f, 0x8b, + 0x01, 0x58, 0x23, 0x3a, 0xf7, 0x11, 0x28, 0x29, 0xe4, 0xa3, 0x30, 0x44, 0x73, 0x1f, 0x83, 0xc9, + 0x44, 0x5b, 0xbd, 0xaa, 0x8f, 0xe9, 0xfc, 0xd4, 0x2f, 0xb1, 0x23, 0x43, 0xf4, 0x7a, 0xc5, 0xdb, + 0x13, 0x47, 0xee, 0xdb, 0x70, 0xaa, 0x99, 0x71, 0x92, 0x89, 0x79, 0xed, 0xff, 0xe4, 0x7b, 0x42, + 0x7c, 0xf6, 0xa9, 0x2c, 0x28, 0xce, 0x6c, 0x83, 0xf2, 0x08, 0x7e, 0x9b, 0x6e, 0x10, 0xa7, 0xa9, + 0xb3, 0xdb, 0xb7, 0x44, 0x19, 0x56, 0x50, 0x7a, 0xde, 0x9d, 0x52, 0x9d, 0xbf, 0x41, 0xf6, 0x6b, + 0xa4, 0x49, 0xea, 0x91, 0x1f, 0x7c, 0x5d, 0xbb, 0x7f, 0x8e, 0x8f, 0x3e, 0x3f, 0x2e, 0x47, 0x05, + 0x81, 0xe2, 0x0d, 0xb2, 0xcf, 0xa7, 0x42, 0xff, 0xba, 0x62, 0xd7, 0xaf, 0xfb, 0x19, 0x0b, 0xc6, + 0xd5, 0xd7, 0x9d, 0xc0, 0xb9, 0xb0, 0x64, 0x9e, 0x0b, 0xe7, 0xba, 0x2e, 0xf0, 0x9c, 0x13, 0xe1, + 0x2b, 0x05, 0x38, 0xab, 0x70, 0xe8, 0xdb, 0x80, 0xff, 0x11, 0xab, 0xea, 0x0a, 0x94, 0x3c, 0x25, + 0xb5, 0xb2, 0x4c, 0x71, 0x51, 0x2c, 0xb3, 0x8a, 0x71, 0x28, 0x8b, 0xe7, 0xc5, 0xa2, 0xa5, 0x31, + 0x5d, 0x9c, 0x2b, 0x44, 0xb7, 0x4b, 0x50, 0xec, 0xb8, 0x0d, 0x71, 0xc1, 0x7c, 0x48, 0x8e, 0xf6, + 0xed, 0x4a, 0xf9, 0xf0, 0x60, 0xfe, 0xc9, 0x3c, 0x55, 0x02, 0xbd, 0xd9, 0xc2, 0x85, 0xdb, 0x95, + 0x32, 0xa6, 0x95, 0xd1, 0x22, 0x4c, 0x4a, 0x6d, 0xc9, 0x1d, 0xca, 0x6e, 0xf9, 0x9e, 0xb8, 0x87, + 0x94, 0x4c, 0x16, 0x9b, 0x60, 0x9c, 0xc4, 0x47, 0x65, 0x98, 0xda, 0xed, 0x6c, 0x92, 0x26, 0x89, + 0xf8, 0x07, 0xdf, 0x20, 0x5c, 0x62, 0x59, 0x8a, 0x5f, 0x66, 0x37, 0x12, 0x70, 0x9c, 0xaa, 0x61, + 0xff, 0x05, 0xbb, 0x0f, 0xc4, 0xe8, 0x55, 0x03, 0x9f, 0x2e, 0x2c, 0x4a, 0xfd, 0xeb, 0xb9, 0x9c, + 0xfb, 0x59, 0x15, 0x37, 0xc8, 0xfe, 0x86, 0x4f, 0x39, 0xf3, 0xec, 0x55, 0x61, 0xac, 0xf9, 0x81, + 0xae, 0x6b, 0xfe, 0xe7, 0x0a, 0x70, 0x5a, 0x8d, 0x80, 0xc1, 0x04, 0x7e, 0xa3, 0x8f, 0xc1, 0x55, + 0x18, 0x6d, 0x90, 0x2d, 0xa7, 0xd3, 0x8c, 0x94, 0xf8, 0x7c, 0x90, 0xab, 0x50, 0xca, 0x71, 0x31, + 0xd6, 0x71, 0x8e, 0x30, 0x6c, 0xff, 0x73, 0x94, 0x5d, 0xc4, 0x91, 0x43, 0xd7, 0xb8, 0xda, 0x35, + 0x56, 0xee, 0xae, 0xb9, 0x08, 0x83, 0x6e, 0x8b, 0x32, 0x66, 0x05, 0x93, 0xdf, 0xaa, 0xd0, 0x42, + 0xcc, 0x61, 0xe8, 0x03, 0x30, 0x5c, 0xf7, 0x5b, 0x2d, 0xc7, 0x6b, 0xb0, 0x2b, 0xaf, 0xb4, 0x34, + 0x4a, 0x79, 0xb7, 0x65, 0x5e, 0x84, 0x25, 0x0c, 0x3d, 0x01, 0x03, 0x4e, 0xb0, 0xcd, 0x65, 0x18, + 0xa5, 0xa5, 0x11, 0xda, 0xd2, 0x62, 0xb0, 0x1d, 0x62, 0x56, 0x4a, 0x9f, 0x60, 0xf7, 0xfc, 0x60, + 0xd7, 0xf5, 0xb6, 0xcb, 0x6e, 0x20, 0xb6, 0x84, 0xba, 0x0b, 0xef, 0x2a, 0x08, 0xd6, 0xb0, 0xd0, + 0x2a, 0x0c, 0xb6, 0xfd, 0x20, 0x0a, 0x67, 0x87, 0xd8, 0x70, 0x3f, 0x99, 0x73, 0x10, 0xf1, 0xaf, + 0xad, 0xfa, 0x41, 0x14, 0x7f, 0x00, 0xfd, 0x17, 0x62, 0x5e, 0x1d, 0xdd, 0x84, 0x61, 0xe2, 0xed, + 0xad, 0x06, 0x7e, 0x6b, 0x76, 0x26, 0x9f, 0xd2, 0x0a, 0x47, 0xe1, 0xcb, 0x2c, 0xe6, 0x51, 0x45, + 0x31, 0x96, 0x24, 0xd0, 0xb7, 0x40, 0x91, 0x78, 0x7b, 0xb3, 0xc3, 0x8c, 0xd2, 0x5c, 0x0e, 0xa5, + 0x3b, 0x4e, 0x10, 0x9f, 0xf9, 0x2b, 0xde, 0x1e, 0xa6, 0x75, 0xd0, 0x27, 0xa1, 0x24, 0x0f, 0x8c, + 0x50, 0x08, 0xeb, 0x32, 0x17, 0xac, 0x3c, 0x66, 0x30, 0x79, 0xab, 0xe3, 0x06, 0xa4, 0x45, 0xbc, + 0x28, 0x8c, 0x4f, 0x48, 0x09, 0x0d, 0x71, 0x4c, 0x0d, 0x7d, 0x52, 0x4a, 0x88, 0xd7, 0xfc, 0x8e, + 0x17, 0x85, 0xb3, 0x25, 0xd6, 0xbd, 0x4c, 0xdd, 0xdd, 0x9d, 0x18, 0x2f, 0x29, 0x42, 0xe6, 0x95, + 0xb1, 0x41, 0x0a, 0x7d, 0x1a, 0xc6, 0xf9, 0x7f, 0xae, 0x01, 0x0b, 0x67, 0x4f, 0x33, 0xda, 0x17, + 0xf2, 0x69, 0x73, 0xc4, 0xa5, 0xd3, 0x82, 0xf8, 0xb8, 0x5e, 0x1a, 0x62, 0x93, 0x1a, 0xc2, 0x30, + 0xde, 0x74, 0xf7, 0x88, 0x47, 0xc2, 0xb0, 0x1a, 0xf8, 0x9b, 0x64, 0x16, 0xd8, 0xc0, 0x9c, 0xcd, + 0xd6, 0x98, 0xf9, 0x9b, 0x64, 0x69, 0x9a, 0xd2, 0xbc, 0xa9, 0xd7, 0xc1, 0x26, 0x09, 0x74, 0x1b, + 0x26, 0xe8, 0x8b, 0xcd, 0x8d, 0x89, 0x8e, 0xf6, 0x22, 0xca, 0xde, 0x55, 0xd8, 0xa8, 0x84, 0x13, + 0x44, 0xd0, 0x2d, 0x18, 0x0b, 0x23, 0x27, 0x88, 0x3a, 0x6d, 0x4e, 0xf4, 0x4c, 0x2f, 0xa2, 0x4c, + 0xe1, 0x5a, 0xd3, 0xaa, 0x60, 0x83, 0x00, 0x7a, 0x1d, 0x4a, 0x4d, 0x77, 0x8b, 0xd4, 0xf7, 0xeb, + 0x4d, 0x32, 0x3b, 0xc6, 0xa8, 0x65, 0x1e, 0x2a, 0x37, 0x25, 0x12, 0xe7, 0x73, 0xd5, 0x5f, 0x1c, + 0x57, 0x47, 0x77, 0xe0, 0x4c, 0x44, 0x82, 0x96, 0xeb, 0x39, 0xf4, 0x30, 0x10, 0x4f, 0x2b, 0xa6, + 0xc8, 0x1c, 0x67, 0xbb, 0xed, 0xbc, 0x98, 0x8d, 0x33, 0x1b, 0x99, 0x58, 0x38, 0xa7, 0x36, 0xba, + 0x0f, 0xb3, 0x19, 0x10, 0xbf, 0xe9, 0xd6, 0xf7, 0x67, 0x4f, 0x31, 0xca, 0x1f, 0x15, 0x94, 0x67, + 0x37, 0x72, 0xf0, 0x0e, 0xbb, 0xc0, 0x70, 0x2e, 0x75, 0x74, 0x0b, 0x26, 0xd9, 0x09, 0x54, 0xed, + 0x34, 0x9b, 0xa2, 0xc1, 0x09, 0xd6, 0xe0, 0x07, 0xe4, 0x7d, 0x5c, 0x31, 0xc1, 0x87, 0x07, 0xf3, + 0x10, 0xff, 0xc3, 0xc9, 0xda, 0x68, 0x93, 0xe9, 0xcc, 0x3a, 0x81, 0x1b, 0xed, 0xd3, 0x73, 0x83, + 0xdc, 0x8f, 0x66, 0x27, 0xbb, 0xca, 0x2b, 0x74, 0x54, 0xa5, 0x58, 0xd3, 0x0b, 0x71, 0x92, 0x20, + 0x3d, 0x52, 0xc3, 0xa8, 0xe1, 0x7a, 0xb3, 0x53, 0xfc, 0x5d, 0x22, 0x4f, 0xa4, 0x1a, 0x2d, 0xc4, + 0x1c, 0xc6, 0xf4, 0x65, 0xf4, 0xc7, 0x2d, 0x7a, 0x73, 0x4d, 0x33, 0xc4, 0x58, 0x5f, 0x26, 0x01, + 0x38, 0xc6, 0xa1, 0xcc, 0x64, 0x14, 0xed, 0xcf, 0x22, 0x86, 0xaa, 0x0e, 0x96, 0x8d, 0x8d, 0x4f, + 0x62, 0x5a, 0x6e, 0x6f, 0xc2, 0x84, 0x3a, 0x08, 0xd9, 0x98, 0xa0, 0x79, 0x18, 0x64, 0xec, 0x93, + 0x90, 0xae, 0x95, 0x68, 0x17, 0x18, 0x6b, 0x85, 0x79, 0x39, 0xeb, 0x82, 0xfb, 0x36, 0x59, 0xda, + 0x8f, 0x08, 0x7f, 0xd3, 0x17, 0xb5, 0x2e, 0x48, 0x00, 0x8e, 0x71, 0xec, 0xff, 0xc3, 0xd9, 0xd0, + 0xf8, 0xb4, 0xed, 0xe3, 0x7e, 0x79, 0x16, 0x46, 0x76, 0xfc, 0x30, 0xa2, 0xd8, 0xac, 0x8d, 0xc1, + 0x98, 0xf1, 0xbc, 0x2e, 0xca, 0xb1, 0xc2, 0x40, 0xaf, 0xc2, 0x78, 0x5d, 0x6f, 0x40, 0x5c, 0x8e, + 0xea, 0x18, 0x31, 0x5a, 0xc7, 0x26, 0x2e, 0x7a, 0x19, 0x46, 0x98, 0x0d, 0x48, 0xdd, 0x6f, 0x0a, + 0xae, 0x4d, 0xde, 0xf0, 0x23, 0x55, 0x51, 0x7e, 0xa8, 0xfd, 0xc6, 0x0a, 0x1b, 0x5d, 0x82, 0x21, + 0xda, 0x85, 0x4a, 0x55, 0x5c, 0x4b, 0x4a, 0x50, 0x74, 0x9d, 0x95, 0x62, 0x01, 0xb5, 0xff, 0x52, + 0x41, 0x1b, 0x65, 0xfa, 0x1e, 0x26, 0xa8, 0x0a, 0xc3, 0xf7, 0x1c, 0x37, 0x72, 0xbd, 0x6d, 0xc1, + 0x7f, 0x3c, 0xdd, 0xf5, 0x8e, 0x62, 0x95, 0xee, 0xf2, 0x0a, 0xfc, 0x16, 0x15, 0x7f, 0xb0, 0x24, + 0x43, 0x29, 0x06, 0x1d, 0xcf, 0xa3, 0x14, 0x0b, 0xfd, 0x52, 0xc4, 0xbc, 0x02, 0xa7, 0x28, 0xfe, + 0x60, 0x49, 0x06, 0xbd, 0x09, 0x20, 0x77, 0x18, 0x69, 0x08, 0xdb, 0x8b, 0x67, 0x7b, 0x13, 0xdd, + 0x50, 0x75, 0x96, 0x26, 0xe8, 0x1d, 0x1d, 0xff, 0xc7, 0x1a, 0x3d, 0x3b, 0x62, 0x7c, 0x5a, 0xba, + 0x33, 0xe8, 0xdb, 0xe8, 0x12, 0x77, 0x82, 0x88, 0x34, 0x16, 0x23, 0x31, 0x38, 0x1f, 0xec, 0xef, + 0x91, 0xb2, 0xe1, 0xb6, 0x88, 0xbe, 0x1d, 0x04, 0x11, 0x1c, 0xd3, 0xb3, 0x7f, 0xa1, 0x08, 0xb3, + 0x79, 0xdd, 0xa5, 0x8b, 0x8e, 0xdc, 0x77, 0xa3, 0x65, 0xca, 0x5e, 0x59, 0xe6, 0xa2, 0x5b, 0x11, + 0xe5, 0x58, 0x61, 0xd0, 0xd9, 0x0f, 0xdd, 0x6d, 0xf9, 0xc6, 0x1c, 0x8c, 0x67, 0xbf, 0xc6, 0x4a, + 0xb1, 0x80, 0x52, 0xbc, 0x80, 0x38, 0xa1, 0x30, 0xee, 0xd1, 0x56, 0x09, 0x66, 0xa5, 0x58, 0x40, + 0x75, 0x69, 0xd7, 0x40, 0x0f, 0x69, 0x97, 0x31, 0x44, 0x83, 0xc7, 0x3b, 0x44, 0xe8, 0x33, 0x00, + 0x5b, 0xae, 0xe7, 0x86, 0x3b, 0x8c, 0xfa, 0xd0, 0x91, 0xa9, 0x2b, 0xe6, 0x6c, 0x55, 0x51, 0xc1, + 0x1a, 0x45, 0xf4, 0x12, 0x8c, 0xaa, 0x0d, 0x58, 0x29, 0x33, 0x4d, 0xa7, 0x66, 0x39, 0x12, 0x9f, + 0x46, 0x65, 0xac, 0xe3, 0xd9, 0x9f, 0x4b, 0xae, 0x17, 0xb1, 0x03, 0xb4, 0xf1, 0xb5, 0xfa, 0x1d, + 0xdf, 0x42, 0xf7, 0xf1, 0xb5, 0xbf, 0x56, 0x84, 0x49, 0xa3, 0xb1, 0x4e, 0xd8, 0xc7, 0x99, 0x75, + 0x8d, 0x1e, 0xe0, 0x4e, 0x44, 0xc4, 0xfe, 0xb3, 0x7b, 0x6f, 0x15, 0xfd, 0x90, 0xa7, 0x3b, 0x80, + 0xd7, 0x47, 0x9f, 0x81, 0x52, 0xd3, 0x09, 0x99, 0xe4, 0x8c, 0x88, 0x7d, 0xd7, 0x0f, 0xb1, 0xf8, + 0x61, 0xe2, 0x84, 0x91, 0x76, 0x6b, 0x72, 0xda, 0x31, 0x49, 0x7a, 0xd3, 0x50, 0xfe, 0x44, 0x5a, + 0x8f, 0xa9, 0x4e, 0x50, 0x26, 0x66, 0x1f, 0x73, 0x18, 0x7a, 0x19, 0xc6, 0x02, 0xc2, 0x56, 0xc5, + 0x32, 0xe5, 0xe6, 0xd8, 0x32, 0x1b, 0x8c, 0xd9, 0x3e, 0xac, 0xc1, 0xb0, 0x81, 0x19, 0xbf, 0x0d, + 0x86, 0xba, 0xbc, 0x0d, 0x9e, 0x86, 0x61, 0xf6, 0x43, 0xad, 0x00, 0x35, 0x1b, 0x15, 0x5e, 0x8c, + 0x25, 0x3c, 0xb9, 0x60, 0x46, 0xfa, 0x5b, 0x30, 0xf4, 0xf5, 0x21, 0x16, 0x35, 0xd3, 0x32, 0x8f, + 0xf0, 0x53, 0x4e, 0x2c, 0x79, 0x2c, 0x61, 0xf6, 0x07, 0x61, 0xa2, 0xec, 0x90, 0x96, 0xef, 0xad, + 0x78, 0x8d, 0xb6, 0xef, 0x7a, 0x11, 0x9a, 0x85, 0x01, 0x76, 0x89, 0xf0, 0x23, 0x60, 0x80, 0x36, + 0x84, 0x59, 0x89, 0xbd, 0x0d, 0xa7, 0xcb, 0xfe, 0x3d, 0xef, 0x9e, 0x13, 0x34, 0x16, 0xab, 0x15, + 0xed, 0x7d, 0xbd, 0x2e, 0xdf, 0x77, 0xdc, 0x68, 0x2b, 0xf3, 0xe8, 0xd5, 0x6a, 0x72, 0xb6, 0x76, + 0xd5, 0x6d, 0x92, 0x1c, 0x29, 0xc8, 0x5f, 0x2d, 0x18, 0x2d, 0xc5, 0xf8, 0x4a, 0xab, 0x65, 0xe5, + 0x6a, 0xb5, 0xde, 0x80, 0x91, 0x2d, 0x97, 0x34, 0x1b, 0x98, 0x6c, 0x89, 0x95, 0xf8, 0x54, 0xbe, + 0x1d, 0xca, 0x2a, 0xc5, 0x94, 0x52, 0x2f, 0xfe, 0x3a, 0x5c, 0x15, 0x95, 0xb1, 0x22, 0x83, 0x76, + 0x61, 0x4a, 0x3e, 0x18, 0x24, 0x54, 0xac, 0xcb, 0xa7, 0xbb, 0xbd, 0x42, 0x4c, 0xe2, 0xa7, 0x1e, + 0x1c, 0xcc, 0x4f, 0xe1, 0x04, 0x19, 0x9c, 0x22, 0x4c, 0x9f, 0x83, 0x2d, 0x7a, 0x02, 0x0f, 0xb0, + 0xe1, 0x67, 0xcf, 0x41, 0xf6, 0xb2, 0x65, 0xa5, 0xf6, 0x8f, 0x59, 0xf0, 0x58, 0x6a, 0x64, 0xc4, + 0x0b, 0xff, 0x98, 0x67, 0x21, 0xf9, 0xe2, 0x2e, 0xf4, 0x7e, 0x71, 0xdb, 0x7f, 0xd7, 0x82, 0x53, + 0x2b, 0xad, 0x76, 0xb4, 0x5f, 0x76, 0x4d, 0x15, 0xd4, 0x47, 0x60, 0xa8, 0x45, 0x1a, 0x6e, 0xa7, + 0x25, 0x66, 0x6e, 0x5e, 0x9e, 0x52, 0x6b, 0xac, 0xf4, 0xf0, 0x60, 0x7e, 0xbc, 0x16, 0xf9, 0x81, + 0xb3, 0x4d, 0x78, 0x01, 0x16, 0xe8, 0xec, 0xac, 0x77, 0xdf, 0x26, 0x37, 0xdd, 0x96, 0x2b, 0xed, + 0x8a, 0xba, 0xca, 0xec, 0x16, 0xe4, 0x80, 0x2e, 0xbc, 0xd1, 0x71, 0xbc, 0xc8, 0x8d, 0xf6, 0x85, + 0xf6, 0x48, 0x12, 0xc1, 0x31, 0x3d, 0xfb, 0xab, 0x16, 0x4c, 0xca, 0x75, 0xbf, 0xd8, 0x68, 0x04, + 0x24, 0x0c, 0xd1, 0x1c, 0x14, 0xdc, 0xb6, 0xe8, 0x25, 0x88, 0x5e, 0x16, 0x2a, 0x55, 0x5c, 0x70, + 0xdb, 0x92, 0x2d, 0x63, 0x07, 0x61, 0xd1, 0x54, 0xa4, 0x5d, 0x17, 0xe5, 0x58, 0x61, 0xa0, 0xcb, + 0x30, 0xe2, 0xf9, 0x0d, 0x6e, 0xdb, 0xc5, 0xaf, 0x34, 0xb6, 0xc0, 0xd6, 0x45, 0x19, 0x56, 0x50, + 0x54, 0x85, 0x12, 0x37, 0x7b, 0x8a, 0x17, 0x6d, 0x5f, 0xc6, 0x53, 0xec, 0xcb, 0x36, 0x64, 0x4d, + 0x1c, 0x13, 0xb1, 0x7f, 0xc5, 0x82, 0x31, 0xf9, 0x65, 0x7d, 0xf2, 0x9c, 0x74, 0x6b, 0xc5, 0xfc, + 0x66, 0xbc, 0xb5, 0x28, 0xcf, 0xc8, 0x20, 0x06, 0xab, 0x58, 0x3c, 0x12, 0xab, 0x78, 0x15, 0x46, + 0x9d, 0x76, 0xbb, 0x6a, 0xf2, 0x99, 0x6c, 0x29, 0x2d, 0xc6, 0xc5, 0x58, 0xc7, 0xb1, 0x7f, 0xb4, + 0x00, 0x13, 0xf2, 0x0b, 0x6a, 0x9d, 0xcd, 0x90, 0x44, 0x68, 0x03, 0x4a, 0x0e, 0x9f, 0x25, 0x22, + 0x17, 0xf9, 0xc5, 0x6c, 0x39, 0x82, 0x31, 0xa5, 0xf1, 0x85, 0xbf, 0x28, 0x6b, 0xe3, 0x98, 0x10, + 0x6a, 0xc2, 0xb4, 0xe7, 0x47, 0xec, 0xf0, 0x57, 0xf0, 0x6e, 0xaa, 0x9d, 0x24, 0xf5, 0xb3, 0x82, + 0xfa, 0xf4, 0x7a, 0x92, 0x0a, 0x4e, 0x13, 0x46, 0x2b, 0x52, 0x36, 0x53, 0xcc, 0x17, 0x06, 0xe8, + 0x13, 0x97, 0x2d, 0x9a, 0xb1, 0x7f, 0xd9, 0x82, 0x92, 0x44, 0x3b, 0x09, 0x2d, 0xde, 0x1a, 0x0c, + 0x87, 0x6c, 0x12, 0xe4, 0xd0, 0xd8, 0xdd, 0x3a, 0xce, 0xe7, 0x2b, 0xbe, 0xd3, 0xf8, 0xff, 0x10, + 0x4b, 0x1a, 0x4c, 0x34, 0xaf, 0xba, 0xff, 0x2e, 0x11, 0xcd, 0xab, 0xfe, 0xe4, 0x5c, 0x4a, 0x7f, + 0xc8, 0xfa, 0xac, 0xc9, 0xba, 0x28, 0xeb, 0xd5, 0x0e, 0xc8, 0x96, 0x7b, 0x3f, 0xc9, 0x7a, 0x55, + 0x59, 0x29, 0x16, 0x50, 0xf4, 0x26, 0x8c, 0xd5, 0xa5, 0x4c, 0x36, 0xde, 0xe1, 0x97, 0xba, 0xea, + 0x07, 0x94, 0x2a, 0x89, 0xcb, 0x42, 0x96, 0xb5, 0xfa, 0xd8, 0xa0, 0x66, 0x9a, 0x11, 0x14, 0x7b, + 0x99, 0x11, 0xc4, 0x74, 0xf3, 0x95, 0xea, 0x3f, 0x6e, 0xc1, 0x10, 0x97, 0xc5, 0xf5, 0x27, 0x0a, + 0xd5, 0x34, 0x6b, 0xf1, 0xd8, 0xdd, 0xa1, 0x85, 0x42, 0x53, 0x86, 0xd6, 0xa0, 0xc4, 0x7e, 0x30, + 0x59, 0x62, 0x31, 0xdf, 0xea, 0x9e, 0xb7, 0xaa, 0x77, 0xf0, 0x8e, 0xac, 0x86, 0x63, 0x0a, 0xf6, + 0x0f, 0x17, 0xe9, 0xe9, 0x16, 0xa3, 0x1a, 0x97, 0xbe, 0xf5, 0xe8, 0x2e, 0xfd, 0xc2, 0xa3, 0xba, + 0xf4, 0xb7, 0x61, 0xb2, 0xae, 0xe9, 0xe1, 0xe2, 0x99, 0xbc, 0xdc, 0x75, 0x91, 0x68, 0x2a, 0x3b, + 0x2e, 0x65, 0x59, 0x36, 0x89, 0xe0, 0x24, 0x55, 0xf4, 0x6d, 0x30, 0xc6, 0xe7, 0x59, 0xb4, 0xc2, + 0x2d, 0x31, 0x3e, 0x90, 0xbf, 0x5e, 0xf4, 0x26, 0xb8, 0x54, 0x4e, 0xab, 0x8e, 0x0d, 0x62, 0xf6, + 0x9f, 0x58, 0x80, 0x56, 0xda, 0x3b, 0xa4, 0x45, 0x02, 0xa7, 0x19, 0x8b, 0xd3, 0xbf, 0xdf, 0x82, + 0x59, 0x92, 0x2a, 0x5e, 0xf6, 0x5b, 0x2d, 0xf1, 0x68, 0xc9, 0x79, 0x57, 0xaf, 0xe4, 0xd4, 0x51, + 0x6e, 0x09, 0xb3, 0x79, 0x18, 0x38, 0xb7, 0x3d, 0xb4, 0x06, 0x33, 0xfc, 0x96, 0x54, 0x00, 0xcd, + 0xf6, 0xfa, 0x71, 0x41, 0x78, 0x66, 0x23, 0x8d, 0x82, 0xb3, 0xea, 0xd9, 0xdf, 0x35, 0x06, 0xb9, + 0xbd, 0x78, 0x4f, 0x8f, 0xf0, 0x9e, 0x1e, 0xe1, 0x3d, 0x3d, 0xc2, 0x7b, 0x7a, 0x84, 0xf7, 0xf4, + 0x08, 0xdf, 0xf4, 0x7a, 0x84, 0x3f, 0xb2, 0x60, 0x26, 0x7d, 0x0d, 0x9c, 0x04, 0x63, 0xde, 0x81, + 0x99, 0xf4, 0x5d, 0xd7, 0xd5, 0xce, 0x2e, 0xdd, 0xcf, 0xf8, 0xde, 0xcb, 0xf8, 0x06, 0x9c, 0x45, + 0xdf, 0xfe, 0xcb, 0x16, 0x9c, 0x56, 0xc8, 0xc6, 0x4b, 0xff, 0xf3, 0x30, 0xc3, 0xcf, 0x97, 0xe5, + 0xa6, 0xe3, 0xb6, 0x36, 0x48, 0xab, 0xdd, 0x74, 0x22, 0x69, 0x66, 0x70, 0x35, 0x73, 0xab, 0x26, + 0x4c, 0x74, 0x8d, 0x8a, 0x4b, 0x8f, 0xd1, 0x7e, 0x65, 0x00, 0x70, 0x56, 0x33, 0xf6, 0x2f, 0x8c, + 0xc0, 0xe0, 0xca, 0x1e, 0xf1, 0xa2, 0x13, 0x18, 0xfa, 0x3a, 0x4c, 0xb8, 0xde, 0x9e, 0xdf, 0xdc, + 0x23, 0x0d, 0x0e, 0x3f, 0xca, 0xd3, 0xfd, 0x8c, 0x20, 0x3d, 0x51, 0x31, 0x48, 0xe0, 0x04, 0xc9, + 0x47, 0x21, 0x3e, 0xbf, 0x06, 0x43, 0xfc, 0xd6, 0x12, 0xb2, 0xf3, 0xcc, 0x4b, 0x8a, 0x0d, 0xa2, + 0xb8, 0x8b, 0x63, 0xd1, 0x3e, 0xbf, 0x15, 0x45, 0x75, 0xf4, 0x39, 0x98, 0xd8, 0x72, 0x83, 0x30, + 0xda, 0x70, 0x5b, 0x24, 0x8c, 0x9c, 0x56, 0xfb, 0x21, 0xc4, 0xe5, 0x6a, 0x1c, 0x56, 0x0d, 0x4a, + 0x38, 0x41, 0x19, 0x6d, 0xc3, 0x78, 0xd3, 0xd1, 0x9b, 0x1a, 0x3e, 0x72, 0x53, 0xea, 0x3a, 0xbc, + 0xa9, 0x13, 0xc2, 0x26, 0x5d, 0x7a, 0x7e, 0xd4, 0x99, 0xc4, 0x77, 0x84, 0xc9, 0x41, 0xd4, 0xf9, + 0xc1, 0x45, 0xbd, 0x1c, 0x46, 0x39, 0x3b, 0x66, 0x11, 0x5c, 0x32, 0x39, 0x3b, 0xcd, 0xee, 0xf7, + 0xb3, 0x50, 0x22, 0x74, 0x08, 0x29, 0x61, 0x71, 0xa3, 0x5e, 0xe9, 0xaf, 0xaf, 0x6b, 0x6e, 0x3d, + 0xf0, 0x4d, 0x45, 0xc5, 0x8a, 0xa4, 0x84, 0x63, 0xa2, 0x68, 0x19, 0x86, 0x42, 0x12, 0xb8, 0x24, + 0x14, 0x77, 0x6b, 0x97, 0x69, 0x64, 0x68, 0xdc, 0x99, 0x86, 0xff, 0xc6, 0xa2, 0x2a, 0x5d, 0x5e, + 0x0e, 0x93, 0xe1, 0xb2, 0xdb, 0x4f, 0x5b, 0x5e, 0x8b, 0xac, 0x14, 0x0b, 0x28, 0x7a, 0x1d, 0x86, + 0x03, 0xd2, 0x64, 0x9a, 0xb0, 0xf1, 0xfe, 0x17, 0x39, 0x57, 0xac, 0xf1, 0x7a, 0x58, 0x12, 0x40, + 0x37, 0x00, 0x05, 0x84, 0x72, 0x86, 0xae, 0xb7, 0xad, 0xec, 0x64, 0xc5, 0xcd, 0xa2, 0x4e, 0x22, + 0x1c, 0x63, 0x48, 0xbf, 0x26, 0x9c, 0x51, 0x0d, 0x5d, 0x83, 0x69, 0x55, 0x5a, 0xf1, 0xc2, 0xc8, + 0xa1, 0x27, 0xfa, 0x24, 0xa3, 0xa5, 0x04, 0x33, 0x38, 0x89, 0x80, 0xd3, 0x75, 0xec, 0x2f, 0x5b, + 0xc0, 0xc7, 0xf9, 0x04, 0xc4, 0x11, 0xaf, 0x99, 0xe2, 0x88, 0xb3, 0xb9, 0x33, 0x97, 0x23, 0x8a, + 0xf8, 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, 0xb2, 0xc9, + 0xbb, 0x99, 0x20, 0x88, 0x53, 0x4d, 0xd8, 0x9f, 0x95, 0x5d, 0x55, 0x26, 0x8c, 0x75, 0x35, 0xe7, + 0x09, 0x13, 0x46, 0x35, 0xab, 0x38, 0xc6, 0xa1, 0x5b, 0x6d, 0xc7, 0x0f, 0xa3, 0xa4, 0x09, 0xe3, + 0x75, 0x3f, 0x8c, 0x30, 0x83, 0xd8, 0x2f, 0x00, 0xac, 0xdc, 0x27, 0x75, 0xbe, 0x62, 0xf5, 0xd7, + 0x92, 0x95, 0xff, 0x5a, 0xb2, 0x7f, 0xcb, 0x82, 0x89, 0xd5, 0x65, 0xe3, 0xe6, 0x5a, 0x00, 0xe0, + 0x4f, 0xbc, 0xbb, 0x77, 0xd7, 0xa5, 0xfe, 0x9f, 0xab, 0x70, 0x55, 0x29, 0xd6, 0x30, 0xd0, 0x59, + 0x28, 0x36, 0x3b, 0x9e, 0x90, 0x97, 0x0e, 0x53, 0x7e, 0xe0, 0x66, 0xc7, 0xc3, 0xb4, 0x4c, 0xf3, + 0xa1, 0x28, 0xf6, 0xed, 0x43, 0xd1, 0x33, 0x96, 0x01, 0x9a, 0x87, 0xc1, 0x7b, 0xf7, 0xdc, 0x06, + 0xf7, 0x18, 0x15, 0xb6, 0x09, 0x77, 0xef, 0x56, 0xca, 0x21, 0xe6, 0xe5, 0xf6, 0x97, 0x8a, 0x30, + 0xb7, 0xda, 0x24, 0xf7, 0xdf, 0xa1, 0xd7, 0x6c, 0xbf, 0x1e, 0x20, 0x47, 0x93, 0x3c, 0x1d, 0xd5, + 0xcb, 0xa7, 0xf7, 0x78, 0x6c, 0xc1, 0x30, 0xb7, 0xe0, 0x93, 0x3e, 0xb4, 0xaf, 0x66, 0xb5, 0x9e, + 0x3f, 0x20, 0x0b, 0xdc, 0x12, 0x50, 0xb8, 0x00, 0xaa, 0x0b, 0x53, 0x94, 0x62, 0x49, 0x7c, 0xee, + 0x15, 0x18, 0xd3, 0x31, 0x8f, 0xe4, 0x6f, 0xf7, 0xff, 0x15, 0x61, 0x8a, 0xf6, 0xe0, 0x91, 0x4e, + 0xc4, 0xed, 0xf4, 0x44, 0x1c, 0xb7, 0xcf, 0x55, 0xef, 0xd9, 0x78, 0x33, 0x39, 0x1b, 0x57, 0xf3, + 0x66, 0xe3, 0xa4, 0xe7, 0xe0, 0x3b, 0x2d, 0x98, 0x59, 0x6d, 0xfa, 0xf5, 0xdd, 0x84, 0x5f, 0xd4, + 0x4b, 0x30, 0x4a, 0x8f, 0xe3, 0xd0, 0x70, 0xd9, 0x37, 0x82, 0x38, 0x08, 0x10, 0xd6, 0xf1, 0xb4, + 0x6a, 0xb7, 0x6f, 0x57, 0xca, 0x59, 0xb1, 0x1f, 0x04, 0x08, 0xeb, 0x78, 0xf6, 0x6f, 0x58, 0x70, + 0xee, 0xda, 0xf2, 0x4a, 0xbc, 0x14, 0x53, 0xe1, 0x27, 0x2e, 0xc1, 0x50, 0xbb, 0xa1, 0x75, 0x25, + 0x96, 0x27, 0x97, 0x59, 0x2f, 0x04, 0xf4, 0xdd, 0x12, 0x5a, 0xe5, 0xa7, 0x2c, 0x98, 0xb9, 0xe6, + 0x46, 0xf4, 0x76, 0x4d, 0x06, 0x42, 0xa0, 0xd7, 0x6b, 0xe8, 0x46, 0x7e, 0xb0, 0x9f, 0x0c, 0x84, + 0x80, 0x15, 0x04, 0x6b, 0x58, 0xbc, 0xe5, 0x3d, 0x97, 0xd9, 0x8e, 0x17, 0x4c, 0xcd, 0x1a, 0x16, + 0xe5, 0x58, 0x61, 0xd0, 0x0f, 0x6b, 0xb8, 0x01, 0x13, 0x4a, 0xee, 0x8b, 0x13, 0x56, 0x7d, 0x58, + 0x59, 0x02, 0x70, 0x8c, 0x43, 0xdf, 0x67, 0xf3, 0xd7, 0x9a, 0x9d, 0x30, 0x22, 0xc1, 0x56, 0x98, + 0x73, 0x3a, 0xbe, 0x00, 0x25, 0x22, 0x55, 0x00, 0xa2, 0xd7, 0x8a, 0x63, 0x54, 0xba, 0x01, 0x1e, + 0x8f, 0x41, 0xe1, 0xf5, 0xe1, 0x65, 0x79, 0x34, 0x37, 0xb9, 0x55, 0x40, 0x44, 0x6f, 0x4b, 0x0f, + 0x50, 0xc1, 0x3c, 0xdd, 0x57, 0x52, 0x50, 0x9c, 0x51, 0xc3, 0xfe, 0x31, 0x0b, 0x4e, 0xab, 0x0f, + 0x7e, 0xd7, 0x7d, 0xa6, 0xfd, 0xb3, 0x05, 0x18, 0xbf, 0xbe, 0xb1, 0x51, 0xbd, 0x46, 0x22, 0x71, + 0x6d, 0xf7, 0x56, 0xec, 0x63, 0x4d, 0x3f, 0xd9, 0xed, 0x31, 0xd7, 0x89, 0xdc, 0xe6, 0x02, 0x8f, + 0x73, 0xb4, 0x50, 0xf1, 0xa2, 0x5b, 0x41, 0x2d, 0x0a, 0x5c, 0x6f, 0x3b, 0x53, 0xa3, 0x29, 0x99, + 0x8b, 0x62, 0x1e, 0x73, 0x81, 0x5e, 0x80, 0x21, 0x16, 0x68, 0x49, 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, 0x3e, 0xc6, 0xf9, 0x71, 0x78, 0x3e, 0xeb, 0x38, 0xa4, + 0x83, 0xc0, 0xd1, 0xe2, 0x13, 0x24, 0x2e, 0x0b, 0xb1, 0x4e, 0xc7, 0xae, 0x01, 0xc4, 0xb0, 0x63, + 0x52, 0xcd, 0xd8, 0x7f, 0x60, 0xc1, 0x30, 0x8f, 0x79, 0x11, 0xa0, 0x8f, 0xc2, 0x00, 0xb9, 0x4f, + 0xea, 0x82, 0xe3, 0xcd, 0xec, 0x70, 0xcc, 0x69, 0x71, 0x11, 0x33, 0xfd, 0x8f, 0x59, 0x2d, 0x74, + 0x1d, 0x86, 0x69, 0x6f, 0xaf, 0xa9, 0x00, 0x20, 0x4f, 0xe6, 0x7d, 0xb1, 0x9a, 0x76, 0xce, 0x9c, + 0x89, 0x22, 0x2c, 0xab, 0x33, 0x7d, 0x78, 0xbd, 0x5d, 0xa3, 0x27, 0x76, 0xd4, 0x8d, 0xb1, 0xd8, + 0x58, 0xae, 0x72, 0x24, 0x41, 0x8d, 0xeb, 0xc3, 0x65, 0x21, 0x8e, 0x89, 0xd8, 0x1b, 0x50, 0xa2, + 0x93, 0xba, 0xd8, 0x74, 0x9d, 0xee, 0x2a, 0xfe, 0x67, 0xa0, 0x24, 0x15, 0xf8, 0xa1, 0xf0, 0x75, + 0x67, 0x54, 0xa5, 0x7e, 0x3f, 0xc4, 0x31, 0xdc, 0xde, 0x82, 0x53, 0xcc, 0x1c, 0xd3, 0x89, 0x76, + 0x8c, 0x3d, 0xd6, 0x7b, 0x31, 0x3f, 0x2b, 0x1e, 0x90, 0x7c, 0x66, 0x66, 0x35, 0x77, 0xd2, 0x31, + 0x49, 0x31, 0x7e, 0x4c, 0xda, 0x5f, 0x1b, 0x80, 0xc7, 0x2b, 0xb5, 0xfc, 0x70, 0x28, 0x2f, 0xc3, + 0x18, 0xe7, 0x4b, 0xe9, 0xd2, 0x76, 0x9a, 0xa2, 0x5d, 0x25, 0x5b, 0xde, 0xd0, 0x60, 0xd8, 0xc0, + 0x44, 0xe7, 0xa0, 0xe8, 0xbe, 0xe5, 0x25, 0x9d, 0xad, 0x2a, 0x6f, 0xac, 0x63, 0x5a, 0x4e, 0xc1, + 0x94, 0xc5, 0xe5, 0x77, 0x87, 0x02, 0x2b, 0x36, 0xf7, 0x35, 0x98, 0x70, 0xc3, 0x7a, 0xe8, 0x56, + 0x3c, 0x7a, 0xce, 0x68, 0x27, 0x95, 0x12, 0x6e, 0xd0, 0x4e, 0x2b, 0x28, 0x4e, 0x60, 0x6b, 0x17, + 0xd9, 0x60, 0xdf, 0x6c, 0x72, 0x4f, 0xe7, 0x6f, 0xfa, 0x02, 0x68, 0xb3, 0xaf, 0x0b, 0x99, 0x92, + 0x40, 0xbc, 0x00, 0xf8, 0x07, 0x87, 0x58, 0xc2, 0xe8, 0xcb, 0xb1, 0xbe, 0xe3, 0xb4, 0x17, 0x3b, + 0xd1, 0x4e, 0xd9, 0x0d, 0xeb, 0xfe, 0x1e, 0x09, 0xf6, 0xd9, 0xa3, 0x7f, 0x24, 0x7e, 0x39, 0x2a, + 0xc0, 0xf2, 0xf5, 0xc5, 0x2a, 0xc5, 0xc4, 0xe9, 0x3a, 0x68, 0x11, 0x26, 0x65, 0x61, 0x8d, 0x84, + 0xec, 0x0a, 0x1b, 0x65, 0x64, 0x94, 0xfb, 0x93, 0x28, 0x56, 0x44, 0x92, 0xf8, 0x26, 0x27, 0x0d, + 0xc7, 0xc1, 0x49, 0x7f, 0x04, 0xc6, 0x5d, 0xcf, 0x8d, 0x5c, 0x27, 0xf2, 0xb9, 0x86, 0x8b, 0xbf, + 0xef, 0x99, 0xe8, 0xbe, 0xa2, 0x03, 0xb0, 0x89, 0x67, 0xff, 0x97, 0x01, 0x98, 0x66, 0xd3, 0xf6, + 0xde, 0x0a, 0xfb, 0x66, 0x5a, 0x61, 0xb7, 0xd3, 0x2b, 0xec, 0x38, 0x9e, 0x08, 0x0f, 0xbd, 0xcc, + 0x3e, 0x07, 0x25, 0xe5, 0xf1, 0x25, 0x5d, 0x3e, 0xad, 0x1c, 0x97, 0xcf, 0xde, 0xdc, 0x87, 0x34, + 0x9a, 0x2b, 0x66, 0x1a, 0xcd, 0xfd, 0x75, 0x0b, 0x62, 0x95, 0x0d, 0xba, 0x0e, 0xa5, 0xb6, 0xcf, + 0x6c, 0x41, 0x03, 0x69, 0x60, 0xfd, 0x78, 0xe6, 0x45, 0xc5, 0x2f, 0x45, 0xfe, 0xf1, 0x55, 0x59, + 0x03, 0xc7, 0x95, 0xd1, 0x12, 0x0c, 0xb7, 0x03, 0x52, 0x8b, 0x58, 0x54, 0x94, 0x9e, 0x74, 0xf8, + 0x1a, 0xe1, 0xf8, 0x58, 0x56, 0xb4, 0x7f, 0xce, 0x02, 0xe0, 0x76, 0x69, 0x8e, 0xb7, 0x4d, 0x4e, + 0x40, 0x6a, 0x5d, 0x86, 0x81, 0xb0, 0x4d, 0xea, 0xdd, 0xac, 0x74, 0xe3, 0xfe, 0xd4, 0xda, 0xa4, + 0x1e, 0x0f, 0x38, 0xfd, 0x87, 0x59, 0x6d, 0xfb, 0xbb, 0x01, 0x26, 0x62, 0xb4, 0x4a, 0x44, 0x5a, + 0xe8, 0x39, 0x23, 0x4a, 0xc2, 0xd9, 0x44, 0x94, 0x84, 0x12, 0xc3, 0xd6, 0x04, 0xa4, 0x9f, 0x83, + 0x62, 0xcb, 0xb9, 0x2f, 0x24, 0x60, 0xcf, 0x74, 0xef, 0x06, 0xa5, 0xbf, 0xb0, 0xe6, 0xdc, 0xe7, + 0x8f, 0xc4, 0x67, 0xe4, 0x02, 0x59, 0x73, 0xee, 0x1f, 0x72, 0x5b, 0x5c, 0x76, 0x48, 0xdd, 0x74, + 0xc3, 0xe8, 0x0b, 0xff, 0x39, 0xfe, 0xcf, 0x96, 0x1d, 0x6d, 0x84, 0xb5, 0xe5, 0x7a, 0xc2, 0xe4, + 0xaa, 0xaf, 0xb6, 0x5c, 0x2f, 0xd9, 0x96, 0xeb, 0xf5, 0xd1, 0x96, 0xeb, 0xa1, 0xb7, 0x61, 0x58, + 0x58, 0x44, 0x8a, 0xa8, 0x44, 0x57, 0xfa, 0x68, 0x4f, 0x18, 0x54, 0xf2, 0x36, 0xaf, 0xc8, 0x47, + 0xb0, 0x28, 0xed, 0xd9, 0xae, 0x6c, 0x10, 0xfd, 0x15, 0x0b, 0x26, 0xc4, 0x6f, 0x4c, 0xde, 0xea, + 0x90, 0x30, 0x12, 0xbc, 0xe7, 0x87, 0xfb, 0xef, 0x83, 0xa8, 0xc8, 0xbb, 0xf2, 0x61, 0x79, 0xcc, + 0x9a, 0xc0, 0x9e, 0x3d, 0x4a, 0xf4, 0x02, 0xfd, 0x7d, 0x0b, 0x4e, 0xb5, 0x9c, 0xfb, 0xbc, 0x45, + 0x5e, 0x86, 0x9d, 0xc8, 0xf5, 0x85, 0x65, 0xc1, 0x47, 0xfb, 0x9b, 0xfe, 0x54, 0x75, 0xde, 0x49, + 0xa9, 0xfe, 0x3c, 0x95, 0x85, 0xd2, 0xb3, 0xab, 0x99, 0xfd, 0x9a, 0xdb, 0x82, 0x11, 0xb9, 0xde, + 0x32, 0x44, 0x0d, 0x65, 0x9d, 0xb1, 0x3e, 0xb2, 0x41, 0xaa, 0x1e, 0x7d, 0x80, 0xb6, 0x23, 0xd6, + 0xda, 0x23, 0x6d, 0xe7, 0x73, 0x30, 0xa6, 0xaf, 0xb1, 0x47, 0xda, 0xd6, 0x5b, 0x30, 0x93, 0xb1, + 0x96, 0x1e, 0x69, 0x93, 0xf7, 0xe0, 0x6c, 0xee, 0xfa, 0x78, 0x94, 0x0d, 0xdb, 0x3f, 0x6b, 0xe9, + 0xe7, 0xe0, 0x09, 0xa8, 0x0e, 0x96, 0x4d, 0xd5, 0xc1, 0xf9, 0xee, 0x3b, 0x27, 0x47, 0x7f, 0xf0, + 0xa6, 0xde, 0x69, 0x7a, 0xaa, 0xa3, 0xd7, 0x61, 0xa8, 0x49, 0x4b, 0xa4, 0x5d, 0xad, 0xdd, 0x7b, + 0x47, 0xc6, 0xbc, 0x14, 0x2b, 0x0f, 0xb1, 0xa0, 0x60, 0xff, 0xa2, 0x05, 0x03, 0x27, 0x30, 0x12, + 0xd8, 0x1c, 0x89, 0xe7, 0x72, 0x49, 0x8b, 0x80, 0xc9, 0x0b, 0xd8, 0xb9, 0xb7, 0x72, 0x3f, 0x22, + 0x5e, 0xc8, 0x9e, 0x8a, 0x99, 0x03, 0xf3, 0x93, 0x16, 0xcc, 0xdc, 0xf4, 0x9d, 0xc6, 0x92, 0xd3, + 0x74, 0xbc, 0x3a, 0x09, 0x2a, 0xde, 0xf6, 0x91, 0x8c, 0xc2, 0x0b, 0x3d, 0x8d, 0xc2, 0x97, 0xa5, + 0x4d, 0xd5, 0x40, 0xfe, 0xfc, 0x51, 0x46, 0x32, 0x19, 0x37, 0xc6, 0xb0, 0xfe, 0xdd, 0x01, 0xa4, + 0xf7, 0x52, 0xb8, 0xe8, 0x60, 0x18, 0x76, 0x79, 0x7f, 0xc5, 0x24, 0x3e, 0x95, 0xcd, 0xe0, 0xa5, + 0x3e, 0x4f, 0x73, 0x3e, 0xe1, 0x05, 0x58, 0x12, 0xb2, 0x5f, 0x86, 0x4c, 0x3f, 0xff, 0xde, 0xc2, + 0x07, 0xfb, 0x93, 0x30, 0xcd, 0x6a, 0x1e, 0xf1, 0x61, 0x6c, 0x27, 0x64, 0x9b, 0x19, 0x11, 0x00, + 0xed, 0x2f, 0x5a, 0x30, 0xb9, 0x9e, 0x08, 0x8c, 0x76, 0x89, 0x69, 0x43, 0x33, 0x44, 0xea, 0x35, + 0x56, 0x8a, 0x05, 0xf4, 0xd8, 0x25, 0x59, 0x7f, 0x61, 0x41, 0x1c, 0x7a, 0xe3, 0x04, 0xd8, 0xb7, + 0x65, 0x83, 0x7d, 0xcb, 0x94, 0xb0, 0xa8, 0xee, 0xe4, 0x71, 0x6f, 0xe8, 0x86, 0x0a, 0x4a, 0xd5, + 0x45, 0xb8, 0x12, 0x93, 0xe1, 0x4b, 0x71, 0xc2, 0x8c, 0x5c, 0x25, 0xc3, 0x54, 0xd9, 0xbf, 0x5d, + 0x00, 0xa4, 0x70, 0xfb, 0x0e, 0x9a, 0x95, 0xae, 0x71, 0x3c, 0x41, 0xb3, 0xf6, 0x00, 0x31, 0x7d, + 0x7e, 0xe0, 0x78, 0x21, 0x27, 0xeb, 0x0a, 0xd9, 0xdd, 0xd1, 0x8c, 0x05, 0xe6, 0x44, 0x93, 0xe8, + 0x66, 0x8a, 0x1a, 0xce, 0x68, 0x41, 0xb3, 0xd3, 0x18, 0xec, 0xd7, 0x4e, 0x63, 0xa8, 0x87, 0x1b, + 0xde, 0xcf, 0x58, 0x30, 0xae, 0x86, 0xe9, 0x5d, 0x62, 0x24, 0xaf, 0xfa, 0x93, 0x73, 0x80, 0x56, + 0xb5, 0x2e, 0xb3, 0x8b, 0xe5, 0x5b, 0x99, 0x3b, 0xa5, 0xd3, 0x74, 0xdf, 0x26, 0x2a, 0x64, 0xe1, + 0xbc, 0x70, 0x8f, 0x14, 0xa5, 0x87, 0x07, 0xf3, 0xe3, 0xea, 0x1f, 0x0f, 0x91, 0x1c, 0x57, 0xa1, + 0x47, 0xf2, 0x64, 0x62, 0x29, 0xa2, 0x97, 0x60, 0xb0, 0xbd, 0xe3, 0x84, 0x24, 0xe1, 0x4c, 0x34, + 0x58, 0xa5, 0x85, 0x87, 0x07, 0xf3, 0x13, 0xaa, 0x02, 0x2b, 0xc1, 0x1c, 0xbb, 0xff, 0x50, 0x64, + 0xe9, 0xc5, 0xd9, 0x33, 0x14, 0xd9, 0x9f, 0x58, 0x30, 0xb0, 0xee, 0x37, 0x4e, 0xe2, 0x08, 0x78, + 0xcd, 0x38, 0x02, 0x9e, 0xc8, 0x8b, 0x5e, 0x9f, 0xbb, 0xfb, 0x57, 0x13, 0xbb, 0xff, 0x7c, 0x2e, + 0x85, 0xee, 0x1b, 0xbf, 0x05, 0xa3, 0x2c, 0x26, 0xbe, 0x70, 0x9c, 0x7a, 0xc1, 0xd8, 0xf0, 0xf3, + 0x89, 0x0d, 0x3f, 0xa9, 0xa1, 0x6a, 0x3b, 0xfd, 0x69, 0x18, 0x16, 0x9e, 0x38, 0x49, 0xaf, 0x54, + 0x81, 0x8b, 0x25, 0xdc, 0xfe, 0xf1, 0x22, 0x18, 0x31, 0xf8, 0xd1, 0x2f, 0x5b, 0xb0, 0x10, 0x70, + 0x0b, 0xdd, 0x46, 0xb9, 0x13, 0xb8, 0xde, 0x76, 0xad, 0xbe, 0x43, 0x1a, 0x9d, 0xa6, 0xeb, 0x6d, + 0x57, 0xb6, 0x3d, 0x5f, 0x15, 0xaf, 0xdc, 0x27, 0xf5, 0x0e, 0x53, 0x82, 0xf5, 0x08, 0xf8, 0xaf, + 0x2c, 0xdd, 0x9f, 0x7f, 0x70, 0x30, 0xbf, 0x80, 0x8f, 0x44, 0x1b, 0x1f, 0xb1, 0x2f, 0xe8, 0x37, + 0x2c, 0xb8, 0xc2, 0x43, 0xd3, 0xf7, 0xdf, 0xff, 0x2e, 0xaf, 0xe5, 0xaa, 0x24, 0x15, 0x13, 0xd9, + 0x20, 0x41, 0x6b, 0xe9, 0x23, 0x62, 0x40, 0xaf, 0x54, 0x8f, 0xd6, 0x16, 0x3e, 0x6a, 0xe7, 0xec, + 0x7f, 0x56, 0x84, 0x71, 0x11, 0xb2, 0x4a, 0xdc, 0x01, 0x2f, 0x19, 0x4b, 0xe2, 0xc9, 0xc4, 0x92, + 0x98, 0x36, 0x90, 0x8f, 0xe7, 0xf8, 0x0f, 0x61, 0x9a, 0x1e, 0xce, 0xd7, 0x89, 0x13, 0x44, 0x9b, + 0xc4, 0xe1, 0xe6, 0x57, 0xc5, 0x23, 0x9f, 0xfe, 0x4a, 0x3c, 0x77, 0x33, 0x49, 0x0c, 0xa7, 0xe9, + 0x7f, 0x33, 0xdd, 0x39, 0x1e, 0x4c, 0xa5, 0xa2, 0x8e, 0x7d, 0x0a, 0x4a, 0xca, 0x8d, 0x44, 0x1c, + 0x3a, 0xdd, 0x83, 0xf7, 0x25, 0x29, 0x70, 0x11, 0x5a, 0xec, 0xc2, 0x14, 0x93, 0xb3, 0xff, 0x41, + 0xc1, 0x68, 0x90, 0x4f, 0xe2, 0x3a, 0x8c, 0x38, 0x61, 0xe8, 0x6e, 0x7b, 0xa4, 0x21, 0x76, 0xec, + 0xfb, 0xf3, 0x76, 0xac, 0xd1, 0x0c, 0x73, 0xe5, 0x59, 0x14, 0x35, 0xb1, 0xa2, 0x81, 0xae, 0x73, + 0x23, 0xb7, 0x3d, 0xf9, 0xde, 0xeb, 0x8f, 0x1a, 0x48, 0x33, 0xb8, 0x3d, 0x82, 0x45, 0x7d, 0xf4, + 0x69, 0x6e, 0x85, 0x78, 0xc3, 0xf3, 0xef, 0x79, 0xd7, 0x7c, 0x5f, 0x86, 0x85, 0xe8, 0x8f, 0xe0, + 0xb4, 0xb4, 0x3d, 0x54, 0xd5, 0xb1, 0x49, 0xad, 0xbf, 0x30, 0x9e, 0x9f, 0x87, 0x19, 0x4a, 0xda, + 0xf4, 0xda, 0x0e, 0x11, 0x81, 0x49, 0x11, 0x0f, 0x4d, 0x96, 0x89, 0xb1, 0xcb, 0x7c, 0xca, 0x99, + 0xb5, 0x63, 0x39, 0xf2, 0x0d, 0x93, 0x04, 0x4e, 0xd2, 0xb4, 0xff, 0xb6, 0x05, 0xcc, 0x83, 0xf5, + 0x04, 0xf8, 0x91, 0x8f, 0x99, 0xfc, 0xc8, 0x6c, 0xde, 0x20, 0xe7, 0xb0, 0x22, 0x2f, 0xf2, 0x95, + 0x55, 0x0d, 0xfc, 0xfb, 0xfb, 0xc2, 0x74, 0xa4, 0xf7, 0xfb, 0xc3, 0xfe, 0xdf, 0x16, 0x3f, 0xc4, + 0x94, 0x93, 0x07, 0xfa, 0x76, 0x18, 0xa9, 0x3b, 0x6d, 0xa7, 0xce, 0x13, 0xc6, 0xe4, 0x4a, 0xf4, + 0x8c, 0x4a, 0x0b, 0xcb, 0xa2, 0x06, 0x97, 0x50, 0xc9, 0xb8, 0x7a, 0x23, 0xb2, 0xb8, 0xa7, 0x54, + 0x4a, 0x35, 0x39, 0xb7, 0x0b, 0xe3, 0x06, 0xb1, 0x47, 0x2a, 0xce, 0xf8, 0x76, 0x7e, 0xc5, 0xaa, + 0x38, 0x90, 0x2d, 0x98, 0xf6, 0xb4, 0xff, 0xf4, 0x42, 0x91, 0x8f, 0xcb, 0xf7, 0xf7, 0xba, 0x44, + 0xd9, 0xed, 0xa3, 0x39, 0xc7, 0x26, 0xc8, 0xe0, 0x34, 0x65, 0xfb, 0x27, 0x2c, 0x78, 0x4c, 0x47, + 0xd4, 0xfc, 0x6f, 0x7a, 0xe9, 0x08, 0xca, 0x30, 0xe2, 0xb7, 0x49, 0xe0, 0x44, 0x7e, 0x20, 0x6e, + 0x8d, 0xcb, 0x72, 0xd0, 0x6f, 0x89, 0xf2, 0x43, 0x11, 0x6e, 0x5d, 0x52, 0x97, 0xe5, 0x58, 0xd5, + 0xa4, 0xaf, 0x4f, 0x36, 0x18, 0xa1, 0xf0, 0xb4, 0x62, 0x67, 0x00, 0x53, 0x97, 0x87, 0x58, 0x40, + 0xec, 0xaf, 0x59, 0x7c, 0x61, 0xe9, 0x5d, 0x47, 0x6f, 0xc1, 0x54, 0xcb, 0x89, 0xea, 0x3b, 0x2b, + 0xf7, 0xdb, 0x01, 0xd7, 0xb8, 0xc8, 0x71, 0x7a, 0xa6, 0xd7, 0x38, 0x69, 0x1f, 0x19, 0x1b, 0x56, + 0xae, 0x25, 0x88, 0xe1, 0x14, 0x79, 0xb4, 0x09, 0xa3, 0xac, 0x8c, 0x39, 0x11, 0x86, 0xdd, 0x58, + 0x83, 0xbc, 0xd6, 0x94, 0xc5, 0xc1, 0x5a, 0x4c, 0x07, 0xeb, 0x44, 0xed, 0x9f, 0x2e, 0xf2, 0xdd, + 0xce, 0x58, 0xf9, 0xa7, 0x61, 0xb8, 0xed, 0x37, 0x96, 0x2b, 0x65, 0x2c, 0x66, 0x41, 0x5d, 0x23, + 0x55, 0x5e, 0x8c, 0x25, 0x1c, 0x5d, 0x86, 0x11, 0xf1, 0x53, 0x6a, 0xc8, 0xd8, 0xd9, 0x2c, 0xf0, + 0x42, 0xac, 0xa0, 0xe8, 0x79, 0x80, 0x76, 0xe0, 0xef, 0xb9, 0x0d, 0x16, 0xdc, 0xa2, 0x68, 0x1a, + 0x0b, 0x55, 0x15, 0x04, 0x6b, 0x58, 0xe8, 0x55, 0x18, 0xef, 0x78, 0x21, 0x67, 0x47, 0xb4, 0x50, + 0xb6, 0xca, 0x8c, 0xe5, 0xb6, 0x0e, 0xc4, 0x26, 0x2e, 0x5a, 0x84, 0xa1, 0xc8, 0x61, 0xc6, 0x2f, + 0x83, 0xf9, 0xc6, 0xb7, 0x1b, 0x14, 0x43, 0xcf, 0x4d, 0x42, 0x2b, 0x60, 0x51, 0x11, 0x7d, 0x4a, + 0xfa, 0xf3, 0xf2, 0x83, 0x5d, 0x58, 0xbd, 0xf7, 0x77, 0x09, 0x68, 0xde, 0xbc, 0xc2, 0x9a, 0xde, + 0xa0, 0x85, 0x5e, 0x01, 0x20, 0xf7, 0x23, 0x12, 0x78, 0x4e, 0x53, 0xd9, 0x96, 0x29, 0xbe, 0xa0, + 0xec, 0xaf, 0xfb, 0xd1, 0xed, 0x90, 0xac, 0x28, 0x0c, 0xac, 0x61, 0xdb, 0xbf, 0x51, 0x02, 0x88, + 0xf9, 0x76, 0xf4, 0x76, 0xea, 0xe0, 0x7a, 0xb6, 0x3b, 0xa7, 0x7f, 0x7c, 0xa7, 0x16, 0xfa, 0x1e, + 0x0b, 0x46, 0x9d, 0x66, 0xd3, 0xaf, 0x3b, 0x3c, 0xd8, 0x70, 0xa1, 0xfb, 0xc1, 0x29, 0xda, 0x5f, + 0x8c, 0x6b, 0xf0, 0x2e, 0xbc, 0x20, 0x57, 0xa8, 0x06, 0xe9, 0xd9, 0x0b, 0xbd, 0x61, 0xf4, 0x21, + 0xf9, 0x54, 0x2c, 0x1a, 0x43, 0xa9, 0x9e, 0x8a, 0x25, 0x76, 0x47, 0xe8, 0xaf, 0xc4, 0xdb, 0xc6, + 0x2b, 0x71, 0x20, 0xdf, 0x61, 0xd1, 0x60, 0x5f, 0x7b, 0x3d, 0x10, 0x51, 0x55, 0x0f, 0x5e, 0x30, + 0x98, 0xef, 0x1d, 0xa8, 0xbd, 0x93, 0x7a, 0x04, 0x2e, 0xf8, 0x1c, 0x4c, 0x36, 0x4c, 0x26, 0x40, + 0xac, 0xc4, 0xa7, 0xf2, 0xe8, 0x26, 0x78, 0x86, 0xf8, 0xda, 0x4f, 0x00, 0x70, 0x92, 0x30, 0xaa, + 0xf2, 0x58, 0x16, 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, 0x1e, 0x16, + 0xce, 0x8e, 0xe4, 0x4b, 0x9c, 0xcd, 0xe0, 0x6c, 0xf1, 0x86, 0x64, 0x7f, 0x43, 0x2c, 0x28, 0xa0, + 0xeb, 0xd2, 0xf9, 0x32, 0xac, 0x78, 0xb7, 0x43, 0xc2, 0x9c, 0x2f, 0x4b, 0x4b, 0xef, 0x8f, 0xfd, + 0x2a, 0x79, 0x79, 0x66, 0x06, 0x33, 0xa3, 0x26, 0xe5, 0xa2, 0xc4, 0x7f, 0x99, 0x18, 0x6d, 0x16, + 0xf2, 0xbb, 0x67, 0x26, 0x4f, 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, 0x06, 0x60, + 0xc2, 0x5c, 0x52, 0xe8, 0x0a, 0x94, 0x04, 0x11, 0x95, 0xcc, 0x40, 0xed, 0x92, 0x35, 0x09, 0xc0, + 0x31, 0x0e, 0xcb, 0x61, 0xc1, 0xaa, 0x6b, 0xc6, 0xba, 0x71, 0x0e, 0x0b, 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, 0xec, 0xb1, 0xba, 0x88, 0x6e, 0xe8, 0x40, 0x6c, 0xe2, + 0xd2, 0xeb, 0xd4, 0x0f, 0xd9, 0x42, 0x16, 0xcf, 0xb7, 0xd8, 0xf8, 0xb9, 0xc6, 0xfd, 0xbf, 0x25, + 0x1c, 0x7d, 0x12, 0x1e, 0x53, 0xa1, 0x9d, 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, 0xc0, 0xcd, 0x8c, 0xcb, 0x96, 0x14, 0x46, 0xd2, + 0x81, 0x9b, 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, 0x30, 0x04, 0x5d, 0x38, 0x4e, 0xdb, 0x95, 0xdf, 0x94, 0x30, + 0x63, 0x5e, 0xac, 0x56, 0xe4, 0xd7, 0x68, 0x58, 0x74, 0x75, 0xb2, 0x00, 0x12, 0x5a, 0x1e, 0x44, + 0xb5, 0x3a, 0x57, 0x25, 0x00, 0xc7, 0x38, 0xf6, 0xff, 0x28, 0xc0, 0x64, 0x86, 0x6e, 0x85, 0xe5, + 0xe2, 0x4b, 0x3c, 0x52, 0xe2, 0xd4, 0x7b, 0x66, 0x1c, 0xf0, 0xc2, 0x11, 0xe2, 0x80, 0x17, 0x7b, + 0xc5, 0x01, 0x1f, 0x78, 0x27, 0x71, 0xc0, 0xcd, 0x11, 0x1b, 0xec, 0x6b, 0xc4, 0x32, 0x62, 0x87, + 0x0f, 0x1d, 0x31, 0x76, 0xb8, 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, 0xa2, 0x1c, 0x3c, 0xa4, 0x0c, 0xd4, 0x70, 0x97, 0x55, 0x84, 0xb0, 0x49, 0xf7, 0x9b, + 0x49, 0xf6, 0xf9, 0x6f, 0x2c, 0x38, 0x9b, 0x39, 0x37, 0x27, 0x20, 0xeb, 0x5a, 0x37, 0x65, 0x5d, + 0x4f, 0xf7, 0xbd, 0x5a, 0x73, 0x84, 0x5f, 0xbf, 0x36, 0x90, 0xf3, 0x2d, 0xec, 0x25, 0x7f, 0x0b, + 0x46, 0x9d, 0x7a, 0x9d, 0x84, 0xe1, 0x9a, 0xdf, 0x50, 0xa1, 0x8e, 0x9f, 0x63, 0xef, 0xac, 0xb8, + 0xf8, 0xf0, 0x60, 0x7e, 0x2e, 0x49, 0x22, 0x06, 0x63, 0x9d, 0x02, 0xfa, 0x34, 0x8c, 0x84, 0xe2, + 0xde, 0x14, 0x73, 0xff, 0x42, 0x9f, 0x83, 0xe3, 0x6c, 0x92, 0xa6, 0x19, 0x8b, 0x49, 0x49, 0x2a, + 0x14, 0x49, 0x33, 0x6e, 0x4b, 0xe1, 0x58, 0xe3, 0xb6, 0x3c, 0x0f, 0xb0, 0xa7, 0x1e, 0x03, 0x49, + 0xf9, 0x83, 0xf6, 0x4c, 0xd0, 0xb0, 0xd0, 0xc7, 0x61, 0x2a, 0xe4, 0xc1, 0x0a, 0x97, 0x9b, 0x4e, + 0xc8, 0x9c, 0x65, 0xc4, 0x2a, 0x64, 0xf1, 0x9e, 0x6a, 0x09, 0x18, 0x4e, 0x61, 0xa3, 0x55, 0xd9, + 0x2a, 0x8b, 0xac, 0xc8, 0x17, 0xe6, 0xa5, 0xb8, 0x45, 0x91, 0x09, 0xf8, 0x54, 0x72, 0xf8, 0xd9, + 0xc0, 0x6b, 0x35, 0xd1, 0xa7, 0x01, 0xe8, 0xf2, 0x11, 0x72, 0x88, 0xe1, 0xfc, 0xc3, 0x93, 0x9e, + 0x2a, 0x8d, 0x4c, 0xdb, 0x5e, 0xe6, 0xe1, 0x5a, 0x56, 0x44, 0xb0, 0x46, 0xd0, 0xfe, 0xe1, 0x01, + 0x78, 0xbc, 0xcb, 0x19, 0x89, 0x16, 0x4d, 0x3d, 0xec, 0x33, 0xc9, 0xc7, 0xf5, 0x5c, 0x66, 0x65, + 0xe3, 0xb5, 0x9d, 0x58, 0x8a, 0x85, 0x77, 0xbc, 0x14, 0x7f, 0xc0, 0xd2, 0xc4, 0x1e, 0xdc, 0xe2, + 0xf3, 0x63, 0x47, 0x3c, 0xfb, 0x8f, 0x51, 0x0e, 0xb2, 0x95, 0x21, 0x4c, 0x78, 0xbe, 0xef, 0xee, + 0xf4, 0x2d, 0x5d, 0x38, 0x59, 0x29, 0xf1, 0x6f, 0x59, 0x70, 0xae, 0x6b, 0xd0, 0x8e, 0x6f, 0x40, + 0x86, 0xc1, 0xfe, 0x82, 0x05, 0x4f, 0x66, 0xd6, 0x30, 0xcc, 0x8c, 0xae, 0x40, 0xa9, 0x4e, 0x0b, + 0x35, 0x2f, 0xcd, 0xd8, 0x7d, 0x5d, 0x02, 0x70, 0x8c, 0x63, 0x58, 0x13, 0x15, 0x7a, 0x5a, 0x13, + 0xfd, 0x8a, 0x05, 0xa9, 0x4d, 0x7f, 0x02, 0xb7, 0x4f, 0xc5, 0xbc, 0x7d, 0xde, 0xdf, 0xcf, 0x68, + 0xe6, 0x5c, 0x3c, 0x7f, 0x3c, 0x09, 0x67, 0x72, 0xbc, 0x94, 0xf6, 0x60, 0x7a, 0xbb, 0x4e, 0x4c, + 0xff, 0xd7, 0x6e, 0x71, 0x61, 0xba, 0x3a, 0xcb, 0xb2, 0x5c, 0xa5, 0xd3, 0x29, 0x14, 0x9c, 0x6e, + 0x02, 0x7d, 0xc1, 0x82, 0x53, 0xce, 0xbd, 0x70, 0x85, 0x72, 0x11, 0x6e, 0x7d, 0xa9, 0xe9, 0xd7, + 0x77, 0xe9, 0x11, 0x2d, 0x37, 0xc2, 0x8b, 0x99, 0x92, 0x9d, 0xbb, 0xb5, 0x14, 0xbe, 0xd1, 0x3c, + 0x4b, 0xde, 0x9a, 0x85, 0x85, 0x33, 0xdb, 0x42, 0x58, 0x44, 0xf4, 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, 0xfc, 0xa7, 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, 0x2b, 0x53, 0x44, 0x82, 0xfb, 0x50, 0xa6, 0x00, 0xb2, 0x4b, 0x12, 0x51, + 0x21, 0x8f, 0x63, 0x18, 0x58, 0xd0, 0x62, 0x54, 0x49, 0x7b, 0x67, 0x2b, 0x14, 0xb9, 0x9d, 0xb3, + 0xa9, 0x76, 0xc9, 0x8d, 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, 0x40, 0xbe, 0x72, 0xe2, 0x17, + 0x41, 0xd3, 0x16, 0x8e, 0x16, 0x78, 0x81, 0x33, 0x1d, 0x71, 0x28, 0x00, 0xac, 0x51, 0xa4, 0xab, + 0xda, 0x91, 0x09, 0xf6, 0x45, 0xb0, 0x99, 0xcc, 0x55, 0xad, 0xb2, 0xf0, 0x77, 0x5b, 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, 0x88, 0x75, 0x96, + 0x39, 0xfc, 0x6f, 0x70, 0x94, 0xf4, 0xf0, 0x0b, 0x00, 0x96, 0x44, 0xd0, 0x1d, 0x31, 0x3c, 0xec, + 0xf4, 0x9c, 0xca, 0x0f, 0x48, 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, 0x58, 0x62, 0x60, 0x8a, 0x16, 0x59, 0x18, 0x41, 0x13, 0x82, 0x13, 0x34, + 0xd1, 0x27, 0x60, 0x38, 0xac, 0x3b, 0x4d, 0x52, 0xb9, 0x35, 0x3b, 0x93, 0x7f, 0xfd, 0xd4, 0x38, + 0x4a, 0xce, 0xea, 0xe2, 0xd1, 0xf4, 0x39, 0x0a, 0x96, 0xe4, 0xd0, 0x2a, 0x0c, 0xb2, 0x04, 0x68, + 0x2c, 0x30, 0x5f, 0x4e, 0x5c, 0xd5, 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, 0x7b, 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, 0x05, 0x71, 0xcc, 0x86, + 0xe3, 0x9c, 0x96, 0x92, 0xcf, 0x9c, 0xe2, 0x3b, 0x7e, 0xe6, 0xac, 0xc1, 0x08, 0x63, 0x32, 0x7b, + 0xe4, 0x8e, 0x4e, 0xbe, 0xf6, 0x18, 0x2b, 0xb1, 0x2c, 0x2a, 0x62, 0x45, 0x02, 0xfd, 0xa0, 0x05, + 0xe7, 0x92, 0x5d, 0xc7, 0x84, 0x81, 0x45, 0xe4, 0x47, 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, 0x6a, 0xab, 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, 0x49, 0x69, + 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, 0x37, 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, 0x1e, 0xc6, 0x06, 0x3b, 0x37, 0xb5, 0x82, 0x46, 0x99, 0x59, 0x8f, + 0x49, 0xf7, 0xd3, 0x6f, 0x30, 0x53, 0xec, 0xbb, 0xc4, 0xdd, 0xde, 0x89, 0x48, 0x23, 0xf9, 0x39, + 0x27, 0x67, 0x8a, 0xfd, 0x7b, 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, 0x8a, 0x7c, 0x88, 0xbd, 0xc8, 0x7d, 0x6f, 0x37, 0xbc, 0xbb, + 0x77, 0xc3, 0x57, 0x2d, 0x98, 0xa2, 0xad, 0x33, 0xeb, 0x1b, 0x79, 0xcd, 0xab, 0x38, 0xd1, 0x56, + 0x97, 0x38, 0xd1, 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, + 0x46, 0x7a, 0x20, 0x3b, 0x8c, 0x34, 0x0f, 0x8e, 0x29, 0xec, 0x34, 0x04, 0xc3, 0xa5, 0x05, 0xc7, + 0x94, 0x06, 0x1c, 0x31, 0x8e, 0xfd, 0xb3, 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, 0xd2, 0x23, 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, 0x2a, 0x42, + 0x2b, 0xc7, 0x06, 0x16, 0xba, 0x0b, 0x25, 0xf6, 0x9f, 0x1d, 0x3b, 0x47, 0x4f, 0x3a, 0x2a, 0x92, + 0xd0, 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, 0x73, 0xc1, 0x89, 0x42, 0x1c, 0xc3, 0x29, 0x2b, 0xc6, 0x22, + 0x33, 0xf0, 0x94, 0xc5, 0x23, 0x0c, 0x9b, 0xb1, 0x62, 0x37, 0x55, 0x29, 0xd6, 0x30, 0xd0, 0x0e, + 0x3c, 0xe1, 0x7a, 0x2c, 0xad, 0x02, 0xa9, 0xed, 0xba, 0xed, 0x8d, 0x9b, 0xb5, 0x3b, 0x24, 0x70, + 0xb7, 0xf6, 0x97, 0x9c, 0xfa, 0x2e, 0xf1, 0x64, 0x3a, 0xc9, 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, 0x72, 0x8c, 0x5c, + 0x73, 0x22, 0x82, 0x6e, 0xb1, 0xdc, 0xc9, 0xf1, 0x8d, 0x28, 0xaa, 0x3f, 0xad, 0xe5, 0x4e, 0x8e, + 0x81, 0x99, 0x57, 0xa8, 0x59, 0xdf, 0xfe, 0xef, 0x83, 0xec, 0x70, 0x4c, 0xe4, 0xa9, 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, 0x0b, 0x36, + 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, 0xbc, 0xab, 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, 0x54, 0x44, 0x35, + 0x86, 0xa2, 0x65, 0xc2, 0xe3, 0x55, 0xb0, 0xac, 0x8b, 0xea, 0x30, 0x23, 0x28, 0x2e, 0xef, 0x38, + 0x9e, 0x4a, 0xec, 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, 0xe2, 0xe7, 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, 0xcb, 0xa8, 0x72, 0x2a, 0x3f, + 0x28, 0x42, 0x9c, 0x48, 0x45, 0xcb, 0xea, 0xa1, 0x57, 0xc6, 0x09, 0x62, 0xe8, 0x0d, 0x66, 0x16, + 0x62, 0x26, 0x6b, 0xe9, 0x41, 0x5a, 0xb7, 0x00, 0x91, 0x64, 0x35, 0x22, 0x79, 0x89, 0x60, 0xec, + 0x47, 0x9b, 0x08, 0x06, 0xdd, 0x84, 0x71, 0x91, 0xfd, 0x58, 0xac, 0xdc, 0xa2, 0x21, 0x07, 0x1c, + 0xc7, 0x3a, 0xf0, 0x30, 0x59, 0x80, 0xcd, 0xca, 0x68, 0x1b, 0xce, 0x69, 0xd9, 0x88, 0xae, 0x05, + 0x0e, 0x53, 0xe6, 0xbb, 0xec, 0x38, 0xd5, 0xee, 0xea, 0x27, 0x1f, 0x1c, 0xcc, 0x9f, 0xdb, 0xe8, + 0x86, 0x88, 0xbb, 0xd3, 0x41, 0xb7, 0xe0, 0x34, 0x77, 0xe9, 0x2d, 0x13, 0xa7, 0xd1, 0x74, 0x3d, + 0xc5, 0x0c, 0xf0, 0x2d, 0x7f, 0xf6, 0xc1, 0xc1, 0xfc, 0xe9, 0xc5, 0x2c, 0x04, 0x9c, 0x5d, 0x0f, + 0x7d, 0x14, 0x4a, 0x0d, 0x2f, 0x14, 0x63, 0x30, 0x64, 0x24, 0x7c, 0x2a, 0x95, 0xd7, 0x6b, 0xea, + 0xfb, 0xe3, 0x3f, 0x38, 0xae, 0x80, 0xb6, 0xb9, 0xac, 0x58, 0x49, 0x30, 0x86, 0x53, 0x21, 0x8d, + 0x92, 0x42, 0x3e, 0xc3, 0xa9, 0x8f, 0x2b, 0x49, 0x94, 0xad, 0xbb, 0xe1, 0xef, 0x67, 0x10, 0x46, + 0xaf, 0x03, 0xa2, 0x2f, 0x08, 0xb7, 0x4e, 0x16, 0xeb, 0x2c, 0x2d, 0x04, 0x13, 0xad, 0x8f, 0x98, + 0x6e, 0x66, 0xb5, 0x14, 0x06, 0xce, 0xa8, 0x85, 0xae, 0xd3, 0x53, 0x45, 0x2f, 0x15, 0xa7, 0x96, + 0x4a, 0xcf, 0x57, 0x26, 0xed, 0x80, 0xd4, 0x9d, 0x88, 0x34, 0x4c, 0x8a, 0x38, 0x51, 0x0f, 0x35, + 0xe0, 0x09, 0xa7, 0x13, 0xf9, 0x4c, 0x0c, 0x6f, 0xa2, 0x6e, 0xf8, 0xbb, 0xc4, 0x63, 0x1a, 0xb0, + 0x91, 0xa5, 0x0b, 0x94, 0xdb, 0x58, 0xec, 0x82, 0x87, 0xbb, 0x52, 0xa1, 0x5c, 0xa2, 0xca, 0xc7, + 0x0b, 0x66, 0xa0, 0xa6, 0x8c, 0x9c, 0xbc, 0x2f, 0xc1, 0xe8, 0x8e, 0x1f, 0x46, 0xeb, 0x24, 0xba, + 0xe7, 0x07, 0xbb, 0x22, 0xde, 0x66, 0x1c, 0xa3, 0x39, 0x06, 0x61, 0x1d, 0x8f, 0x3e, 0x03, 0x99, + 0x7d, 0x46, 0xa5, 0xcc, 0x54, 0xe3, 0x23, 0xf1, 0x19, 0x73, 0x9d, 0x17, 0x63, 0x09, 0x97, 0xa8, + 0x95, 0xea, 0x32, 0x53, 0x73, 0x27, 0x50, 0x2b, 0xd5, 0x65, 0x2c, 0xe1, 0x74, 0xb9, 0x86, 0x3b, + 0x4e, 0x40, 0xaa, 0x81, 0x5f, 0x27, 0xa1, 0x16, 0x19, 0xfc, 0x71, 0x1e, 0x4d, 0x94, 0x2e, 0xd7, + 0x5a, 0x16, 0x02, 0xce, 0xae, 0x87, 0x48, 0x3a, 0x13, 0xd7, 0x44, 0xbe, 0x7e, 0x22, 0xcd, 0xcf, + 0xf4, 0x99, 0x8c, 0xcb, 0x83, 0x29, 0x95, 0x03, 0x8c, 0xc7, 0x0f, 0x0d, 0x67, 0x27, 0xd9, 0xda, + 0xee, 0x3f, 0xf8, 0xa8, 0xd2, 0xf8, 0x54, 0x12, 0x94, 0x70, 0x8a, 0xb6, 0x11, 0x8b, 0x6b, 0xaa, + 0x67, 0x2c, 0xae, 0x2b, 0x50, 0x0a, 0x3b, 0x9b, 0x0d, 0xbf, 0xe5, 0xb8, 0x1e, 0x53, 0x73, 0x6b, + 0xef, 0x91, 0x9a, 0x04, 0xe0, 0x18, 0x07, 0xad, 0xc2, 0x88, 0x23, 0xd5, 0x39, 0x28, 0x3f, 0xfa, + 0x8a, 0x52, 0xe2, 0xf0, 0x80, 0x04, 0x52, 0x81, 0xa3, 0xea, 0xa2, 0x57, 0x61, 0x5c, 0xb8, 0xa4, + 0x8a, 0xf4, 0x93, 0x33, 0xa6, 0xdf, 0x50, 0x4d, 0x07, 0x62, 0x13, 0x17, 0xdd, 0x86, 0xd1, 0xc8, + 0x6f, 0x32, 0xe7, 0x17, 0xca, 0xe6, 0x9d, 0xc9, 0x8f, 0x23, 0xb6, 0xa1, 0xd0, 0x74, 0x49, 0xaa, + 0xaa, 0x8a, 0x75, 0x3a, 0x68, 0x83, 0xaf, 0x77, 0x16, 0x21, 0x9b, 0x84, 0xb3, 0x8f, 0xe5, 0xdf, + 0x49, 0x2a, 0x90, 0xb6, 0xb9, 0x1d, 0x44, 0x4d, 0xac, 0x93, 0x41, 0xd7, 0x60, 0xba, 0x1d, 0xb8, + 0x3e, 0x5b, 0x13, 0x4a, 0x93, 0x37, 0x6b, 0xa6, 0xe7, 0xa9, 0x26, 0x11, 0x70, 0xba, 0x0e, 0xf3, + 0x28, 0x16, 0x85, 0xb3, 0x67, 0x79, 0x86, 0x6a, 0xfe, 0xbc, 0xe3, 0x65, 0x58, 0x41, 0xd1, 0x1a, + 0x3b, 0x89, 0xb9, 0x64, 0x62, 0x76, 0x2e, 0x3f, 0xe0, 0x8b, 0x2e, 0xc1, 0xe0, 0xcc, 0xab, 0xfa, + 0x8b, 0x63, 0x0a, 0xa8, 0xa1, 0xa5, 0x32, 0xa4, 0x2f, 0x86, 0x70, 0xf6, 0x89, 0x2e, 0x46, 0x72, + 0x89, 0xe7, 0x45, 0xcc, 0x10, 0x18, 0xc5, 0x21, 0x4e, 0xd0, 0x44, 0x1f, 0x87, 0x29, 0x11, 0xa6, + 0x2e, 0x1e, 0xa6, 0x73, 0xb1, 0x49, 0x31, 0x4e, 0xc0, 0x70, 0x0a, 0x9b, 0x67, 0x0e, 0x70, 0x36, + 0x9b, 0x44, 0x1c, 0x7d, 0x37, 0x5d, 0x6f, 0x37, 0x9c, 0x3d, 0xcf, 0xce, 0x07, 0x91, 0x39, 0x20, + 0x09, 0xc5, 0x19, 0x35, 0xd0, 0x06, 0x4c, 0xb5, 0x03, 0x42, 0x5a, 0x8c, 0xd1, 0x17, 0xf7, 0xd9, + 0x3c, 0x77, 0xa8, 0xa7, 0x3d, 0xa9, 0x26, 0x60, 0x87, 0x19, 0x65, 0x38, 0x45, 0x01, 0xdd, 0x83, + 0x11, 0x7f, 0x8f, 0x04, 0x3b, 0xc4, 0x69, 0xcc, 0x5e, 0xe8, 0x62, 0xe2, 0x2e, 0x2e, 0xb7, 0x5b, + 0x02, 0x37, 0xa1, 0xfd, 0x97, 0xc5, 0xbd, 0xb5, 0xff, 0xb2, 0x31, 0xf4, 0x43, 0x16, 0x9c, 0x95, + 0x0a, 0x83, 0x5a, 0x9b, 0x8e, 0xfa, 0xb2, 0xef, 0x85, 0x51, 0xc0, 0x5d, 0xc0, 0x9f, 0xcc, 0x77, + 0x8b, 0xde, 0xc8, 0xa9, 0xa4, 0x84, 0xa3, 0x67, 0xf3, 0x30, 0x42, 0x9c, 0xdf, 0x22, 0x5a, 0x86, + 0xe9, 0x90, 0x44, 0xf2, 0x30, 0x5a, 0x0c, 0x57, 0xdf, 0x28, 0xaf, 0xcf, 0x5e, 0xe4, 0xfe, 0xeb, + 0x74, 0x33, 0xd4, 0x92, 0x40, 0x9c, 0xc6, 0x9f, 0xfb, 0x56, 0x98, 0x4e, 0x5d, 0xff, 0x47, 0xc9, + 0x88, 0x32, 0xb7, 0x0b, 0xe3, 0xc6, 0x10, 0x3f, 0x52, 0xed, 0xf1, 0xbf, 0x1a, 0x86, 0x92, 0xd2, + 0x2c, 0xa2, 0x2b, 0xa6, 0xc2, 0xf8, 0x6c, 0x52, 0x61, 0x3c, 0x42, 0xdf, 0xf5, 0xba, 0x8e, 0x78, + 0x23, 0x23, 0x6a, 0x57, 0xde, 0x86, 0xee, 0xdf, 0x1d, 0x5b, 0x13, 0xd7, 0x16, 0xfb, 0xd6, 0x3c, + 0x0f, 0x74, 0x95, 0x00, 0x5f, 0x83, 0x69, 0xcf, 0x67, 0x3c, 0x27, 0x69, 0x48, 0x86, 0x82, 0xf1, + 0x0d, 0x25, 0x3d, 0x0c, 0x46, 0x02, 0x01, 0xa7, 0xeb, 0xd0, 0x06, 0xf9, 0xc5, 0x9f, 0x14, 0x39, + 0x73, 0xbe, 0x00, 0x0b, 0x28, 0xba, 0x08, 0x83, 0x6d, 0xbf, 0x51, 0xa9, 0x0a, 0x7e, 0x53, 0x8b, + 0x15, 0xd9, 0xa8, 0x54, 0x31, 0x87, 0xa1, 0x45, 0x18, 0x62, 0x3f, 0xc2, 0xd9, 0xb1, 0xfc, 0x78, + 0x07, 0xac, 0x86, 0x96, 0x6f, 0x86, 0x55, 0xc0, 0xa2, 0x22, 0x13, 0x7d, 0x51, 0x26, 0x9d, 0x89, + 0xbe, 0x86, 0x1f, 0x52, 0xf4, 0x25, 0x09, 0xe0, 0x98, 0x16, 0xba, 0x0f, 0xa7, 0x8d, 0x87, 0x11, + 0x5f, 0x22, 0x24, 0x14, 0x3e, 0xd7, 0x17, 0xbb, 0xbe, 0x88, 0x84, 0xa6, 0xfa, 0x9c, 0xe8, 0xf4, + 0xe9, 0x4a, 0x16, 0x25, 0x9c, 0xdd, 0x00, 0x6a, 0xc2, 0x74, 0x3d, 0xd5, 0xea, 0x48, 0xff, 0xad, + 0xaa, 0x09, 0x4d, 0xb7, 0x98, 0x26, 0x8c, 0x5e, 0x85, 0x91, 0xb7, 0xfc, 0x90, 0x9d, 0xd5, 0x82, + 0x47, 0x96, 0x0e, 0xbb, 0x23, 0x6f, 0xdc, 0xaa, 0xb1, 0xf2, 0xc3, 0x83, 0xf9, 0xd1, 0xaa, 0xdf, + 0x90, 0x7f, 0xb1, 0xaa, 0x80, 0xbe, 0xd7, 0x82, 0xb9, 0xf4, 0xcb, 0x4b, 0x75, 0x7a, 0xbc, 0xff, + 0x4e, 0xdb, 0xa2, 0xd1, 0xb9, 0x95, 0x5c, 0x72, 0xb8, 0x4b, 0x53, 0xf6, 0x2f, 0x59, 0x4c, 0xea, + 0x26, 0x34, 0x40, 0x24, 0xec, 0x34, 0x4f, 0x22, 0xcd, 0xe6, 0x8a, 0xa1, 0x9c, 0x7a, 0x68, 0xcb, + 0x85, 0x7f, 0x6e, 0x31, 0xcb, 0x85, 0x13, 0x74, 0x51, 0x78, 0x03, 0x46, 0x22, 0x99, 0xfe, 0xb4, + 0x4b, 0x66, 0x50, 0xad, 0x53, 0xcc, 0x7a, 0x43, 0x71, 0xac, 0x2a, 0xd3, 0xa9, 0x22, 0x63, 0xff, + 0x23, 0x3e, 0x03, 0x12, 0x72, 0x02, 0x3a, 0x80, 0xb2, 0xa9, 0x03, 0x98, 0xef, 0xf1, 0x05, 0x39, + 0xba, 0x80, 0x7f, 0x68, 0xf6, 0x9b, 0x49, 0x6a, 0xde, 0xed, 0x26, 0x33, 0xf6, 0x17, 0x2d, 0x80, + 0x38, 0x14, 0x2f, 0x93, 0x2f, 0xfb, 0x81, 0xcc, 0xb1, 0x98, 0x95, 0x4d, 0xe8, 0x65, 0xca, 0xa3, + 0xfa, 0x91, 0x5f, 0xf7, 0x9b, 0x42, 0xc3, 0xf5, 0x44, 0xac, 0x86, 0xe0, 0xe5, 0x87, 0xda, 0x6f, + 0xac, 0xb0, 0xd1, 0xbc, 0x0c, 0xfc, 0x55, 0x8c, 0x15, 0x63, 0x46, 0xd0, 0xaf, 0x1f, 0xb1, 0xe0, + 0x54, 0x96, 0xbd, 0x2b, 0x7d, 0xf1, 0x70, 0x99, 0x95, 0x32, 0x67, 0x52, 0xb3, 0x79, 0x47, 0x94, + 0x63, 0x85, 0xd1, 0x77, 0xe6, 0xb0, 0xa3, 0xc5, 0xc0, 0xbd, 0x05, 0xe3, 0xd5, 0x80, 0x68, 0x97, + 0xeb, 0x6b, 0xdc, 0x99, 0x9c, 0xf7, 0xe7, 0xd9, 0x23, 0x3b, 0x92, 0xdb, 0x3f, 0x5d, 0x80, 0x53, + 0xdc, 0x2a, 0x60, 0x71, 0xcf, 0x77, 0x1b, 0x55, 0xbf, 0x21, 0xb2, 0xbe, 0x7d, 0x0a, 0xc6, 0xda, + 0x9a, 0xa0, 0xb1, 0x5b, 0x3c, 0x47, 0x5d, 0x20, 0x19, 0x8b, 0x46, 0xf4, 0x52, 0x6c, 0xd0, 0x42, + 0x0d, 0x18, 0x23, 0x7b, 0x6e, 0x5d, 0xa9, 0x96, 0x0b, 0x47, 0xbe, 0xe8, 0x54, 0x2b, 0x2b, 0x1a, + 0x1d, 0x6c, 0x50, 0x7d, 0x04, 0xf9, 0x7c, 0xed, 0x1f, 0xb5, 0xe0, 0xb1, 0x9c, 0xe8, 0x8f, 0xb4, + 0xb9, 0x7b, 0xcc, 0xfe, 0x42, 0x2c, 0x5b, 0xd5, 0x1c, 0xb7, 0xca, 0xc0, 0x02, 0x8a, 0x3e, 0x01, + 0xc0, 0xad, 0x2a, 0xe8, 0x93, 0xbb, 0x57, 0x98, 0x3c, 0x23, 0xc2, 0x97, 0x16, 0xac, 0x49, 0xd6, + 0xc7, 0x1a, 0x2d, 0xfb, 0x4b, 0x03, 0x30, 0xc8, 0x93, 0xad, 0xaf, 0xc2, 0xf0, 0x0e, 0xcf, 0x85, + 0xd1, 0x4f, 0xda, 0x8d, 0x58, 0x18, 0xc2, 0x0b, 0xb0, 0xac, 0x8c, 0xd6, 0x60, 0x86, 0xe7, 0x12, + 0x69, 0x96, 0x49, 0xd3, 0xd9, 0x97, 0x92, 0x3b, 0x9e, 0x87, 0x53, 0x49, 0x30, 0x2b, 0x69, 0x14, + 0x9c, 0x55, 0x0f, 0xbd, 0x06, 0x13, 0xf4, 0x25, 0xe5, 0x77, 0x22, 0x49, 0x89, 0x67, 0x11, 0x51, + 0x4f, 0xb7, 0x0d, 0x03, 0x8a, 0x13, 0xd8, 0xf4, 0x31, 0xdf, 0x4e, 0xc9, 0x28, 0x07, 0xe3, 0xc7, + 0xbc, 0x29, 0x97, 0x34, 0x71, 0x99, 0xa1, 0x6b, 0x87, 0x99, 0xf5, 0x6e, 0xec, 0x04, 0x24, 0xdc, + 0xf1, 0x9b, 0x0d, 0xc6, 0xf4, 0x0d, 0x6a, 0x86, 0xae, 0x09, 0x38, 0x4e, 0xd5, 0xa0, 0x54, 0xb6, + 0x1c, 0xb7, 0xd9, 0x09, 0x48, 0x4c, 0x65, 0xc8, 0xa4, 0xb2, 0x9a, 0x80, 0xe3, 0x54, 0x8d, 0xde, + 0xc2, 0xd7, 0xe1, 0xe3, 0x11, 0xbe, 0xd2, 0x05, 0x7b, 0xba, 0x1a, 0xf8, 0xf4, 0xc4, 0x96, 0xb1, + 0x73, 0x94, 0x99, 0xf4, 0xb0, 0x74, 0xf3, 0xed, 0x12, 0x65, 0x4e, 0x18, 0x92, 0x72, 0x0a, 0x86, + 0xa5, 0x42, 0x4d, 0x38, 0xf8, 0x4a, 0x2a, 0xe8, 0x2a, 0x8c, 0x8a, 0x54, 0x14, 0xcc, 0x9a, 0x97, + 0xaf, 0x11, 0x66, 0x59, 0x51, 0x8e, 0x8b, 0xb1, 0x8e, 0x63, 0x7f, 0x5f, 0x01, 0x66, 0x32, 0xdc, + 0x31, 0xf8, 0x99, 0xb8, 0xed, 0x86, 0x91, 0x4a, 0x6a, 0xa8, 0x9d, 0x89, 0xbc, 0x1c, 0x2b, 0x0c, + 0xba, 0xf1, 0xf8, 0xa9, 0x9b, 0x3c, 0x69, 0x85, 0xb9, 0xb3, 0x80, 0x1e, 0x31, 0x3d, 0xe0, 0x05, + 0x18, 0xe8, 0x84, 0x44, 0xc6, 0x87, 0x54, 0x77, 0x10, 0x53, 0xb8, 0x31, 0x08, 0x7d, 0x13, 0x6c, + 0x2b, 0xdd, 0x95, 0xf6, 0x26, 0xe0, 0xda, 0x2b, 0x0e, 0xa3, 0x9d, 0x8b, 0x88, 0xe7, 0x78, 0x91, + 0x78, 0x39, 0xc4, 0x81, 0xce, 0x58, 0x29, 0x16, 0x50, 0xfb, 0x4b, 0x45, 0x38, 0x9b, 0xeb, 0xa0, + 0x45, 0xbb, 0xde, 0xf2, 0x3d, 0x37, 0xf2, 0x95, 0xc9, 0x0a, 0x0f, 0x6e, 0x46, 0xda, 0x3b, 0x6b, + 0xa2, 0x1c, 0x2b, 0x0c, 0x74, 0x09, 0x06, 0x99, 0xb8, 0x2e, 0x95, 0xde, 0x71, 0xa9, 0xcc, 0xa3, + 0xdd, 0x70, 0x70, 0xdf, 0xa9, 0x73, 0x2f, 0xd2, 0xeb, 0xd8, 0x6f, 0x26, 0x4f, 0x47, 0xda, 0x5d, + 0xdf, 0x6f, 0x62, 0x06, 0x44, 0x1f, 0x10, 0xe3, 0x95, 0xb0, 0xd1, 0xc0, 0x4e, 0xc3, 0x0f, 0xb5, + 0x41, 0x7b, 0x1a, 0x86, 0x77, 0xc9, 0x7e, 0xe0, 0x7a, 0xdb, 0x49, 0xdb, 0x9d, 0x1b, 0xbc, 0x18, + 0x4b, 0xb8, 0x99, 0xa9, 0x6b, 0xf8, 0xb8, 0x73, 0xde, 0x8e, 0xf4, 0xbc, 0x6b, 0x7f, 0xa0, 0x08, + 0x93, 0x78, 0xa9, 0xfc, 0xde, 0x44, 0xdc, 0x4e, 0x4f, 0xc4, 0x71, 0xe7, 0xbc, 0xed, 0x3d, 0x1b, + 0x3f, 0x6f, 0xc1, 0x24, 0x4b, 0x88, 0x21, 0xc2, 0x62, 0xb9, 0xbe, 0x77, 0x02, 0x7c, 0xed, 0x45, + 0x18, 0x0c, 0x68, 0xa3, 0xc9, 0xbc, 0x8e, 0xac, 0x27, 0x98, 0xc3, 0xd0, 0x13, 0x30, 0xc0, 0xba, + 0x40, 0x27, 0x6f, 0x8c, 0xa7, 0xc4, 0x2a, 0x3b, 0x91, 0x83, 0x59, 0x29, 0x8b, 0xf5, 0x82, 0x49, + 0xbb, 0xe9, 0xf2, 0x4e, 0xc7, 0xca, 0xd4, 0x77, 0x87, 0xeb, 0x76, 0x66, 0xd7, 0xde, 0x59, 0xac, + 0x97, 0x6c, 0x92, 0xdd, 0xdf, 0x8c, 0x7f, 0x54, 0x80, 0xf3, 0x99, 0xf5, 0xfa, 0x8e, 0xf5, 0xd2, + 0xbd, 0xf6, 0xa3, 0x4c, 0x79, 0x50, 0x3c, 0x41, 0xcb, 0xc8, 0x81, 0x7e, 0x59, 0xd9, 0xc1, 0x3e, + 0x42, 0xb0, 0x64, 0x0e, 0xd9, 0xbb, 0x24, 0x04, 0x4b, 0x66, 0xdf, 0x72, 0xde, 0xbc, 0x7f, 0x51, + 0xc8, 0xf9, 0x16, 0xf6, 0xfa, 0xbd, 0x4c, 0xcf, 0x19, 0x06, 0x0c, 0xe5, 0x8b, 0x92, 0x9f, 0x31, + 0xbc, 0x0c, 0x2b, 0x28, 0x5a, 0x84, 0xc9, 0x96, 0xeb, 0xd1, 0xc3, 0x67, 0xdf, 0xe4, 0x30, 0x55, + 0x84, 0xac, 0x35, 0x13, 0x8c, 0x93, 0xf8, 0xc8, 0xd5, 0xc2, 0xb3, 0x14, 0xf2, 0x33, 0xa5, 0xe7, + 0xf6, 0x76, 0xc1, 0x54, 0x34, 0xab, 0x51, 0xcc, 0x08, 0xd5, 0xb2, 0xa6, 0x09, 0x3d, 0x8a, 0xfd, + 0x0b, 0x3d, 0xc6, 0xb2, 0x05, 0x1e, 0x73, 0xaf, 0xc2, 0xf8, 0x43, 0x4b, 0xb9, 0xed, 0xaf, 0x16, + 0xe1, 0xf1, 0x2e, 0xdb, 0x9e, 0x9f, 0xf5, 0xc6, 0x1c, 0x68, 0x67, 0x7d, 0x6a, 0x1e, 0xaa, 0x70, + 0x6a, 0xab, 0xd3, 0x6c, 0xee, 0x33, 0x87, 0x01, 0xd2, 0x90, 0x18, 0x82, 0xa7, 0x94, 0x2f, 0xfd, + 0x53, 0xab, 0x19, 0x38, 0x38, 0xb3, 0x26, 0x7d, 0x39, 0xd0, 0x9b, 0x64, 0x5f, 0x91, 0x4a, 0xbc, + 0x1c, 0xb0, 0x0e, 0xc4, 0x26, 0x2e, 0xba, 0x06, 0xd3, 0xce, 0x9e, 0xe3, 0xf2, 0x18, 0xb7, 0x92, + 0x00, 0x7f, 0x3a, 0x28, 0xe1, 0xe4, 0x62, 0x12, 0x01, 0xa7, 0xeb, 0xa0, 0xd7, 0x01, 0xf9, 0x9b, + 0xcc, 0xac, 0xb8, 0x71, 0x8d, 0x78, 0x42, 0x1f, 0xc8, 0xe6, 0xae, 0x18, 0x1f, 0x09, 0xb7, 0x52, + 0x18, 0x38, 0xa3, 0x56, 0x22, 0xdc, 0xc9, 0x50, 0x7e, 0xb8, 0x93, 0xee, 0xe7, 0x62, 0xcf, 0x6c, + 0x1b, 0xff, 0xc9, 0xa2, 0xd7, 0x17, 0x67, 0xf2, 0xcd, 0xa8, 0x7d, 0xaf, 0x32, 0x7b, 0x3e, 0x2e, + 0xb8, 0xd4, 0x82, 0x74, 0x9c, 0xd6, 0xec, 0xf9, 0x62, 0x20, 0x36, 0x71, 0xf9, 0x82, 0x08, 0x63, + 0xdf, 0x50, 0x83, 0xc5, 0x17, 0xa1, 0x85, 0x14, 0x06, 0xfa, 0x24, 0x0c, 0x37, 0xdc, 0x3d, 0x37, + 0x14, 0x62, 0x9b, 0x23, 0xeb, 0x48, 0xe2, 0x73, 0xb0, 0xcc, 0xc9, 0x60, 0x49, 0xcf, 0xfe, 0x81, + 0x02, 0x8c, 0xcb, 0x16, 0xdf, 0xe8, 0xf8, 0x91, 0x73, 0x02, 0xd7, 0xf2, 0x35, 0xe3, 0x5a, 0xfe, + 0x40, 0xb7, 0xf8, 0x4a, 0xac, 0x4b, 0xb9, 0xd7, 0xf1, 0xad, 0xc4, 0x75, 0xfc, 0x54, 0x6f, 0x52, + 0xdd, 0xaf, 0xe1, 0x7f, 0x6c, 0xc1, 0xb4, 0x81, 0x7f, 0x02, 0xb7, 0xc1, 0xaa, 0x79, 0x1b, 0x3c, + 0xd9, 0xf3, 0x1b, 0x72, 0x6e, 0x81, 0xef, 0x2e, 0x26, 0xfa, 0xce, 0x4e, 0xff, 0xb7, 0x60, 0x60, + 0xc7, 0x09, 0x1a, 0xdd, 0xe2, 0xc9, 0xa7, 0x2a, 0x2d, 0x5c, 0x77, 0x02, 0xa1, 0x10, 0x7d, 0x56, + 0x25, 0x2a, 0x77, 0x82, 0xde, 0xca, 0x50, 0xd6, 0x14, 0x7a, 0x19, 0x86, 0xc2, 0xba, 0xdf, 0x56, + 0xee, 0x02, 0x17, 0x78, 0x12, 0x73, 0x5a, 0x72, 0x78, 0x30, 0x8f, 0xcc, 0xe6, 0x68, 0x31, 0x16, + 0xf8, 0xe8, 0x53, 0x30, 0xce, 0x7e, 0x29, 0xeb, 0xa4, 0x62, 0x7e, 0xee, 0xa9, 0x9a, 0x8e, 0xc8, + 0x4d, 0xf7, 0x8c, 0x22, 0x6c, 0x92, 0x9a, 0xdb, 0x86, 0x92, 0xfa, 0xac, 0x47, 0xaa, 0x84, 0xfc, + 0xf7, 0x45, 0x98, 0xc9, 0x58, 0x73, 0x28, 0x34, 0x66, 0xe2, 0x6a, 0x9f, 0x4b, 0xf5, 0x1d, 0xce, + 0x45, 0xc8, 0x5e, 0x43, 0x0d, 0xb1, 0xb6, 0xfa, 0x6e, 0xf4, 0x76, 0x48, 0x92, 0x8d, 0xd2, 0xa2, + 0xde, 0x8d, 0xd2, 0xc6, 0x4e, 0x6c, 0xa8, 0x69, 0x43, 0xaa, 0xa7, 0x8f, 0x74, 0x4e, 0xff, 0xb4, + 0x08, 0xa7, 0xb2, 0x42, 0xbe, 0xa1, 0xcf, 0x27, 0xb2, 0x19, 0xbe, 0xd8, 0x6f, 0xb0, 0x38, 0x9e, + 0xe2, 0x90, 0x0b, 0x9b, 0x97, 0x16, 0xcc, 0xfc, 0x86, 0x3d, 0x87, 0x59, 0xb4, 0xc9, 0xe2, 0x1e, + 0x04, 0x3c, 0x0b, 0xa5, 0x3c, 0x3e, 0x3e, 0xdc, 0x77, 0x07, 0x44, 0xfa, 0xca, 0x30, 0x61, 0xf9, + 0x20, 0x8b, 0x7b, 0x5b, 0x3e, 0xc8, 0x96, 0xe7, 0x5c, 0x18, 0xd5, 0xbe, 0xe6, 0x91, 0xce, 0xf8, + 0x2e, 0xbd, 0xad, 0xb4, 0x7e, 0x3f, 0xd2, 0x59, 0xff, 0x51, 0x0b, 0x12, 0xc6, 0xf0, 0x4a, 0x2c, + 0x66, 0xe5, 0x8a, 0xc5, 0x2e, 0xc0, 0x40, 0xe0, 0x37, 0x49, 0x32, 0xed, 0x1f, 0xf6, 0x9b, 0x04, + 0x33, 0x08, 0xc5, 0x88, 0x62, 0x61, 0xc7, 0x98, 0xfe, 0x90, 0x13, 0x4f, 0xb4, 0x8b, 0x30, 0xd8, + 0x24, 0x7b, 0xa4, 0x99, 0xcc, 0xce, 0x72, 0x93, 0x16, 0x62, 0x0e, 0xb3, 0x7f, 0x7e, 0x00, 0xce, + 0x75, 0x8d, 0x1c, 0x42, 0x9f, 0x43, 0xdb, 0x4e, 0x44, 0xee, 0x39, 0xfb, 0xc9, 0x34, 0x0a, 0xd7, + 0x78, 0x31, 0x96, 0x70, 0xe6, 0xae, 0xc4, 0xa3, 0x21, 0x27, 0x84, 0x88, 0x22, 0x08, 0xb2, 0x80, + 0x9a, 0x42, 0xa9, 0xe2, 0x71, 0x08, 0xa5, 0x9e, 0x07, 0x08, 0xc3, 0x26, 0x37, 0x19, 0x6a, 0x08, + 0x3f, 0xa8, 0x38, 0x6a, 0x76, 0xed, 0xa6, 0x80, 0x60, 0x0d, 0x0b, 0x95, 0x61, 0xaa, 0x1d, 0xf8, + 0x11, 0x97, 0xc9, 0x96, 0xb9, 0x55, 0xdd, 0xa0, 0x19, 0xb4, 0xa1, 0x9a, 0x80, 0xe3, 0x54, 0x0d, + 0xf4, 0x12, 0x8c, 0x8a, 0x40, 0x0e, 0x55, 0xdf, 0x6f, 0x0a, 0x31, 0x90, 0x32, 0x34, 0xab, 0xc5, + 0x20, 0xac, 0xe3, 0x69, 0xd5, 0x98, 0xa0, 0x77, 0x38, 0xb3, 0x1a, 0x17, 0xf6, 0x6a, 0x78, 0x89, + 0xf0, 0x8f, 0x23, 0x7d, 0x85, 0x7f, 0x8c, 0x05, 0x63, 0xa5, 0xbe, 0x95, 0x68, 0xd0, 0x53, 0x94, + 0xf4, 0x33, 0x03, 0x30, 0x23, 0x16, 0xce, 0xa3, 0x5e, 0x2e, 0xb7, 0xd3, 0xcb, 0xe5, 0x38, 0x44, + 0x67, 0xef, 0xad, 0x99, 0x93, 0x5e, 0x33, 0x3f, 0x68, 0x81, 0xc9, 0x5e, 0xa1, 0xff, 0x27, 0x37, + 0x0f, 0xcd, 0x4b, 0xb9, 0xec, 0x5a, 0x43, 0x5e, 0x20, 0xef, 0x30, 0x23, 0x8d, 0xfd, 0x1f, 0x2d, + 0x78, 0xb2, 0x27, 0x45, 0xb4, 0x02, 0x25, 0xc6, 0x03, 0x6a, 0xaf, 0xb3, 0xa7, 0x94, 0xd5, 0xad, + 0x04, 0xe4, 0xb0, 0xa4, 0x71, 0x4d, 0xb4, 0x92, 0x4a, 0xf8, 0xf3, 0x74, 0x46, 0xc2, 0x9f, 0xd3, + 0xc6, 0xf0, 0x3c, 0x64, 0xc6, 0x9f, 0xef, 0xa7, 0x37, 0x8e, 0xe1, 0xf1, 0x82, 0x3e, 0x6c, 0x88, + 0xfd, 0xec, 0x84, 0xd8, 0x0f, 0x99, 0xd8, 0xda, 0x1d, 0xf2, 0x71, 0x98, 0x62, 0x11, 0x9e, 0x98, + 0x0d, 0xb8, 0xf0, 0xc5, 0x29, 0xc4, 0x76, 0x9e, 0x37, 0x13, 0x30, 0x9c, 0xc2, 0xb6, 0xff, 0xb0, + 0x08, 0x43, 0x7c, 0xfb, 0x9d, 0xc0, 0x9b, 0xf0, 0x19, 0x28, 0xb9, 0xad, 0x56, 0x87, 0xe7, 0x70, + 0x19, 0xe4, 0x0e, 0xb8, 0x74, 0x9e, 0x2a, 0xb2, 0x10, 0xc7, 0x70, 0xb4, 0x2a, 0x24, 0xce, 0x5d, + 0x82, 0x48, 0xf2, 0x8e, 0x2f, 0x94, 0x9d, 0xc8, 0xe1, 0x0c, 0x8e, 0xba, 0x67, 0x63, 0xd9, 0x34, + 0xfa, 0x0c, 0x40, 0x18, 0x05, 0xae, 0xb7, 0x4d, 0xcb, 0x44, 0xcc, 0xd4, 0x0f, 0x76, 0xa1, 0x56, + 0x53, 0xc8, 0x9c, 0x66, 0x7c, 0xe6, 0x28, 0x00, 0xd6, 0x28, 0xa2, 0x05, 0xe3, 0xa6, 0x9f, 0x4b, + 0xcc, 0x1d, 0x70, 0xaa, 0xf1, 0x9c, 0xcd, 0x7d, 0x04, 0x4a, 0x8a, 0x78, 0x2f, 0xf9, 0xd3, 0x98, + 0xce, 0x16, 0x7d, 0x0c, 0x26, 0x13, 0x7d, 0x3b, 0x92, 0xf8, 0xea, 0x17, 0x2c, 0x98, 0xe4, 0x9d, + 0x59, 0xf1, 0xf6, 0xc4, 0x6d, 0xf0, 0x36, 0x9c, 0x6a, 0x66, 0x9c, 0xca, 0x62, 0xfa, 0xfb, 0x3f, + 0xc5, 0x95, 0xb8, 0x2a, 0x0b, 0x8a, 0x33, 0xdb, 0x40, 0x97, 0xe9, 0x8e, 0xa3, 0xa7, 0xae, 0xd3, + 0x14, 0xfe, 0xb8, 0x63, 0x7c, 0xb7, 0xf1, 0x32, 0xac, 0xa0, 0xf6, 0xef, 0x58, 0x30, 0xcd, 0x7b, + 0x7e, 0x83, 0xec, 0xab, 0xb3, 0xe9, 0xeb, 0xd9, 0x77, 0x91, 0x3d, 0xac, 0x90, 0x93, 0x3d, 0x4c, + 0xff, 0xb4, 0x62, 0xd7, 0x4f, 0xfb, 0x69, 0x0b, 0xc4, 0x0a, 0x39, 0x01, 0x21, 0xc4, 0xb7, 0x9a, + 0x42, 0x88, 0xb9, 0xfc, 0x4d, 0x90, 0x23, 0x7d, 0xf8, 0x73, 0x0b, 0xa6, 0x38, 0x42, 0xac, 0x2d, + 0xff, 0xba, 0xce, 0x43, 0x3f, 0x39, 0x86, 0x6f, 0x90, 0xfd, 0x0d, 0xbf, 0xea, 0x44, 0x3b, 0xd9, + 0x1f, 0x65, 0x4c, 0xd6, 0x40, 0xd7, 0xc9, 0x6a, 0xc8, 0x0d, 0x74, 0x84, 0xc4, 0xe5, 0x47, 0x4e, + 0xae, 0x61, 0x7f, 0xcd, 0x02, 0xc4, 0x9b, 0x31, 0x18, 0x37, 0xca, 0x0e, 0xb1, 0x52, 0xed, 0xa2, + 0x8b, 0x8f, 0x26, 0x05, 0xc1, 0x1a, 0xd6, 0xb1, 0x0c, 0x4f, 0xc2, 0xe4, 0xa1, 0xd8, 0xdb, 0xe4, + 0xe1, 0x08, 0x23, 0xfa, 0xaf, 0x87, 0x20, 0xe9, 0xf5, 0x83, 0xee, 0xc0, 0x58, 0xdd, 0x69, 0x3b, + 0x9b, 0x6e, 0xd3, 0x8d, 0x5c, 0x12, 0x76, 0x33, 0xca, 0x5a, 0xd6, 0xf0, 0x84, 0x92, 0x5a, 0x2b, + 0xc1, 0x06, 0x1d, 0xb4, 0x00, 0xd0, 0x0e, 0xdc, 0x3d, 0xb7, 0x49, 0xb6, 0x99, 0xac, 0x84, 0x45, + 0x00, 0xe0, 0x96, 0x46, 0xb2, 0x14, 0x6b, 0x18, 0x19, 0x2e, 0xd6, 0xc5, 0x47, 0xec, 0x62, 0x0d, + 0x27, 0xe6, 0x62, 0x3d, 0x70, 0x24, 0x17, 0xeb, 0x91, 0x23, 0xbb, 0x58, 0x0f, 0xf6, 0xe5, 0x62, + 0x8d, 0xe1, 0x8c, 0xe4, 0x3d, 0xe9, 0xff, 0x55, 0xb7, 0x49, 0xc4, 0x83, 0x83, 0x87, 0x2d, 0x98, + 0x7b, 0x70, 0x30, 0x7f, 0x06, 0x67, 0x62, 0xe0, 0x9c, 0x9a, 0xe8, 0x13, 0x30, 0xeb, 0x34, 0x9b, + 0xfe, 0x3d, 0x35, 0xa9, 0x2b, 0x61, 0xdd, 0x69, 0x72, 0x25, 0xc4, 0x30, 0xa3, 0xfa, 0xc4, 0x83, + 0x83, 0xf9, 0xd9, 0xc5, 0x1c, 0x1c, 0x9c, 0x5b, 0x1b, 0x7d, 0x14, 0x4a, 0xed, 0xc0, 0xaf, 0xaf, + 0x69, 0xae, 0x89, 0xe7, 0xe9, 0x00, 0x56, 0x65, 0xe1, 0xe1, 0xc1, 0xfc, 0xb8, 0xfa, 0xc3, 0x2e, + 0xfc, 0xb8, 0x42, 0x86, 0xcf, 0xf4, 0xe8, 0xb1, 0xfa, 0x4c, 0xef, 0xc2, 0x4c, 0x8d, 0x04, 0x2e, + 0x4b, 0x73, 0xde, 0x88, 0xcf, 0xa7, 0x0d, 0x28, 0x05, 0x89, 0x13, 0xb9, 0xaf, 0xc0, 0x8e, 0x5a, + 0x96, 0x03, 0x79, 0x02, 0xc7, 0x84, 0xec, 0xff, 0x65, 0xc1, 0xb0, 0xf0, 0xf2, 0x39, 0x01, 0xae, + 0x71, 0xd1, 0xd0, 0x24, 0xcc, 0x67, 0x0f, 0x18, 0xeb, 0x4c, 0xae, 0x0e, 0xa1, 0x92, 0xd0, 0x21, + 0x3c, 0xd9, 0x8d, 0x48, 0x77, 0xed, 0xc1, 0x5f, 0x2b, 0x52, 0xee, 0xdd, 0xf0, 0x37, 0x7d, 0xf4, + 0x43, 0xb0, 0x0e, 0xc3, 0xa1, 0xf0, 0x77, 0x2c, 0xe4, 0x1b, 0xe8, 0x27, 0x27, 0x31, 0xb6, 0x63, + 0x13, 0x1e, 0x8e, 0x92, 0x48, 0xa6, 0x23, 0x65, 0xf1, 0x11, 0x3a, 0x52, 0xf6, 0xf2, 0xc8, 0x1d, + 0x38, 0x0e, 0x8f, 0x5c, 0xfb, 0x2b, 0xec, 0xe6, 0xd4, 0xcb, 0x4f, 0x80, 0xa9, 0xba, 0x66, 0xde, + 0xb1, 0x76, 0x97, 0x95, 0x25, 0x3a, 0x95, 0xc3, 0x5c, 0xfd, 0x9c, 0x05, 0xe7, 0x32, 0xbe, 0x4a, + 0xe3, 0xb4, 0x9e, 0x85, 0x11, 0xa7, 0xd3, 0x70, 0xd5, 0x5e, 0xd6, 0xf4, 0x89, 0x8b, 0xa2, 0x1c, + 0x2b, 0x0c, 0xb4, 0x0c, 0xd3, 0xe4, 0x7e, 0xdb, 0xe5, 0xaa, 0x54, 0xdd, 0xaa, 0xb5, 0xc8, 0x5d, + 0xc3, 0x56, 0x92, 0x40, 0x9c, 0xc6, 0x57, 0x51, 0x50, 0x8a, 0xb9, 0x51, 0x50, 0xfe, 0x9e, 0x05, + 0xa3, 0xca, 0xe3, 0xef, 0x91, 0x8f, 0xf6, 0xc7, 0xcd, 0xd1, 0x7e, 0xbc, 0xcb, 0x68, 0xe7, 0x0c, + 0xf3, 0x6f, 0x15, 0x54, 0x7f, 0xab, 0x7e, 0x10, 0xf5, 0xc1, 0xc1, 0x3d, 0xbc, 0x1d, 0xfe, 0x55, + 0x18, 0x75, 0xda, 0x6d, 0x09, 0x90, 0x36, 0x68, 0x2c, 0x4c, 0x6f, 0x5c, 0x8c, 0x75, 0x1c, 0xe5, + 0x16, 0x50, 0xcc, 0x75, 0x0b, 0x68, 0x00, 0x44, 0x4e, 0xb0, 0x4d, 0x22, 0x5a, 0x26, 0x22, 0x96, + 0xe5, 0x9f, 0x37, 0x9d, 0xc8, 0x6d, 0x2e, 0xb8, 0x5e, 0x14, 0x46, 0xc1, 0x42, 0xc5, 0x8b, 0x6e, + 0x05, 0xfc, 0x09, 0xa9, 0x85, 0x04, 0x52, 0xb4, 0xb0, 0x46, 0x57, 0x7a, 0xb7, 0xb3, 0x36, 0x06, + 0x4d, 0x63, 0x86, 0x75, 0x51, 0x8e, 0x15, 0x86, 0xfd, 0x11, 0x76, 0xfb, 0xb0, 0x31, 0x3d, 0x5a, + 0x0c, 0x9d, 0xff, 0x3a, 0xa6, 0x66, 0x83, 0x69, 0x32, 0xcb, 0x7a, 0xa4, 0x9e, 0xee, 0x87, 0x3d, + 0x6d, 0x58, 0x77, 0x52, 0x8b, 0xc3, 0xf9, 0xa0, 0x6f, 0x4b, 0x19, 0xa8, 0x3c, 0xd7, 0xe3, 0xd6, + 0x38, 0x82, 0x49, 0x0a, 0xcb, 0xd9, 0xc1, 0x32, 0x1a, 0x54, 0xaa, 0x62, 0x5f, 0x68, 0x39, 0x3b, + 0x04, 0x00, 0xc7, 0x38, 0x94, 0x99, 0x52, 0x7f, 0xc2, 0x59, 0x14, 0xc7, 0xae, 0x54, 0xd8, 0x21, + 0xd6, 0x30, 0xd0, 0x15, 0x21, 0x50, 0xe0, 0x7a, 0x81, 0xc7, 0x13, 0x02, 0x05, 0x39, 0x5c, 0x9a, + 0x14, 0xe8, 0x2a, 0x8c, 0xaa, 0xb4, 0xbd, 0x55, 0x9e, 0x0d, 0x56, 0x2c, 0xb3, 0x95, 0xb8, 0x18, + 0xeb, 0x38, 0x68, 0x03, 0x26, 0x43, 0x2e, 0x67, 0x53, 0x01, 0x85, 0xb9, 0xbc, 0xf2, 0x83, 0xd2, + 0x0a, 0xa8, 0x66, 0x82, 0x0f, 0x59, 0x11, 0x3f, 0x9d, 0xa4, 0x07, 0x7a, 0x92, 0x04, 0x7a, 0x0d, + 0x26, 0x9a, 0xbe, 0xd3, 0x58, 0x72, 0x9a, 0x8e, 0x57, 0x67, 0xe3, 0x33, 0x62, 0x66, 0x7f, 0xbc, + 0x69, 0x40, 0x71, 0x02, 0x9b, 0x32, 0x6f, 0x7a, 0x89, 0x08, 0x82, 0xed, 0x78, 0xdb, 0x24, 0x14, + 0x49, 0x58, 0x19, 0xf3, 0x76, 0x33, 0x07, 0x07, 0xe7, 0xd6, 0x46, 0x2f, 0xc3, 0x98, 0xfc, 0x7c, + 0x2d, 0x60, 0x43, 0xec, 0x61, 0xa1, 0xc1, 0xb0, 0x81, 0x89, 0xee, 0xc1, 0x69, 0xf9, 0x7f, 0x23, + 0x70, 0xb6, 0xb6, 0xdc, 0xba, 0xf0, 0x62, 0xe6, 0xae, 0x98, 0x8b, 0xd2, 0x5f, 0x70, 0x25, 0x0b, + 0xe9, 0xf0, 0x60, 0xfe, 0x82, 0x18, 0xb5, 0x4c, 0x38, 0x9b, 0xc4, 0x6c, 0xfa, 0x68, 0x0d, 0x66, + 0x76, 0x88, 0xd3, 0x8c, 0x76, 0x96, 0x77, 0x48, 0x7d, 0x57, 0x6e, 0x3a, 0x16, 0x06, 0x42, 0xf3, + 0x4b, 0xb8, 0x9e, 0x46, 0xc1, 0x59, 0xf5, 0xd0, 0x9b, 0x30, 0xdb, 0xee, 0x6c, 0x36, 0xdd, 0x70, + 0x67, 0xdd, 0x8f, 0x98, 0x29, 0x90, 0xca, 0x02, 0x2c, 0xe2, 0x45, 0xa8, 0x40, 0x1b, 0xd5, 0x1c, + 0x3c, 0x9c, 0x4b, 0x01, 0xbd, 0x0d, 0xa7, 0x13, 0x8b, 0x41, 0x78, 0xcc, 0x4f, 0xe4, 0xa7, 0x14, + 0xa8, 0x65, 0x55, 0x10, 0xc1, 0x27, 0xb2, 0x40, 0x38, 0xbb, 0x09, 0xfa, 0xf8, 0xd0, 0x62, 0xb8, + 0x86, 0xb3, 0x53, 0xb1, 0xcd, 0xb2, 0x16, 0xe8, 0x35, 0xc4, 0x06, 0x16, 0x7a, 0x05, 0xc0, 0x6d, + 0xaf, 0x3a, 0x2d, 0xb7, 0x49, 0x1f, 0x99, 0x33, 0xac, 0x0e, 0x7d, 0x70, 0x40, 0xa5, 0x2a, 0x4b, + 0xe9, 0xa9, 0x2e, 0xfe, 0xed, 0x63, 0x0d, 0x1b, 0x55, 0x61, 0x42, 0xfc, 0xdb, 0x17, 0x8b, 0x61, + 0x5a, 0xb9, 0xb4, 0x4f, 0xc8, 0x1a, 0x6a, 0x05, 0x20, 0xb3, 0x84, 0xcd, 0x79, 0xa2, 0x3e, 0xda, + 0x86, 0x73, 0x22, 0xcd, 0x34, 0xd1, 0x57, 0xb7, 0x9c, 0xbd, 0x90, 0x65, 0x00, 0x18, 0xe1, 0xce, + 0x12, 0x8b, 0xdd, 0x10, 0x71, 0x77, 0x3a, 0x94, 0x2b, 0xd0, 0x37, 0x09, 0x77, 0x22, 0x3d, 0xcd, + 0x8d, 0x9a, 0x28, 0x57, 0x70, 0x33, 0x09, 0xc4, 0x69, 0x7c, 0x14, 0xc2, 0x69, 0xd7, 0xcb, 0xda, + 0x13, 0x67, 0x18, 0xa1, 0x8f, 0x71, 0xff, 0xd9, 0xee, 0xfb, 0x21, 0x13, 0xce, 0xf7, 0x43, 0x26, + 0xed, 0x77, 0x66, 0xbb, 0xf7, 0xdb, 0x16, 0xad, 0xad, 0xf1, 0xf7, 0xe8, 0xb3, 0x30, 0xa6, 0x7f, + 0x98, 0xe0, 0x55, 0x2e, 0x65, 0xb3, 0xbf, 0xda, 0xa9, 0xc2, 0x5f, 0x07, 0xea, 0xe4, 0xd0, 0x61, + 0xd8, 0xa0, 0x88, 0xea, 0x19, 0x9e, 0xe6, 0x57, 0xfa, 0xe3, 0x85, 0xfa, 0x37, 0x5d, 0x23, 0x90, + 0xbd, 0x59, 0xd0, 0x4d, 0x18, 0xa9, 0x37, 0x5d, 0xe2, 0x45, 0x95, 0x6a, 0xb7, 0xd8, 0x70, 0xcb, + 0x02, 0x47, 0xec, 0x3e, 0x11, 0xd0, 0x9f, 0x97, 0x61, 0x45, 0xc1, 0xfe, 0xd5, 0x02, 0xcc, 0xf7, + 0xc8, 0x0e, 0x91, 0x50, 0x64, 0x59, 0x7d, 0x29, 0xb2, 0x16, 0x65, 0x82, 0xec, 0xf5, 0x84, 0x8c, + 0x2c, 0x91, 0xfc, 0x3a, 0x96, 0x94, 0x25, 0xf1, 0xfb, 0x76, 0x2c, 0xd0, 0x75, 0x61, 0x03, 0x3d, + 0x5d, 0x63, 0x0c, 0x1d, 0xf8, 0x60, 0xff, 0x0f, 0xe7, 0x5c, 0x7d, 0xa6, 0xfd, 0x95, 0x02, 0x9c, + 0x56, 0x43, 0xf8, 0xcd, 0x3b, 0x70, 0xb7, 0xd3, 0x03, 0x77, 0x0c, 0xda, 0x60, 0xfb, 0x16, 0x0c, + 0xf1, 0x60, 0x77, 0x7d, 0x30, 0xec, 0x17, 0xcd, 0xb8, 0xb0, 0x8a, 0x47, 0x34, 0x62, 0xc3, 0x7e, + 0xaf, 0x05, 0x93, 0x1b, 0xcb, 0xd5, 0x9a, 0x5f, 0xdf, 0x25, 0xd1, 0x22, 0x7f, 0x60, 0x61, 0xcd, + 0x27, 0xf7, 0x61, 0x98, 0xea, 0x2c, 0x76, 0xfd, 0x02, 0x0c, 0xec, 0xf8, 0x61, 0x94, 0x34, 0x15, + 0xb9, 0xee, 0x87, 0x11, 0x66, 0x10, 0xfb, 0x77, 0x2d, 0x18, 0xdc, 0x70, 0x5c, 0x2f, 0x92, 0x6a, + 0x05, 0x2b, 0x47, 0xad, 0xd0, 0xcf, 0x77, 0xa1, 0x97, 0x60, 0x88, 0x6c, 0x6d, 0x91, 0x7a, 0x24, + 0x66, 0x55, 0x06, 0x34, 0x18, 0x5a, 0x61, 0xa5, 0x94, 0x83, 0x64, 0x8d, 0xf1, 0xbf, 0x58, 0x20, + 0xa3, 0xbb, 0x50, 0x8a, 0xdc, 0x16, 0x59, 0x6c, 0x34, 0x84, 0xb2, 0xfd, 0x21, 0x82, 0x32, 0x6c, + 0x48, 0x02, 0x38, 0xa6, 0x65, 0x7f, 0xa9, 0x00, 0x10, 0x47, 0x09, 0xea, 0xf5, 0x89, 0x4b, 0x29, + 0x35, 0xec, 0xa5, 0x0c, 0x35, 0x2c, 0x8a, 0x09, 0x66, 0xe8, 0x60, 0xd5, 0x30, 0x15, 0xfb, 0x1a, + 0xa6, 0x81, 0xa3, 0x0c, 0xd3, 0x32, 0x4c, 0xc7, 0x51, 0x8e, 0xcc, 0x20, 0x6f, 0xec, 0xfa, 0xdc, + 0x48, 0x02, 0x71, 0x1a, 0xdf, 0x26, 0x70, 0x41, 0x05, 0x7b, 0x11, 0x37, 0x1a, 0xb3, 0xe5, 0xd6, + 0xd5, 0xda, 0x3d, 0xc6, 0x29, 0xd6, 0x33, 0x17, 0x72, 0xf5, 0xcc, 0x3f, 0x61, 0xc1, 0xa9, 0x64, + 0x3b, 0xcc, 0x8b, 0xf7, 0x8b, 0x16, 0x9c, 0x66, 0xda, 0x76, 0xd6, 0x6a, 0x5a, 0xb7, 0xff, 0x62, + 0xd7, 0x00, 0x36, 0x39, 0x3d, 0x8e, 0x23, 0x67, 0xac, 0x65, 0x91, 0xc6, 0xd9, 0x2d, 0xda, 0xff, + 0xa1, 0x00, 0xb3, 0x79, 0x91, 0x6f, 0x98, 0xab, 0x87, 0x73, 0xbf, 0xb6, 0x4b, 0xee, 0x09, 0x83, + 0xfa, 0xd8, 0xd5, 0x83, 0x17, 0x63, 0x09, 0x4f, 0x06, 0xfc, 0x2f, 0xf4, 0x19, 0xf0, 0x7f, 0x07, + 0xa6, 0xef, 0xed, 0x10, 0xef, 0xb6, 0x17, 0x3a, 0x91, 0x1b, 0x6e, 0xb9, 0x4c, 0x33, 0xcd, 0xd7, + 0xcd, 0x2b, 0xd2, 0xec, 0xfd, 0x6e, 0x12, 0xe1, 0xf0, 0x60, 0xfe, 0x9c, 0x51, 0x10, 0x77, 0x99, + 0x1f, 0x24, 0x38, 0x4d, 0x34, 0x9d, 0x2f, 0x61, 0xe0, 0x11, 0xe6, 0x4b, 0xb0, 0xbf, 0x68, 0xc1, + 0xd9, 0xdc, 0x24, 0xad, 0xe8, 0x32, 0x8c, 0x38, 0x6d, 0x97, 0x0b, 0xf7, 0xc5, 0x31, 0xca, 0x84, + 0x48, 0xd5, 0x0a, 0x17, 0xed, 0x2b, 0xa8, 0x4a, 0x1e, 0x5f, 0xc8, 0x4d, 0x1e, 0xdf, 0x33, 0x17, + 0xbc, 0xfd, 0x3d, 0x16, 0x08, 0x37, 0xd5, 0x3e, 0xce, 0xee, 0x4f, 0xc1, 0xd8, 0x5e, 0x3a, 0xa7, + 0xd2, 0x85, 0x7c, 0xbf, 0x5d, 0x91, 0x49, 0x49, 0x31, 0x64, 0x46, 0xfe, 0x24, 0x83, 0x96, 0xdd, + 0x00, 0x01, 0x2d, 0x13, 0x26, 0xba, 0xee, 0xdd, 0x9b, 0xe7, 0x01, 0x1a, 0x0c, 0x57, 0xcb, 0xc0, + 0xaf, 0x6e, 0xe6, 0xb2, 0x82, 0x60, 0x0d, 0xcb, 0xfe, 0xb7, 0x05, 0x18, 0x95, 0x39, 0x7c, 0x3a, + 0x5e, 0x3f, 0x02, 0xa6, 0x23, 0x25, 0xf5, 0x44, 0x57, 0xa0, 0xc4, 0x24, 0xa0, 0xd5, 0x58, 0x2e, + 0xa7, 0xe4, 0x0f, 0x6b, 0x12, 0x80, 0x63, 0x1c, 0xba, 0x8b, 0xc2, 0xce, 0x26, 0x43, 0x4f, 0x38, + 0x55, 0xd6, 0x78, 0x31, 0x96, 0x70, 0xf4, 0x09, 0x98, 0xe2, 0xf5, 0x02, 0xbf, 0xed, 0x6c, 0x73, + 0xad, 0xc9, 0xa0, 0x0a, 0xbb, 0x30, 0xb5, 0x96, 0x80, 0x1d, 0x1e, 0xcc, 0x9f, 0x4a, 0x96, 0x31, + 0x75, 0x60, 0x8a, 0x0a, 0x33, 0x8e, 0xe2, 0x8d, 0xd0, 0xdd, 0x9f, 0xb2, 0xa9, 0x8a, 0x41, 0x58, + 0xc7, 0xb3, 0x3f, 0x0b, 0x28, 0x9d, 0xcd, 0x08, 0xbd, 0xce, 0x2d, 0x62, 0xdd, 0x80, 0x34, 0xba, + 0xa9, 0x07, 0xf5, 0xe0, 0x02, 0xd2, 0x1f, 0x8a, 0xd7, 0xc2, 0xaa, 0xbe, 0xfd, 0xff, 0x17, 0x61, + 0x2a, 0xe9, 0x01, 0x8e, 0xae, 0xc3, 0x10, 0x67, 0x3d, 0x04, 0xf9, 0x2e, 0xd6, 0x27, 0x9a, 0xdf, + 0x38, 0x3b, 0x84, 0x05, 0xf7, 0x22, 0xea, 0xa3, 0x37, 0x61, 0xb4, 0xe1, 0xdf, 0xf3, 0xee, 0x39, + 0x41, 0x63, 0xb1, 0x5a, 0x11, 0xcb, 0x39, 0xf3, 0x39, 0x5c, 0x8e, 0xd1, 0x74, 0x5f, 0x74, 0xa6, + 0x69, 0x8d, 0x41, 0x58, 0x27, 0x87, 0x36, 0x58, 0x08, 0xf4, 0x2d, 0x77, 0x7b, 0xcd, 0x69, 0x77, + 0x73, 0x8f, 0x58, 0x96, 0x48, 0x1a, 0xe5, 0x71, 0x11, 0x27, 0x9d, 0x03, 0x70, 0x4c, 0x08, 0x7d, + 0x1e, 0x66, 0xc2, 0x1c, 0x21, 0x7d, 0x5e, 0x72, 0xbb, 0x6e, 0x72, 0xeb, 0xa5, 0xc7, 0x1e, 0x1c, + 0xcc, 0xcf, 0x64, 0x89, 0xf3, 0xb3, 0x9a, 0xb1, 0x7f, 0xe4, 0x14, 0x18, 0x9b, 0xd8, 0xc8, 0x75, + 0x6a, 0x1d, 0x53, 0xae, 0x53, 0x0c, 0x23, 0xa4, 0xd5, 0x8e, 0xf6, 0xcb, 0x6e, 0xd0, 0x2d, 0x03, + 0xf8, 0x8a, 0xc0, 0x49, 0xd3, 0x94, 0x10, 0xac, 0xe8, 0x64, 0x27, 0xa4, 0x2d, 0x7e, 0x1d, 0x13, + 0xd2, 0x0e, 0x9c, 0x60, 0x42, 0xda, 0x75, 0x18, 0xde, 0x76, 0x23, 0x4c, 0xda, 0xbe, 0x60, 0xfa, + 0x33, 0xd7, 0xe1, 0x35, 0x8e, 0x92, 0x4e, 0x7d, 0x28, 0x00, 0x58, 0x12, 0x41, 0xaf, 0xab, 0x1d, + 0x38, 0x94, 0xff, 0x30, 0x4f, 0x9b, 0x49, 0x64, 0xee, 0x41, 0x91, 0x76, 0x76, 0xf8, 0x61, 0xd3, + 0xce, 0xae, 0xca, 0x64, 0xb1, 0x23, 0xf9, 0xbe, 0x4c, 0x2c, 0x17, 0x6c, 0x8f, 0x14, 0xb1, 0x77, + 0xf4, 0x04, 0xbb, 0xa5, 0xfc, 0x93, 0x40, 0xe5, 0xce, 0xed, 0x33, 0xad, 0xee, 0xf7, 0x58, 0x70, + 0xba, 0x9d, 0x95, 0x6b, 0x5a, 0x58, 0x14, 0xbc, 0xd4, 0x77, 0x3a, 0x6b, 0xa3, 0x41, 0x26, 0x89, + 0xcb, 0x44, 0xc3, 0xd9, 0xcd, 0xd1, 0x81, 0x0e, 0x36, 0x1b, 0x42, 0xb3, 0x7d, 0x31, 0x27, 0x3f, + 0x6f, 0x97, 0xac, 0xbc, 0x1b, 0x19, 0xb9, 0x60, 0xdf, 0x9f, 0x97, 0x0b, 0xb6, 0xef, 0x0c, 0xb0, + 0xaf, 0xab, 0xcc, 0xbc, 0xe3, 0xf9, 0x4b, 0x89, 0xe7, 0xdd, 0xed, 0x99, 0x8f, 0xf7, 0x75, 0x95, + 0x8f, 0xb7, 0x4b, 0x7c, 0x5b, 0x9e, 0x6d, 0xb7, 0x67, 0x16, 0x5e, 0x2d, 0x93, 0xee, 0xe4, 0xf1, + 0x64, 0xd2, 0x35, 0xae, 0x1a, 0x9e, 0xcc, 0xf5, 0x99, 0x1e, 0x57, 0x8d, 0x41, 0xb7, 0xfb, 0x65, + 0xc3, 0xb3, 0x06, 0x4f, 0x3f, 0x54, 0xd6, 0xe0, 0x3b, 0x7a, 0x16, 0x5e, 0xd4, 0x23, 0xcd, 0x2c, + 0x45, 0xea, 0x33, 0xf7, 0xee, 0x1d, 0xfd, 0x02, 0x9c, 0xc9, 0xa7, 0xab, 0xee, 0xb9, 0x34, 0xdd, + 0xcc, 0x2b, 0x30, 0x95, 0xd3, 0xf7, 0xd4, 0xc9, 0xe4, 0xf4, 0x3d, 0x7d, 0xec, 0x39, 0x7d, 0xcf, + 0x9c, 0x40, 0x4e, 0xdf, 0xc7, 0x4e, 0x30, 0xa7, 0xef, 0x1d, 0x66, 0x86, 0xc3, 0x83, 0xfd, 0x88, + 0x78, 0xbc, 0xd9, 0xb1, 0x5f, 0xb3, 0x22, 0x02, 0xf1, 0x8f, 0x53, 0x20, 0x1c, 0x93, 0xca, 0xc8, + 0x15, 0x3c, 0xfb, 0x08, 0x72, 0x05, 0xaf, 0xc7, 0xb9, 0x82, 0xcf, 0xe6, 0x4f, 0x75, 0x86, 0xe3, + 0x46, 0x4e, 0x86, 0xe0, 0x3b, 0x7a, 0x66, 0xdf, 0xc7, 0xbb, 0xe8, 0x5a, 0xb2, 0x04, 0x8f, 0x5d, + 0xf2, 0xf9, 0xbe, 0xc6, 0xf3, 0xf9, 0x3e, 0x91, 0x7f, 0x92, 0x27, 0xaf, 0x3b, 0x23, 0x8b, 0x2f, + 0xed, 0x97, 0x8a, 0xfc, 0xc8, 0x22, 0x0f, 0xe7, 0xf4, 0x4b, 0x85, 0x8e, 0x4c, 0xf7, 0x4b, 0x81, + 0x70, 0x4c, 0xca, 0xfe, 0xbe, 0x02, 0x9c, 0xef, 0xbe, 0xdf, 0x62, 0x69, 0x6a, 0x35, 0x56, 0x3d, + 0x27, 0xa4, 0xa9, 0xfc, 0xcd, 0x16, 0x63, 0xf5, 0x1d, 0xc8, 0xee, 0x1a, 0x4c, 0x2b, 0x8f, 0x8f, + 0xa6, 0x5b, 0xdf, 0x5f, 0x8f, 0x5f, 0xbe, 0xca, 0x4b, 0xbe, 0x96, 0x44, 0xc0, 0xe9, 0x3a, 0x68, + 0x11, 0x26, 0x8d, 0xc2, 0x4a, 0x59, 0xbc, 0xcd, 0x94, 0xf8, 0xb6, 0x66, 0x82, 0x71, 0x12, 0xdf, + 0xfe, 0xb2, 0x05, 0x8f, 0xe5, 0x24, 0xc3, 0xeb, 0x3b, 0x4e, 0xdb, 0x16, 0x4c, 0xb6, 0xcd, 0xaa, + 0x3d, 0x42, 0x4b, 0x1a, 0x29, 0xf7, 0x54, 0x5f, 0x13, 0x00, 0x9c, 0x24, 0x6a, 0xff, 0x99, 0x05, + 0xe7, 0xba, 0x9a, 0x30, 0x22, 0x0c, 0x67, 0xb6, 0x5b, 0xa1, 0xb3, 0x1c, 0x90, 0x06, 0xf1, 0x22, + 0xd7, 0x69, 0xd6, 0xda, 0xa4, 0xae, 0xc9, 0xc3, 0x99, 0x2d, 0xe0, 0xb5, 0xb5, 0xda, 0x62, 0x1a, + 0x03, 0xe7, 0xd4, 0x44, 0xab, 0x80, 0xd2, 0x10, 0x31, 0xc3, 0x2c, 0x86, 0x75, 0x9a, 0x1e, 0xce, + 0xa8, 0x81, 0x3e, 0x02, 0xe3, 0xca, 0x34, 0x52, 0x9b, 0x71, 0x76, 0xb0, 0x63, 0x1d, 0x80, 0x4d, + 0xbc, 0xa5, 0xcb, 0xbf, 0xfe, 0xfb, 0xe7, 0xdf, 0xf7, 0x9b, 0xbf, 0x7f, 0xfe, 0x7d, 0xbf, 0xf3, + 0xfb, 0xe7, 0xdf, 0xf7, 0x1d, 0x0f, 0xce, 0x5b, 0xbf, 0xfe, 0xe0, 0xbc, 0xf5, 0x9b, 0x0f, 0xce, + 0x5b, 0xbf, 0xf3, 0xe0, 0xbc, 0xf5, 0x7b, 0x0f, 0xce, 0x5b, 0x5f, 0xfa, 0x83, 0xf3, 0xef, 0xfb, + 0x54, 0x61, 0xef, 0xea, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x6a, 0x19, 0xeb, 0xbc, 0x04, + 0x01, 0x00, } func (m *AWSElasticBlockStoreVolumeSource) Marshal() (dAtA []byte, err error) { @@ -15836,6 +15837,11 @@ func (m *Probe) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.TerminationGracePeriodSeconds != nil { + i = encodeVarintGenerated(dAtA, i, uint64(*m.TerminationGracePeriodSeconds)) + i-- + dAtA[i] = 0x38 + } i = encodeVarintGenerated(dAtA, i, uint64(m.FailureThreshold)) i-- dAtA[i] = 0x30 @@ -22756,6 +22762,9 @@ func (m *Probe) Size() (n int) { n += 1 + sovGenerated(uint64(m.PeriodSeconds)) n += 1 + sovGenerated(uint64(m.SuccessThreshold)) n += 1 + sovGenerated(uint64(m.FailureThreshold)) + if m.TerminationGracePeriodSeconds != nil { + n += 1 + sovGenerated(uint64(*m.TerminationGracePeriodSeconds)) + } return n } @@ -26549,6 +26558,7 @@ func (this *Probe) String() string { `PeriodSeconds:` + fmt.Sprintf("%v", this.PeriodSeconds) + `,`, `SuccessThreshold:` + fmt.Sprintf("%v", this.SuccessThreshold) + `,`, `FailureThreshold:` + fmt.Sprintf("%v", this.FailureThreshold) + `,`, + `TerminationGracePeriodSeconds:` + valueToStringGenerated(this.TerminationGracePeriodSeconds) + `,`, `}`, }, "") return s @@ -55473,6 +55483,26 @@ func (m *Probe) Unmarshal(dAtA []byte) error { break } } + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TerminationGracePeriodSeconds", wireType) + } + var v int64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TerminationGracePeriodSeconds = &v 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 646ba5d0cbb2..152ea29fd05b 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -3421,7 +3421,8 @@ message PodSpec { optional string restartPolicy = 3; // Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. - // Value must be non-negative integer. The value zero indicates delete immediately. + // Value must be non-negative integer. The value zero indicates stop immediately via + // the kill signal (no opportunity to shut down). // If this value is nil, the default grace period will be used instead. // The grace period is the duration in seconds after the processes running in the pod are sent // a termination signal and the time when the processes are forcibly halted with a kill signal. @@ -3883,6 +3884,18 @@ message Probe { // Defaults to 3. Minimum value is 1. // +optional optional int32 failureThreshold = 6; + + // Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + // The grace period is the duration in seconds after the processes running in the pod are sent + // a termination signal and the time when the processes are forcibly halted with a kill signal. + // Set this value longer than the expected cleanup time for your process. + // If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + // value overrides the value provided by the pod spec. + // Value must be non-negative integer. The value zero indicates stop immediately via + // the kill signal (no opportunity to shut down). + // This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. + // +optional + optional int64 terminationGracePeriodSeconds = 7; } // Represents a projected volume source diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index dd5cb4e3cd5d..3eadb45674c9 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -2117,6 +2117,17 @@ type Probe struct { // Defaults to 3. Minimum value is 1. // +optional FailureThreshold int32 `json:"failureThreshold,omitempty" protobuf:"varint,6,opt,name=failureThreshold"` + // Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + // The grace period is the duration in seconds after the processes running in the pod are sent + // a termination signal and the time when the processes are forcibly halted with a kill signal. + // Set this value longer than the expected cleanup time for your process. + // If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + // value overrides the value provided by the pod spec. + // Value must be non-negative integer. The value zero indicates stop immediately via + // the kill signal (no opportunity to shut down). + // This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. + // +optional + TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty" protobuf:"varint,7,opt,name=terminationGracePeriodSeconds"` } // PullPolicy describes a policy for if/when to pull a container image @@ -2968,7 +2979,8 @@ type PodSpec struct { // +optional RestartPolicy RestartPolicy `json:"restartPolicy,omitempty" protobuf:"bytes,3,opt,name=restartPolicy,casttype=RestartPolicy"` // Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. - // Value must be non-negative integer. The value zero indicates delete immediately. + // Value must be non-negative integer. The value zero indicates stop immediately via + // the kill signal (no opportunity to shut down). // If this value is nil, the default grace period will be used instead. // The grace period is the duration in seconds after the processes running in the pod are sent // a termination signal and the time when the processes are forcibly halted with a kill signal. 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 b5b7bf82175f..0892b9b5ecbb 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 @@ -1627,7 +1627,7 @@ var map_PodSpec = map[string]string{ "containers": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "ephemeralContainers": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "restartPolicy": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", - "terminationGracePeriodSeconds": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", + "terminationGracePeriodSeconds": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "activeDeadlineSeconds": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "dnsPolicy": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "nodeSelector": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", @@ -1777,12 +1777,13 @@ func (PreferredSchedulingTerm) SwaggerDoc() map[string]string { } var map_Probe = map[string]string{ - "": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", - "initialDelaySeconds": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", - "timeoutSeconds": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", - "periodSeconds": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", - "successThreshold": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", - "failureThreshold": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + "": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + "initialDelaySeconds": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + "timeoutSeconds": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + "periodSeconds": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + "successThreshold": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", + "failureThreshold": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + "terminationGracePeriodSeconds": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate.", } func (Probe) 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 6cb291b71be9..b60baa665610 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 @@ -4190,6 +4190,11 @@ func (in *PreferredSchedulingTerm) DeepCopy() *PreferredSchedulingTerm { func (in *Probe) DeepCopyInto(out *Probe) { *out = *in in.Handler.DeepCopyInto(&out.Handler) + if in.TerminationGracePeriodSeconds != nil { + in, out := &in.TerminationGracePeriodSeconds, &out.TerminationGracePeriodSeconds + *out = new(int64) + **out = **in + } 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 02217e880fd6..86e3a06ea442 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 @@ -554,7 +554,8 @@ "timeoutSeconds": -438588982, "periodSeconds": 1004325340, "successThreshold": -1313320434, - "failureThreshold": 14304392 + "failureThreshold": 14304392, + "terminationGracePeriodSeconds": 2001337664780390084 }, "readinessProbe": { "exec": { @@ -564,9 +565,9 @@ }, "httpGet": { "path": "209", - "port": 1714588921, + "port": -614161319, "host": "210", - "scheme": "Ư貾", + "scheme": "Ȩ\u003c6鄰簳°Ļǟi\u0026", "httpHeaders": [ { "name": "211", @@ -578,11 +579,12 @@ "port": "213", "host": "214" }, - "initialDelaySeconds": -552281772, - "timeoutSeconds": -677617960, - "periodSeconds": 383015301, - "successThreshold": -1717997927, - "failureThreshold": 1533365989 + "initialDelaySeconds": 233282513, + "timeoutSeconds": -518330919, + "periodSeconds": 1313273370, + "successThreshold": -1296830577, + "failureThreshold": -1314967760, + "terminationGracePeriodSeconds": 5043322816247327651 }, "startupProbe": { "exec": { @@ -592,672 +594,679 @@ }, "httpGet": { "path": "216", - "port": -2121788927, - "host": "217", + "port": "217", + "host": "218", + "scheme": "队偯J僳徥淳4揻", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "219", + "value": "220" } ] }, "tcpSocket": { - "port": -518330919, - "host": "220" + "port": 878005329, + "host": "221" }, - "initialDelaySeconds": 1313273370, - "timeoutSeconds": -1296830577, - "periodSeconds": -1314967760, - "successThreshold": 1174240097, - "failureThreshold": -1928016742 + "initialDelaySeconds": -1244119841, + "timeoutSeconds": 1235694147, + "periodSeconds": 348370746, + "successThreshold": 468369166, + "failureThreshold": 1909548849, + "terminationGracePeriodSeconds": 6410850623145248813 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "222" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "偯J僳徥淳4", + "path": "223", + "port": "224", + "host": "225", + "scheme": "鰔澝qV訆ƎżŧL²sNƗ¸", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "226", + "value": "227" } ] }, "tcpSocket": { - "port": -1421951296, - "host": "227" + "port": "228", + "host": "229" } }, "preStop": { "exec": { "command": [ - "228" + "230" ] }, "httpGet": { - "path": "229", - "port": -1856061695, - "host": "230", - "scheme": "Œɥ颶妧Ö闊 鰔澝qV訆Ǝ", + "path": "231", + "port": "232", + "host": "233", + "scheme": "δ摖", "httpHeaders": [ { - "name": "231", - "value": "232" + "name": "234", + "value": "235" } ] }, "tcpSocket": { - "port": 509813083, - "host": "233" + "port": "236", + "host": "237" } } }, - "terminationMessagePath": "234", - "terminationMessagePolicy": "²sNƗ¸g", - "imagePullPolicy": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:", + "terminationMessagePath": "238", + "terminationMessagePolicy": "_\u003cǬëJ橈'琕鶫:顇ə娯Ȱ", + "imagePullPolicy": "ǵɐ鰥Z", "securityContext": { "capabilities": { "add": [ - "" + "DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ" ], "drop": [ - "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;" + "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6" ] }, "privileged": false, "seLinuxOptions": { - "user": "235", - "role": "236", - "type": "237", - "level": "238" + "user": "239", + "role": "240", + "type": "241", + "level": "242" }, "windowsOptions": { - "gmsaCredentialSpecName": "239", - "gmsaCredentialSpec": "240", - "runAsUserName": "241" + "gmsaCredentialSpecName": "243", + "gmsaCredentialSpec": "244", + "runAsUserName": "245" }, - "runAsUser": 5431518803727886665, - "runAsGroup": -545284475172904979, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "runAsUser": 9148233193771851687, + "runAsGroup": 6901713258562004024, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "丆", + "procMount": "弢ȹ均i绝5哇芆斩ìh4Ɋ", "seccompProfile": { - "type": "²Ŏ)/灩聋3趐囨", - "localhostProfile": "242" + "type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "localhostProfile": "246" } } } ], "containers": [ { - "name": "243", - "image": "244", + "name": "247", + "image": "248", "command": [ - "245" + "249" ], "args": [ - "246" + "250" ], - "workingDir": "247", + "workingDir": "251", "ports": [ { - "name": "248", - "hostPort": -1733181402, - "containerPort": -1365158918, - "protocol": "OǨ繫ʎǑyZ", - "hostIP": "249" + "name": "252", + "hostPort": 1540899353, + "containerPort": -1330095135, + "protocol": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", + "hostIP": "253" } ], "envFrom": [ { - "prefix": "250", + "prefix": "254", "configMapRef": { - "name": "251", + "name": "255", "optional": false }, "secretRef": { - "name": "252", - "optional": true + "name": "256", + "optional": false } } ], "env": [ { - "name": "253", - "value": "254", + "name": "257", + "value": "258", "valueFrom": { "fieldRef": { - "apiVersion": "255", - "fieldPath": "256" + "apiVersion": "259", + "fieldPath": "260" }, "resourceFieldRef": { - "containerName": "257", - "resource": "258", - "divisor": "516" + "containerName": "261", + "resource": "262", + "divisor": "293" }, "configMapKeyRef": { - "name": "259", - "key": "260", + "name": "263", + "key": "264", "optional": true }, "secretKeyRef": { - "name": "261", - "key": "262", - "optional": true + "name": "265", + "key": "266", + "optional": false } } } ], "resources": { "limits": { - "": "991" + "9崍": "210" }, "requests": { - "斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ": "850" + ")ǂť嗆u8晲T[irȎ3Ĕ\\ɢX鰨松": "775" } }, "volumeMounts": [ { - "name": "263", + "name": "267", "readOnly": true, - "mountPath": "264", - "subPath": "265", - "mountPropagation": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", - "subPathExpr": "266" + "mountPath": "268", + "subPath": "269", + "mountPropagation": "ʠɜ瞍阎lğ Ņ", + "subPathExpr": "270" } ], "volumeDevices": [ { - "name": "267", - "devicePath": "268" + "name": "271", + "devicePath": "272" } ], "livenessProbe": { "exec": { "command": [ - "269" + "273" ] }, "httpGet": { - "path": "270", - "port": -543432015, - "host": "271", - "scheme": "ƷƣMț", + "path": "274", + "port": 1866529638, + "host": "275", + "scheme": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n", "httpHeaders": [ { - "name": "272", - "value": "273" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": "274", - "host": "275" + "port": 638012651, + "host": "278" }, - "initialDelaySeconds": -211480108, - "timeoutSeconds": -200074798, - "periodSeconds": 556036216, - "successThreshold": -1838917931, - "failureThreshold": -1563928252 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "276" + "279" ] }, "httpGet": { - "path": "277", - "port": -426022413, - "host": "278", - "scheme": "躒訙Ǫʓ)ǂť嗆u8晲T[irȎ", + "path": "280", + "port": "281", + "host": "282", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "279", - "value": "280" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": 1238925115, - "host": "281" + "port": "285", + "host": "286" }, - "initialDelaySeconds": -1758095966, - "timeoutSeconds": 1627026804, - "periodSeconds": -1508967300, - "successThreshold": -1058923098, - "failureThreshold": -1656699070 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "282" + "287" ] }, "httpGet": { - "path": "283", - "port": "284", - "host": "285", - "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(", + "path": "288", + "port": "289", + "host": "290", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "286", - "value": "287" + "name": "291", + "value": "292" } ] }, "tcpSocket": { - "port": 317211081, - "host": "288" + "port": -1894647727, + "host": "293" }, - "initialDelaySeconds": -1934305215, - "timeoutSeconds": -655359985, - "periodSeconds": 875971520, - "successThreshold": 161338049, - "failureThreshold": 65094252 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "289" + "294" ] }, "httpGet": { - "path": "290", - "port": "291", - "host": "292", - "scheme": "若`l}", + "path": "295", + "port": 466267060, + "host": "296", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "293", - "value": "294" + "name": "297", + "value": "298" } ] }, "tcpSocket": { - "port": 2097633614, - "host": "295" + "port": "299", + "host": "300" } }, "preStop": { "exec": { "command": [ - "296" + "301" ] }, "httpGet": { - "path": "297", - "port": 638012651, - "host": "298", - "scheme": "誹", + "path": "302", + "port": "303", + "host": "304", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "299", - "value": "300" + "name": "305", + "value": "306" } ] }, "tcpSocket": { - "port": "301", - "host": "302" + "port": "307", + "host": "308" } } }, - "terminationMessagePath": "303", - "terminationMessagePolicy": "ɼ搳ǭ濑箨ʨIk(", - "imagePullPolicy": "腂ǂǚŜEuEy", + "terminationMessagePath": "309", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "ɞȥ}礤铟怖ý萜Ǖ" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "8ǣƘƵŧ1ƟƓ宆!鍲ɋȑoG鄧蜢" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, "privileged": false, "seLinuxOptions": { - "user": "304", - "role": "305", - "type": "306", - "level": "307" + "user": "310", + "role": "311", + "type": "312", + "level": "313" }, "windowsOptions": { - "gmsaCredentialSpecName": "308", - "gmsaCredentialSpec": "309", - "runAsUserName": "310" + "gmsaCredentialSpecName": "314", + "gmsaCredentialSpec": "315", + "runAsUserName": "316" }, - "runAsUser": 2424760700494115127, - "runAsGroup": 8749598715214557239, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "阠$嬏", + "procMount": "ʙcx", "seccompProfile": { - "type": "y¶熀ďJZ漤", - "localhostProfile": "311" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "317" } - }, - "stdinOnce": true + } } ], "ephemeralContainers": [ { - "name": "312", - "image": "313", + "name": "318", + "image": "319", "command": [ - "314" + "320" ], "args": [ - "315" + "321" ], - "workingDir": "316", + "workingDir": "322", "ports": [ { - "name": "317", - "hostPort": -1617422199, - "containerPort": -902839620, - "protocol": "縆łƑ[澔槃JŵǤ桒ɴ鉂W", - "hostIP": "318" + "name": "323", + "hostPort": 1805682547, + "containerPort": -651405950, + "protocol": "淹揀.e鍃G昧牱fsǕT衩kƒK07", + "hostIP": "324" } ], "envFrom": [ { - "prefix": "319", + "prefix": "325", "configMapRef": { - "name": "320", + "name": "326", "optional": true }, "secretRef": { - "name": "321", + "name": "327", "optional": true } } ], "env": [ { - "name": "322", - "value": "323", + "name": "328", + "value": "329", "valueFrom": { "fieldRef": { - "apiVersion": "324", - "fieldPath": "325" + "apiVersion": "330", + "fieldPath": "331" }, "resourceFieldRef": { - "containerName": "326", - "resource": "327", - "divisor": "776" + "containerName": "332", + "resource": "333", + "divisor": "684" }, "configMapKeyRef": { - "name": "328", - "key": "329", - "optional": false + "name": "334", + "key": "335", + "optional": true }, "secretKeyRef": { - "name": "330", - "key": "331", - "optional": false + "name": "336", + "key": "337", + "optional": true } } } ], "resources": { "limits": { - "ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«": "274" + "蠨磼O_h盌3+Œ9两@8Byß": "111" }, "requests": { - "仁": "342" + "ɃŒ": "451" } }, "volumeMounts": [ { - "name": "332", - "mountPath": "333", - "subPath": "334", - "mountPropagation": "l敷斢杧ż鯀1'鸔ɧWǘ炙B", - "subPathExpr": "335" + "name": "338", + "readOnly": true, + "mountPath": "339", + "subPath": "340", + "mountPropagation": "葰賦", + "subPathExpr": "341" } ], "volumeDevices": [ { - "name": "336", - "devicePath": "337" + "name": "342", + "devicePath": "343" } ], "livenessProbe": { "exec": { "command": [ - "338" + "344" ] }, "httpGet": { - "path": "339", - "port": -1703472232, - "host": "340", - "scheme": "ɎƺL肄$鬬$矐_敕ű嵞嬯t{Eɾ敹Ȯ", + "path": "345", + "port": -121675052, + "host": "346", + "scheme": "W#ļǹʅŚO虀^", "httpHeaders": [ { - "name": "341", - "value": "342" + "name": "347", + "value": "348" } ] }, "tcpSocket": { - "port": "343", - "host": "344" + "port": "349", + "host": "350" }, - "initialDelaySeconds": -1726456869, - "timeoutSeconds": 892837330, - "periodSeconds": 789384689, - "successThreshold": 436796816, - "failureThreshold": 1017403804 + "initialDelaySeconds": -1959891996, + "timeoutSeconds": -1442230895, + "periodSeconds": 1475033091, + "successThreshold": 1782790310, + "failureThreshold": 1587036035, + "terminationGracePeriodSeconds": 7560036535013464461 }, "readinessProbe": { "exec": { "command": [ - "345" + "351" ] }, "httpGet": { - "path": "346", - "port": 1290315514, - "host": "347", - "scheme": "廤", + "path": "352", + "port": -1744546613, + "host": "353", + "scheme": "ʓɻŊ", "httpHeaders": [ { - "name": "348", - "value": "349" + "name": "354", + "value": "355" } ] }, "tcpSocket": { - "port": "350", - "host": "351" + "port": -259047269, + "host": "356" }, - "initialDelaySeconds": 307856269, - "timeoutSeconds": -1072116268, - "periodSeconds": 492351478, - "successThreshold": 983624601, - "failureThreshold": -1836690542 + "initialDelaySeconds": 1586122127, + "timeoutSeconds": -1813456856, + "periodSeconds": 781203691, + "successThreshold": -216440055, + "failureThreshold": 408029351, + "terminationGracePeriodSeconds": 5450105809027610853 }, "startupProbe": { "exec": { "command": [ - "352" + "357" ] }, "httpGet": { - "path": "353", - "port": "354", - "host": "355", - "scheme": "職铳s44矕Ƈè*鑏='ʨ|Ǔ", + "path": "358", + "port": -5241849, + "host": "359", + "scheme": "}颉hȱɷȰW", "httpHeaders": [ { - "name": "356", - "value": "357" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": 718799934, - "host": "358" + "port": "362", + "host": "363" }, - "initialDelaySeconds": -1333877527, - "timeoutSeconds": -1452767599, - "periodSeconds": 1972286304, - "successThreshold": -2067214763, - "failureThreshold": -1238148960 + "initialDelaySeconds": 636493142, + "timeoutSeconds": -192358697, + "periodSeconds": 420595064, + "successThreshold": 1195176401, + "failureThreshold": 902204699, + "terminationGracePeriodSeconds": 9196919020604133323 }, "lifecycle": { "postStart": { "exec": { "command": [ - "359" + "364" ] }, "httpGet": { - "path": "360", - "port": -839925309, - "host": "361", - "scheme": "歹s梊ɥʋ", + "path": "365", + "port": -1460652193, + "host": "366", + "scheme": "8ï驿笈¯rƈa餖Ľƛ淴ɑ?", "httpHeaders": [ { - "name": "362", - "value": "363" + "name": "367", + "value": "368" } ] }, "tcpSocket": { - "port": "364", - "host": "365" + "port": "369", + "host": "370" } }, "preStop": { "exec": { "command": [ - "366" + "371" ] }, "httpGet": { - "path": "367", - "port": -835196821, - "host": "368", - "scheme": "'蠨磼O_h盌3+Œ9两@8", + "path": "372", + "port": 71524977, + "host": "373", + "scheme": "鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷", "httpHeaders": [ { - "name": "369", - "value": "370" + "name": "374", + "value": "375" } ] }, "tcpSocket": { - "port": -130408357, - "host": "371" + "port": -565041796, + "host": "376" } } }, - "terminationMessagePath": "372", - "terminationMessagePolicy": "讪Ă2讅缔m葰賦迾娙ƴ4虵p蓋沥7uP", - "imagePullPolicy": "虀^背遻堣灭ƴɦ燻", + "terminationMessagePath": "377", + "terminationMessagePolicy": "Ƭ婦d", + "imagePullPolicy": "ɧeʫį淓¯", "securityContext": { "capabilities": { "add": [ - "Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh" + "ƛ忀z委\u003e,趐V曡88 u怞荊ù" ], "drop": [ - "颉h" + "8緔Tj§E蓋Cȗä2 ɲ±" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "373", - "role": "374", - "type": "375", - "level": "376" + "user": "378", + "role": "379", + "type": "380", + "level": "381" }, "windowsOptions": { - "gmsaCredentialSpecName": "377", - "gmsaCredentialSpec": "378", - "runAsUserName": "379" + "gmsaCredentialSpecName": "382", + "gmsaCredentialSpec": "383", + "runAsUserName": "384" }, - "runAsUser": -6458893750559270292, - "runAsGroup": 4010419783586555910, - "runAsNonRoot": true, + "runAsUser": -4564863616644509171, + "runAsGroup": -7297536356638221066, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "殚篎3o8[y", + "procMount": "Ş襵樞úʥ銀", "seccompProfile": { - "type": "t(ȗŜŲ\u0026洪y儕lmòɻŶJ詢QǾɁ", - "localhostProfile": "380" + "type": "ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧", + "localhostProfile": "385" } }, "stdin": true, - "stdinOnce": true, "tty": true, - "targetContainerName": "381" + "targetContainerName": "386" } ], - "restartPolicy": "鯇ɀ魒Ð扬=惍EʦŊ", - "terminationGracePeriodSeconds": 6429479287377373080, - "activeDeadlineSeconds": -9181673998572382321, - "dnsPolicy": "ȃ$|gɳ礬.b屏", + "restartPolicy": "鹚蝉茲ʛ饊", + "terminationGracePeriodSeconds": 1736985756995615785, + "activeDeadlineSeconds": -1284119655860768065, + "dnsPolicy": "錏嬮#ʐ", "nodeSelector": { - "382": "383" + "387": "388" }, - "serviceAccountName": "384", - "serviceAccount": "385", + "serviceAccountName": "389", + "serviceAccount": "390", "automountServiceAccountToken": true, - "nodeName": "386", - "hostNetwork": true, + "nodeName": "391", "hostPID": true, + "hostIPC": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "387", - "role": "388", - "type": "389", - "level": "390" + "user": "392", + "role": "393", + "type": "394", + "level": "395" }, "windowsOptions": { - "gmsaCredentialSpecName": "391", - "gmsaCredentialSpec": "392", - "runAsUserName": "393" + "gmsaCredentialSpecName": "396", + "gmsaCredentialSpec": "397", + "runAsUserName": "398" }, - "runAsUser": 7375851700105205526, - "runAsGroup": -8471243268942862734, + "runAsUser": -4904722847506013622, + "runAsGroup": 6465579957265382985, "runAsNonRoot": false, "supplementalGroups": [ - 6241883428430393253 + -981432507446869083 ], - "fsGroup": 4174818639540616638, + "fsGroup": -1867959832193971598, "sysctls": [ { - "name": "394", - "value": "395" + "name": "399", + "value": "400" } ], - "fsGroupChangePolicy": "趐V曡88 ", + "fsGroupChangePolicy": "ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!", "seccompProfile": { - "type": "怞荊ù灹8緔Tj", - "localhostProfile": "396" + "type": "`翾'ųŎ群E牬庘颮6(|ǖû", + "localhostProfile": "401" } }, "imagePullSecrets": [ { - "name": "397" + "name": "402" } ], - "hostname": "398", - "subdomain": "399", + "hostname": "403", + "subdomain": "404", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1265,19 +1274,19 @@ { "matchExpressions": [ { - "key": "400", - "operator": "ƫZɀȩ愉", + "key": "405", + "operator": "UǷ坒", "values": [ - "401" + "406" ] } ], "matchFields": [ { - "key": "402", - "operator": "m嵘厶sȰÖ埡ÆɰŞ襵樞", + "key": "407", + "operator": "", "values": [ - "403" + "408" ] } ] @@ -1286,23 +1295,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 2082229073, + "weight": -1280563546, "preference": { "matchExpressions": [ { - "key": "404", - "operator": "ƨɤ血x柱栦阫Ƈʥ椹", + "key": "409", + "operator": "Mɮ6)", "values": [ - "405" + "410" ] } ], "matchFields": [ { - "key": "406", - "operator": "_", + "key": "411", + "operator": "杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾", "values": [ - "407" + "412" ] } ] @@ -1315,33 +1324,30 @@ { "labelSelector": { "matchLabels": { - "3--51": "h-K5y_AzOBW.9oE9_6.-v" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4", - "operator": "In", + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", "values": [ - "S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7" + "VT3sn-0_.i__a.O2G_J" ] } ] }, "namespaces": [ - "414" + "419" ], - "topologyKey": "415", + "topologyKey": "420", "namespaceSelector": { "matchLabels": { - "j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp": "H_.39g_.--_-_ve5.m_2_--XZ-x.__.M" + "410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g": "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w" }, "matchExpressions": [ { - "key": "Pw_-r75--_-A-oQ", - "operator": "NotIn", - "values": [ - "3i__a.O2G_-_K-.03.mp.-10k" - ] + "key": "r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT", + "operator": "DoesNotExist" } ] } @@ -1349,30 +1355,33 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 256213209, + "weight": -2118597352, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z": "i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ" + "il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt": "CRT.0z-oe.G79.3bU_._nV34G._--u..9" }, "matchExpressions": [ { - "key": "7Pn-W23-_.z_.._s--_F-BR-.h_-2-s", - "operator": "Exists" + "key": "n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9", + "operator": "NotIn", + "values": [ + "f8k" + ] } ] }, "namespaces": [ - "428" + "433" ], - "topologyKey": "429", + "topologyKey": "434", "namespaceSelector": { "matchLabels": { - "2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t": "V._nV34GH" + "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp": "5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7" }, "matchExpressions": [ { - "key": "9105-4_ed-0-i_zZsY_o8t5Vl6_..C", + "key": "27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y", "operator": "DoesNotExist" } ] @@ -1386,33 +1395,30 @@ { "labelSelector": { "matchLabels": { - "q0o.0C_gV.9_G-.-z1YH": "b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA" + "Y3o_V-w._-0d__7.81_-._-8": "9._._a-.N.__-_._.3l-_86u" }, "matchExpressions": [ { - "key": "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp", + "key": "c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs", "operator": "NotIn", "values": [ - "MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg" + "B.3R6-.7Bf8GA--__A7r.8U.V_p6c" ] } ] }, "namespaces": [ - "442" + "447" ], - "topologyKey": "443", + "topologyKey": "448", "namespaceSelector": { "matchLabels": { - "4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T": "P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8" + "x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51": "m06jVZu" }, "matchExpressions": [ { - "key": "0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP", - "operator": "In", - "values": [ - "396h8.G__B3" - ] + "key": "N-._M5..-N_H_55..--E3_2D-1DW_o", + "operator": "Exists" } ] } @@ -1420,31 +1426,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1856144088, + "weight": 1943011795, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Q-.-.g-_Z_-nSLq": "4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3" + "j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz": "3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v" }, "matchExpressions": [ { - "key": "3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5", - "operator": "Exists" + "key": "x3___-..f5-6x-_-o_6O_If-5_-_U", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "456" + "461" ], - "topologyKey": "457", + "topologyKey": "462", "namespaceSelector": { "matchLabels": { - "2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6": "px_0-.mJe__.B-cd2_4" + "P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h": "4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP" }, "matchExpressions": [ { - "key": "1s._K9-.AJ-_8--___b____03_6.K8lY", - "operator": "Exists" + "key": "aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7", + "operator": "NotIn", + "values": [ + "9-.66hcB.rTt7bm9I.-..q-n" + ] } ] } @@ -1453,99 +1462,99 @@ ] } }, - "schedulerName": "464", + "schedulerName": "469", "tolerations": [ { - "key": "465", - "operator": "0yVA嬂刲;牆詒ĸąs", - "value": "466", - "effect": "kx-餌勀奷Ŏ", - "tolerationSeconds": -9038755672632113093 + "key": "470", + "operator": "杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]", + "value": "471", + "effect": "ɮ-nʣž吞Ƞ唄®窂爪", + "tolerationSeconds": -5154627301352060136 } ], "hostAliases": [ { - "ip": "467", + "ip": "472", "hostnames": [ - "468" + "473" ] } ], - "priorityClassName": "469", - "priority": -1133320634, + "priorityClassName": "474", + "priority": -860768401, "dnsConfig": { "nameservers": [ - "470" + "475" ], "searches": [ - "471" + "476" ], "options": [ { - "name": "472", - "value": "473" + "name": "477", + "value": "478" } ] }, "readinessGates": [ { - "conditionType": "į" + "conditionType": "@.ȇʟ" } ], - "runtimeClassName": "474", - "enableServiceLinks": true, - "preemptionPolicy": "Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ", + "runtimeClassName": "479", + "enableServiceLinks": false, + "preemptionPolicy": "", "overhead": { - "k_": "725" + "": "359" }, "topologySpreadConstraints": [ { - "maxSkew": -2046521037, - "topologyKey": "475", - "whenUnsatisfiable": "\"T#sM網m", + "maxSkew": -2013945465, + "topologyKey": "480", + "whenUnsatisfiable": "½ǩ ", "labelSelector": { "matchLabels": { - "3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5": "019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6" + "9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG": "4n" }, "matchExpressions": [ { - "key": "B.rTt7bm9I.-..q-F-.__ck", - "operator": "DoesNotExist" + "key": "6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q", + "operator": "Exists" } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } }, "updateStrategy": { - "type": "周藢烡Z树Ȁ謁", + "type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": -59186930, - "revisionHistoryLimit": -1552013182 + "minReadySeconds": 1467929320, + "revisionHistoryLimit": -1098193709 }, "status": { - "currentNumberScheduled": 854102661, - "numberMisscheduled": -1489341847, - "desiredNumberScheduled": -753344268, - "numberReady": -524542843, - "observedGeneration": -5582776069361093393, - "updatedNumberScheduled": -194384924, - "numberAvailable": -1758862804, - "numberUnavailable": -78446609, - "collisionCount": -730503981, + "currentNumberScheduled": 2090664533, + "numberMisscheduled": -1371816595, + "desiredNumberScheduled": 1219820375, + "numberReady": -788475912, + "observedGeneration": 6637463221525448952, + "updatedNumberScheduled": -1684048223, + "numberAvailable": 16994744, + "numberUnavailable": 340429479, + "collisionCount": 1177227691, "conditions": [ { - "type": "傢z¦Ā竚ĐȌƨǴ叆ĄD輷東t½", - "status": "n坾\u0026Pɫ(ʙÆ", - "lastTransitionTime": "2310-01-11T15:23:07Z", - "reason": "482", - "message": "483" + "type": "ôD齆O#ȞM\u003c²彾Ǟʈɐ", + "status": "盧ŶbșʬÇ[輚趞", + "lastTransitionTime": "2205-11-05T22:21:51Z", + "reason": "487", + "message": "488" } ] } 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 562695bbffa5..f9ec76fc762f 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 f570b5c11637..0e5ca62f5e61 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 @@ -30,8 +30,8 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: -59186930 - revisionHistoryLimit: -1552013182 + minReadySeconds: 1467929320 + revisionHistoryLimit: -1098193709 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 @@ -71,487 +71,491 @@ spec: selfLink: "28" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -9181673998572382321 + activeDeadlineSeconds: -1284119655860768065 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "404" - operator: ƨɤ血x柱栦阫Ƈʥ椹 + - key: "409" + operator: Mɮ6) values: - - "405" + - "410" matchFields: - - key: "406" - operator: _ + - key: "411" + operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾 values: - - "407" - weight: 2082229073 + - "412" + weight: -1280563546 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "400" - operator: ƫZɀȩ愉 + - key: "405" + operator: UǷ坒 values: - - "401" + - "406" matchFields: - - key: "402" - operator: m嵘厶sȰÖ埡ÆɰŞ襵樞 + - key: "407" + operator: "" values: - - "403" + - "408" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 7Pn-W23-_.z_.._s--_F-BR-.h_-2-s - operator: Exists + - key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9 + operator: NotIn + values: + - f8k matchLabels: - fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z: i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ + il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt: CRT.0z-oe.G79.3bU_._nV34G._--u..9 namespaceSelector: matchExpressions: - - key: 9105-4_ed-0-i_zZsY_o8t5Vl6_..C + - key: 27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y operator: DoesNotExist matchLabels: - 2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t: V._nV34GH + s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp: 5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7 namespaces: - - "428" - topologyKey: "429" - weight: 256213209 + - "433" + topologyKey: "434" + weight: -2118597352 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4 - operator: In + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn values: - - S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7 + - VT3sn-0_.i__a.O2G_J matchLabels: - 3--51: h-K5y_AzOBW.9oE9_6.-v + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaceSelector: matchExpressions: - - key: Pw_-r75--_-A-oQ - operator: NotIn - values: - - 3i__a.O2G_-_K-.03.mp.-10k + - key: r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT + operator: DoesNotExist matchLabels: - j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp: H_.39g_.--_-_ve5.m_2_--XZ-x.__.M + 410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g: 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w namespaces: - - "414" - topologyKey: "415" + - "419" + topologyKey: "420" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5 - operator: Exists + - key: x3___-..f5-6x-_-o_6O_If-5_-_U + operator: DoesNotExist matchLabels: - Q-.-.g-_Z_-nSLq: 4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3 + j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz: 3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v namespaceSelector: matchExpressions: - - key: 1s._K9-.AJ-_8--___b____03_6.K8lY - operator: Exists + - key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7 + operator: NotIn + values: + - 9-.66hcB.rTt7bm9I.-..q-n matchLabels: - 2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6: px_0-.mJe__.B-cd2_4 + P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h: 4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP namespaces: - - "456" - topologyKey: "457" - weight: 1856144088 + - "461" + topologyKey: "462" + weight: 1943011795 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp + - key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs operator: NotIn values: - - MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg + - B.3R6-.7Bf8GA--__A7r.8U.V_p6c matchLabels: - q0o.0C_gV.9_G-.-z1YH: b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA + Y3o_V-w._-0d__7.81_-._-8: 9._._a-.N.__-_._.3l-_86u namespaceSelector: matchExpressions: - - key: 0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP - operator: In - values: - - 396h8.G__B3 + - key: N-._M5..-N_H_55..--E3_2D-1DW_o + operator: Exists matchLabels: - ? 4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T - : P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8 + x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51: m06jVZu namespaces: - - "442" - topologyKey: "443" + - "447" + topologyKey: "448" automountServiceAccountToken: true containers: - args: - - "246" + - "250" command: - - "245" + - "249" env: - - name: "253" - value: "254" + - name: "257" + value: "258" valueFrom: configMapKeyRef: - key: "260" - name: "259" + key: "264" + name: "263" optional: true fieldRef: - apiVersion: "255" - fieldPath: "256" + apiVersion: "259" + fieldPath: "260" resourceFieldRef: - containerName: "257" - divisor: "516" - resource: "258" + containerName: "261" + divisor: "293" + resource: "262" secretKeyRef: - key: "262" - name: "261" - optional: true + key: "266" + name: "265" + optional: false envFrom: - configMapRef: - name: "251" + name: "255" optional: false - prefix: "250" + prefix: "254" secretRef: - name: "252" - optional: true - image: "244" - imagePullPolicy: 腂ǂǚŜEuEy + name: "256" + optional: false + image: "248" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "289" + - "294" httpGet: - host: "292" + host: "296" httpHeaders: - - name: "293" - value: "294" - path: "290" - port: "291" - scheme: 若`l} + - name: "297" + value: "298" + path: "295" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "309" - gmsaCredentialSpecName: "308" - runAsUserName: "310" + gmsaCredentialSpec: "315" + gmsaCredentialSpecName: "314" + runAsUserName: "316" startupProbe: exec: command: - - "282" - failureThreshold: 65094252 + - "287" + failureThreshold: 1447314009 httpGet: - host: "285" + host: "290" httpHeaders: - - name: "286" - value: "287" - path: "283" - port: "284" - scheme: ɜ瞍阎lğ Ņ#耗Ǚ( - initialDelaySeconds: -1934305215 - periodSeconds: 875971520 - successThreshold: 161338049 + - name: "291" + value: "292" + path: "288" + port: "289" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "288" - port: 317211081 - timeoutSeconds: -655359985 - stdinOnce: true - terminationMessagePath: "303" - terminationMessagePolicy: ɼ搳ǭ濑箨ʨIk( + host: "293" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + terminationMessagePath: "309" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "268" - name: "267" + - devicePath: "272" + name: "271" volumeMounts: - - mountPath: "264" - mountPropagation: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ - name: "263" + - mountPath: "268" + mountPropagation: ʠɜ瞍阎lğ Ņ + name: "267" readOnly: true - subPath: "265" - subPathExpr: "266" - workingDir: "247" + subPath: "269" + subPathExpr: "270" + workingDir: "251" dnsConfig: nameservers: - - "470" + - "475" options: - - name: "472" - value: "473" + - name: "477" + value: "478" searches: - - "471" - dnsPolicy: ȃ$|gɳ礬.b屏 - enableServiceLinks: true + - "476" + dnsPolicy: 錏嬮#ʐ + enableServiceLinks: false ephemeralContainers: - args: - - "315" + - "321" command: - - "314" + - "320" env: - - name: "322" - value: "323" + - name: "328" + value: "329" valueFrom: configMapKeyRef: - key: "329" - name: "328" - optional: false + key: "335" + name: "334" + optional: true fieldRef: - apiVersion: "324" - fieldPath: "325" + apiVersion: "330" + fieldPath: "331" resourceFieldRef: - containerName: "326" - divisor: "776" - resource: "327" + containerName: "332" + divisor: "684" + resource: "333" secretKeyRef: - key: "331" - name: "330" - optional: false + key: "337" + name: "336" + optional: true envFrom: - configMapRef: - name: "320" + name: "326" optional: true - prefix: "319" + prefix: "325" secretRef: - name: "321" + name: "327" optional: true - image: "313" - imagePullPolicy: 虀^背遻堣灭ƴɦ燻 + image: "319" + imagePullPolicy: ɧeʫį淓¯ lifecycle: postStart: exec: command: - - "359" + - "364" httpGet: - host: "361" + host: "366" httpHeaders: - - name: "362" - value: "363" - path: "360" - port: -839925309 - scheme: 歹s梊ɥʋ + - name: "367" + value: "368" + path: "365" + port: -1460652193 + scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ? tcpSocket: - host: "365" - port: "364" + host: "370" + port: "369" preStop: exec: command: - - "366" + - "371" httpGet: - host: "368" + host: "373" httpHeaders: - - name: "369" - value: "370" - path: "367" - port: -835196821 - scheme: '''蠨磼O_h盌3+Œ9两@8' + - name: "374" + value: "375" + path: "372" + port: 71524977 + scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷 tcpSocket: - host: "371" - port: -130408357 + host: "376" + port: -565041796 livenessProbe: exec: command: - - "338" - failureThreshold: 1017403804 + - "344" + failureThreshold: 1587036035 httpGet: - host: "340" + host: "346" httpHeaders: - - name: "341" - value: "342" - path: "339" - port: -1703472232 - scheme: ɎƺL肄$鬬$矐_敕ű嵞嬯t{Eɾ敹Ȯ - initialDelaySeconds: -1726456869 - periodSeconds: 789384689 - successThreshold: 436796816 + - name: "347" + value: "348" + path: "345" + port: -121675052 + scheme: W#ļǹʅŚO虀^ + initialDelaySeconds: -1959891996 + periodSeconds: 1475033091 + successThreshold: 1782790310 tcpSocket: - host: "344" - port: "343" - timeoutSeconds: 892837330 - name: "312" + host: "350" + port: "349" + terminationGracePeriodSeconds: 7560036535013464461 + timeoutSeconds: -1442230895 + name: "318" ports: - - containerPort: -902839620 - hostIP: "318" - hostPort: -1617422199 - name: "317" - protocol: 縆łƑ[澔槃JŵǤ桒ɴ鉂W + - containerPort: -651405950 + hostIP: "324" + hostPort: 1805682547 + name: "323" + protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07 readinessProbe: exec: command: - - "345" - failureThreshold: -1836690542 + - "351" + failureThreshold: 408029351 httpGet: - host: "347" + host: "353" httpHeaders: - - name: "348" - value: "349" - path: "346" - port: 1290315514 - scheme: 廤 - initialDelaySeconds: 307856269 - periodSeconds: 492351478 - successThreshold: 983624601 + - name: "354" + value: "355" + path: "352" + port: -1744546613 + scheme: ʓɻŊ + initialDelaySeconds: 1586122127 + periodSeconds: 781203691 + successThreshold: -216440055 tcpSocket: - host: "351" - port: "350" - timeoutSeconds: -1072116268 + host: "356" + port: -259047269 + terminationGracePeriodSeconds: 5450105809027610853 + timeoutSeconds: -1813456856 resources: limits: - ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«: "274" + 蠨磼O_h盌3+Œ9两@8Byß: "111" requests: - 仁: "342" + ɃŒ: "451" securityContext: allowPrivilegeEscalation: true capabilities: add: - - Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh + - ƛ忀z委>,趐V曡88 u怞荊ù drop: - - 颉h - privileged: false - procMount: 殚篎3o8[y + - 8緔Tj§E蓋Cȗä2 ɲ± + privileged: true + procMount: Ş襵樞úʥ銀 readOnlyRootFilesystem: true - runAsGroup: 4010419783586555910 - runAsNonRoot: true - runAsUser: -6458893750559270292 + runAsGroup: -7297536356638221066 + runAsNonRoot: false + runAsUser: -4564863616644509171 seLinuxOptions: - level: "376" - role: "374" - type: "375" - user: "373" + level: "381" + role: "379" + type: "380" + user: "378" seccompProfile: - localhostProfile: "380" - type: t(ȗŜŲ&洪y儕lmòɻŶJ詢QǾɁ + localhostProfile: "385" + type: ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧 windowsOptions: - gmsaCredentialSpec: "378" - gmsaCredentialSpecName: "377" - runAsUserName: "379" + gmsaCredentialSpec: "383" + gmsaCredentialSpecName: "382" + runAsUserName: "384" startupProbe: exec: command: - - "352" - failureThreshold: -1238148960 + - "357" + failureThreshold: 902204699 httpGet: - host: "355" + host: "359" httpHeaders: - - name: "356" - value: "357" - path: "353" - port: "354" - scheme: 職铳s44矕Ƈè*鑏='ʨ|Ǔ - initialDelaySeconds: -1333877527 - periodSeconds: 1972286304 - successThreshold: -2067214763 + - name: "360" + value: "361" + path: "358" + port: -5241849 + scheme: '}颉hȱɷȰW' + initialDelaySeconds: 636493142 + periodSeconds: 420595064 + successThreshold: 1195176401 tcpSocket: - host: "358" - port: 718799934 - timeoutSeconds: -1452767599 + host: "363" + port: "362" + terminationGracePeriodSeconds: 9196919020604133323 + timeoutSeconds: -192358697 stdin: true - stdinOnce: true - targetContainerName: "381" - terminationMessagePath: "372" - terminationMessagePolicy: 讪Ă2讅缔m葰賦迾娙ƴ4虵p蓋沥7uP + targetContainerName: "386" + terminationMessagePath: "377" + terminationMessagePolicy: Ƭ婦d tty: true volumeDevices: - - devicePath: "337" - name: "336" + - devicePath: "343" + name: "342" volumeMounts: - - mountPath: "333" - mountPropagation: l敷斢杧ż鯀1'鸔ɧWǘ炙B - name: "332" - subPath: "334" - subPathExpr: "335" - workingDir: "316" + - mountPath: "339" + mountPropagation: 葰賦 + name: "338" + readOnly: true + subPath: "340" + subPathExpr: "341" + workingDir: "322" hostAliases: - hostnames: - - "468" - ip: "467" - hostNetwork: true + - "473" + ip: "472" + hostIPC: true hostPID: true - hostname: "398" + hostname: "403" imagePullSecrets: - - name: "397" + - name: "402" initContainers: - args: - "178" @@ -585,38 +589,38 @@ spec: name: "184" optional: true image: "176" - imagePullPolicy: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' + imagePullPolicy: ǵɐ鰥Z lifecycle: postStart: exec: command: - - "221" + - "222" httpGet: - host: "224" + host: "225" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 偯J僳徥淳4 + - name: "226" + value: "227" + path: "223" + port: "224" + scheme: 鰔澝qV訆ƎżŧL²sNƗ¸ tcpSocket: - host: "227" - port: -1421951296 + host: "229" + port: "228" preStop: exec: command: - - "228" + - "230" httpGet: - host: "230" + host: "233" httpHeaders: - - name: "231" - value: "232" - path: "229" - port: -1856061695 - scheme: Œɥ颶妧Ö闊 鰔澝qV訆Ǝ + - name: "234" + value: "235" + path: "231" + port: "232" + scheme: δ摖 tcpSocket: - host: "233" - port: 509813083 + host: "237" + port: "236" livenessProbe: exec: command: @@ -636,6 +640,7 @@ spec: tcpSocket: host: "207" port: -1761398388 + terminationGracePeriodSeconds: 2001337664780390084 timeoutSeconds: -438588982 name: "175" ports: @@ -648,22 +653,23 @@ spec: exec: command: - "208" - failureThreshold: 1533365989 + failureThreshold: -1314967760 httpGet: host: "210" httpHeaders: - name: "211" value: "212" path: "209" - port: 1714588921 - scheme: Ư貾 - initialDelaySeconds: -552281772 - periodSeconds: 383015301 - successThreshold: -1717997927 + port: -614161319 + scheme: Ȩ<6鄰簳°Ļǟi& + initialDelaySeconds: 233282513 + periodSeconds: 1313273370 + successThreshold: -1296830577 tcpSocket: host: "214" port: "213" - timeoutSeconds: -677617960 + terminationGracePeriodSeconds: 5043322816247327651 + timeoutSeconds: -518330919 resources: limits: 朷Ǝ膯ljVX1虊谇: "279" @@ -673,48 +679,50 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - "" + - DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ drop: - - Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + - H鯂²静ƲǦŐnj汰8ŕİi騎C"6 privileged: false - procMount: 丆 - readOnlyRootFilesystem: true - runAsGroup: -545284475172904979 - runAsNonRoot: false - runAsUser: 5431518803727886665 + procMount: 弢ȹ均i绝5哇芆斩ìh4Ɋ + readOnlyRootFilesystem: false + runAsGroup: 6901713258562004024 + runAsNonRoot: true + runAsUser: 9148233193771851687 seLinuxOptions: - level: "238" - role: "236" - type: "237" - user: "235" + level: "242" + role: "240" + type: "241" + user: "239" seccompProfile: - localhostProfile: "242" - type: ²Ŏ)/灩聋3趐囨 + localhostProfile: "246" + type: Ȗ|ʐşƧ諔迮ƙIJ嘢4 windowsOptions: - gmsaCredentialSpec: "240" - gmsaCredentialSpecName: "239" - runAsUserName: "241" + gmsaCredentialSpec: "244" + gmsaCredentialSpecName: "243" + runAsUserName: "245" startupProbe: exec: command: - "215" - failureThreshold: -1928016742 + failureThreshold: 1909548849 httpGet: - host: "217" + host: "218" httpHeaders: - - name: "218" - value: "219" + - name: "219" + value: "220" path: "216" - port: -2121788927 - initialDelaySeconds: 1313273370 - periodSeconds: -1314967760 - successThreshold: 1174240097 + port: "217" + scheme: 队偯J僳徥淳4揻 + initialDelaySeconds: -1244119841 + periodSeconds: 348370746 + successThreshold: 468369166 tcpSocket: - host: "220" - port: -518330919 - timeoutSeconds: -1296830577 - terminationMessagePath: "234" - terminationMessagePolicy: ²sNƗ¸g + host: "221" + port: 878005329 + terminationGracePeriodSeconds: 6410850623145248813 + timeoutSeconds: 1235694147 + terminationMessagePath: "238" + terminationMessagePolicy: _<ǬëJ橈'琕鶫:顇ə娯Ȱ volumeDevices: - devicePath: "200" name: "199" @@ -725,64 +733,64 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "386" + nodeName: "391" nodeSelector: - "382": "383" + "387": "388" overhead: - k_: "725" - preemptionPolicy: Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ - priority: -1133320634 - priorityClassName: "469" + "": "359" + preemptionPolicy: "" + priority: -860768401 + priorityClassName: "474" readinessGates: - - conditionType: į - restartPolicy: 鯇ɀ魒Ð扬=惍EʦŊ - runtimeClassName: "474" - schedulerName: "464" + - conditionType: '@.ȇʟ' + restartPolicy: 鹚蝉茲ʛ饊 + runtimeClassName: "479" + schedulerName: "469" securityContext: - fsGroup: 4174818639540616638 - fsGroupChangePolicy: '趐V曡88 ' - runAsGroup: -8471243268942862734 + fsGroup: -1867959832193971598 + fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾! + runAsGroup: 6465579957265382985 runAsNonRoot: false - runAsUser: 7375851700105205526 + runAsUser: -4904722847506013622 seLinuxOptions: - level: "390" - role: "388" - type: "389" - user: "387" + level: "395" + role: "393" + type: "394" + user: "392" seccompProfile: - localhostProfile: "396" - type: 怞荊ù灹8緔Tj + localhostProfile: "401" + type: '`翾''ųŎ群E牬庘颮6(|ǖû' supplementalGroups: - - 6241883428430393253 + - -981432507446869083 sysctls: - - name: "394" - value: "395" + - name: "399" + value: "400" windowsOptions: - gmsaCredentialSpec: "392" - gmsaCredentialSpecName: "391" - runAsUserName: "393" - serviceAccount: "385" - serviceAccountName: "384" - setHostnameAsFQDN: false + gmsaCredentialSpec: "397" + gmsaCredentialSpecName: "396" + runAsUserName: "398" + serviceAccount: "390" + serviceAccountName: "389" + setHostnameAsFQDN: true shareProcessNamespace: false - subdomain: "399" - terminationGracePeriodSeconds: 6429479287377373080 + subdomain: "404" + terminationGracePeriodSeconds: 1736985756995615785 tolerations: - - effect: kx-餌勀奷Ŏ - key: "465" - operator: 0yVA嬂刲;牆詒ĸąs - tolerationSeconds: -9038755672632113093 - value: "466" + - effect: ɮ-nʣž吞Ƞ唄®窂爪 + key: "470" + operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ] + tolerationSeconds: -5154627301352060136 + value: "471" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: B.rTt7bm9I.-..q-F-.__ck - operator: DoesNotExist + - key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q + operator: Exists matchLabels: - 3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5: 019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6 - maxSkew: -2046521037 - topologyKey: "475" - whenUnsatisfiable: '"T#sM網m' + 9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG: 4n + maxSkew: -2013945465 + topologyKey: "480" + whenUnsatisfiable: '½ǩ ' volumes: - awsElasticBlockStore: fsType: "47" @@ -1038,20 +1046,20 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 周藢烡Z树Ȁ謁 + type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ status: - collisionCount: -730503981 + collisionCount: 1177227691 conditions: - - lastTransitionTime: "2310-01-11T15:23:07Z" - message: "483" - reason: "482" - status: n坾&Pɫ(ʙÆ - type: 傢z¦Ā竚ĐȌƨǴ叆ĄD輷東t½ - currentNumberScheduled: 854102661 - desiredNumberScheduled: -753344268 - numberAvailable: -1758862804 - numberMisscheduled: -1489341847 - numberReady: -524542843 - numberUnavailable: -78446609 - observedGeneration: -5582776069361093393 - updatedNumberScheduled: -194384924 + - lastTransitionTime: "2205-11-05T22:21:51Z" + message: "488" + reason: "487" + status: 盧ŶbșʬÇ[輚趞 + type: ôD齆O#ȞM<²彾Ǟʈɐ + currentNumberScheduled: 2090664533 + desiredNumberScheduled: 1219820375 + numberAvailable: 16994744 + numberMisscheduled: -1371816595 + numberReady: -788475912 + numberUnavailable: 340429479 + observedGeneration: 6637463221525448952 + updatedNumberScheduled: -1684048223 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 a7bf63be15ef..dc6084351acc 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,103 +1469,103 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "strategy": { - "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", + "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 2115665292, - "revisionHistoryLimit": 237456757, - "progressDeadlineSeconds": -1402499324 + "minReadySeconds": 1559072561, + "revisionHistoryLimit": -629510776, + "progressDeadlineSeconds": -212409426 }, "status": { - "observedGeneration": -8619941635428506201, - "replicas": -380889943, - "updatedReplicas": 466048730, - "readyReplicas": -601845829, - "availableReplicas": 426527089, - "unavailableReplicas": -1890403855, + "observedGeneration": -2967151415957453677, + "replicas": 1329525670, + "updatedReplicas": -1169406076, + "readyReplicas": 1162680985, + "availableReplicas": 171558604, + "unavailableReplicas": -161888815, "conditions": [ { - "type": "绰爪qĖĖȠ姓ȇ\u003e尪璎妽", - "status": "ĈȖ董缞濪葷cŲ", - "lastUpdateTime": "1999-05-06T18:42:43Z", - "lastTransitionTime": "2109-09-25T13:37:56Z", - "reason": "487", - "message": "488" + "type": "?鳢.ǀŭ瘢颦", + "status": "氞唬蹵ɥeȿĦ`垨Džɞ堹ǖ*Oɑ埩", + "lastUpdateTime": "2346-11-18T09:51:55Z", + "lastTransitionTime": "2391-11-11T11:52:22Z", + "reason": "485", + "message": "486" } ], - "collisionCount": -2046786896 + "collisionCount": -1889018254 } } \ 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 d922af791bc3..c362d4f632ab 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 9e5b3fc3bd03..95ab8caf52e1 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 @@ -30,10 +30,10 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 2115665292 - progressDeadlineSeconds: -1402499324 + minReadySeconds: 1559072561 + progressDeadlineSeconds: -212409426 replicas: 896585016 - revisionHistoryLimit: 237456757 + revisionHistoryLimit: -629510776 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 @@ -44,7 +44,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj + type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& template: metadata: annotations: @@ -76,487 +76,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -590,37 +596,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -640,6 +647,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -652,22 +660,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -677,49 +686,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -732,66 +743,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1046,17 +1057,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: 426527089 - collisionCount: -2046786896 + availableReplicas: 171558604 + collisionCount: -1889018254 conditions: - - lastTransitionTime: "2109-09-25T13:37:56Z" - lastUpdateTime: "1999-05-06T18:42:43Z" - message: "488" - reason: "487" - status: ĈȖ董缞濪葷cŲ - type: 绰爪qĖĖȠ姓ȇ>尪璎妽 - observedGeneration: -8619941635428506201 - readyReplicas: -601845829 - replicas: -380889943 - unavailableReplicas: -1890403855 - updatedReplicas: 466048730 + - lastTransitionTime: "2391-11-11T11:52:22Z" + lastUpdateTime: "2346-11-18T09:51:55Z" + message: "486" + reason: "485" + status: 氞唬蹵ɥeȿĦ`垨Džɞ堹ǖ*Oɑ埩 + type: ?鳢.ǀŭ瘢颦 + observedGeneration: -2967151415957453677 + readyReplicas: 1162680985 + replicas: 1329525670 + unavailableReplicas: -161888815 + updatedReplicas: -1169406076 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 d6fb9d61c9d2..138dcadf4513 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 @@ -555,7 +555,8 @@ "timeoutSeconds": -194343002, "periodSeconds": -850069363, "successThreshold": 918929368, - "failureThreshold": 1016277253 + "failureThreshold": 1016277253, + "terminationGracePeriodSeconds": -8520337362162976488 }, "readinessProbe": { "exec": { @@ -567,7 +568,7 @@ "path": "208", "port": "209", "host": "210", - "scheme": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ", + "scheme": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", "httpHeaders": [ { "name": "211", @@ -576,14 +577,15 @@ ] }, "tcpSocket": { - "port": 1281792166, + "port": 538852927, "host": "213" }, - "initialDelaySeconds": -1934111455, - "timeoutSeconds": 766864314, - "periodSeconds": 1146016612, - "successThreshold": 1495880465, - "failureThreshold": -1032967081 + "initialDelaySeconds": -407545915, + "timeoutSeconds": 902535764, + "periodSeconds": 716842280, + "successThreshold": 1479266199, + "failureThreshold": 163512962, + "terminationGracePeriodSeconds": -8521017368802772029 }, "startupProbe": { "exec": { @@ -593,25 +595,26 @@ }, "httpGet": { "path": "215", - "port": "216", - "host": "217", - "scheme": "ĺɗŹ倗S晒嶗UÐ_ƮA攤", + "port": 1623772781, + "host": "216", + "scheme": "UÐ_ƮA攤/ɸɎ", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -498930176, + "port": "219", "host": "220" }, - "initialDelaySeconds": 1885897314, - "timeoutSeconds": -465677631, - "periodSeconds": 1054858106, - "successThreshold": 232569106, - "failureThreshold": -1150474479 + "initialDelaySeconds": 1054858106, + "timeoutSeconds": 232569106, + "periodSeconds": -1150474479, + "successThreshold": 744319626, + "failureThreshold": -2107743490, + "terminationGracePeriodSeconds": 8569885835306406695 }, "lifecycle": { "postStart": { @@ -622,139 +625,139 @@ }, "httpGet": { "path": "222", - "port": "223", - "host": "224", - "scheme": "s3!Zɾģ毋", + "port": 896430536, + "host": "223", + "scheme": "罴ņ螡źȰ", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "224", + "value": "225" } ] }, "tcpSocket": { - "port": 391562775, - "host": "227" + "port": 513341278, + "host": "226" } }, "preStop": { "exec": { "command": [ - "228" + "227" ] }, "httpGet": { - "path": "229", - "port": "230", - "host": "231", - "scheme": "ȶ网棊ʢ=wǕɳɷ9Ì", + "path": "228", + "port": 1451056156, + "host": "229", + "scheme": "uʎȺ眖R#", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": -1364571630, - "host": "234" + "port": "232", + "host": "233" } } }, - "terminationMessagePath": "235", - "terminationMessagePolicy": "ɖ緕ȚÍ勅跦Opwǩ", - "imagePullPolicy": "輓Ɔȓ蹣ɐǛv+8", + "terminationMessagePath": "234", + "terminationMessagePolicy": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", + "imagePullPolicy": "1ØœȠƬQg鄠", "securityContext": { "capabilities": { "add": [ - "军g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" + "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ" ], "drop": [ - "" + "W:ĸ輦唊#v" ] }, "privileged": false, "seLinuxOptions": { - "user": "236", - "role": "237", - "type": "238", - "level": "239" + "user": "235", + "role": "236", + "type": "237", + "level": "238" }, "windowsOptions": { - "gmsaCredentialSpecName": "240", - "gmsaCredentialSpec": "241", - "runAsUserName": "242" + "gmsaCredentialSpecName": "239", + "gmsaCredentialSpec": "240", + "runAsUserName": "241" }, - "runAsUser": -5821728037462880994, - "runAsGroup": 4468469649483616089, - "runAsNonRoot": false, + "runAsUser": 1946087648860511217, + "runAsGroup": 8839567045362091290, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "碧闳ȩr", + "allowPrivilegeEscalation": true, + "procMount": "Ÿ8T 苧yñKJɐ扵", "seccompProfile": { - "type": "", - "localhostProfile": "243" + "type": "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞", + "localhostProfile": "242" } }, - "stdinOnce": true, + "stdin": true, "tty": true } ], "containers": [ { - "name": "244", - "image": "245", + "name": "243", + "image": "244", "command": [ - "246" + "245" ], "args": [ - "247" + "246" ], - "workingDir": "248", + "workingDir": "247", "ports": [ { - "name": "249", - "hostPort": -888240870, - "containerPort": 508868877, - "protocol": "岼昕ĬÇó藢xɮĵȑ6L*Z", - "hostIP": "250" + "name": "248", + "hostPort": 465972736, + "containerPort": -1784617397, + "protocol": "Ƭƶ氩Ȩ\u003c6", + "hostIP": "249" } ], "envFrom": [ { - "prefix": "251", + "prefix": "250", "configMapRef": { - "name": "252", + "name": "251", "optional": false }, "secretRef": { - "name": "253", - "optional": false + "name": "252", + "optional": true } } ], "env": [ { - "name": "254", - "value": "255", + "name": "253", + "value": "254", "valueFrom": { "fieldRef": { - "apiVersion": "256", - "fieldPath": "257" + "apiVersion": "255", + "fieldPath": "256" }, "resourceFieldRef": { - "containerName": "258", - "resource": "259", - "divisor": "774" + "containerName": "257", + "resource": "258", + "divisor": "9" }, "configMapKeyRef": { - "name": "260", - "key": "261", - "optional": false + "name": "259", + "key": "260", + "optional": true }, "secretKeyRef": { - "name": "262", - "key": "263", + "name": "261", + "key": "262", "optional": false } } @@ -762,254 +765,255 @@ ], "resources": { "limits": { - "$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ": "393" + "lNKƙ順\\E¦队偯J僳徥淳": "93" }, "requests": { - "\u003c6": "446" + "媀瓄\u0026翜舞拉Œɥ颶妧Ö闊": "472" } }, "volumeMounts": [ { - "name": "264", - "readOnly": true, - "mountPath": "265", - "subPath": "266", - "mountPropagation": "翑0展}硐庰%皧V垾", - "subPathExpr": "267" + "name": "263", + "mountPath": "264", + "subPath": "265", + "mountPropagation": "ĠM蘇KŅ/»頸+SÄ蚃", + "subPathExpr": "266" } ], "volumeDevices": [ { - "name": "268", - "devicePath": "269" + "name": "267", + "devicePath": "268" } ], "livenessProbe": { "exec": { "command": [ - "270" + "269" ] }, "httpGet": { - "path": "271", - "port": "272", - "host": "273", - "scheme": "E¦", + "path": "270", + "port": -1468297794, + "host": "271", + "scheme": "磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": "274", + "host": "275" }, - "initialDelaySeconds": 1868887309, - "timeoutSeconds": -528664199, - "periodSeconds": -316996074, - "successThreshold": 1933968533, - "failureThreshold": 549215478 + "initialDelaySeconds": 1308698792, + "timeoutSeconds": 1401790459, + "periodSeconds": -934378634, + "successThreshold": -1453143878, + "failureThreshold": -1129218498, + "terminationGracePeriodSeconds": 2471155705902100229 }, "readinessProbe": { "exec": { "command": [ - "278" + "276" ] }, "httpGet": { - "path": "279", - "port": -374766088, - "host": "280", - "scheme": "翜舞拉Œ", + "path": "277", + "port": -614098868, + "host": "278", + "scheme": "ȗÔÂɘɢ", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "279", + "value": "280" } ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": 802134138, + "host": "281" }, - "initialDelaySeconds": -190183379, - "timeoutSeconds": -940334911, - "periodSeconds": -341287812, - "successThreshold": 2030115750, - "failureThreshold": 1847163341 + "initialDelaySeconds": -942399354, + "timeoutSeconds": 1264624019, + "periodSeconds": -1803854120, + "successThreshold": -1412915219, + "failureThreshold": 323903711, + "terminationGracePeriodSeconds": -9192251189672401053 }, "startupProbe": { "exec": { "command": [ - "285" + "282" ] }, "httpGet": { - "path": "286", - "port": 567263590, - "host": "287", - "scheme": "KŅ/", + "path": "283", + "port": -992558278, + "host": "284", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "288", - "value": "289" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "290", - "host": "291" + "port": -402384013, + "host": "287" }, - "initialDelaySeconds": -1894250541, - "timeoutSeconds": 1962818731, - "periodSeconds": 1315054653, - "successThreshold": 711020087, - "failureThreshold": 1103049140 + "initialDelaySeconds": -181601395, + "timeoutSeconds": -617381112, + "periodSeconds": 1851229369, + "successThreshold": -560238386, + "failureThreshold": 1658749995, + "terminationGracePeriodSeconds": -4030490994049395944 }, "lifecycle": { "postStart": { "exec": { "command": [ - "292" + "288" ] }, "httpGet": { - "path": "293", - "port": -2128108224, - "host": "294", - "scheme": "δ摖", + "path": "289", + "port": "290", + "host": "291", + "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "292", + "value": "293" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": 1167615307, + "host": "294" } }, "preStop": { "exec": { "command": [ - "299" + "295" ] }, "httpGet": { - "path": "300", - "port": "301", - "host": "302", + "path": "296", + "port": -115833863, + "host": "297", + "scheme": "ì", "httpHeaders": [ { - "name": "303", - "value": "304" + "name": "298", + "value": "299" } ] }, "tcpSocket": { - "port": "305", - "host": "306" + "port": "300", + "host": "301" } } }, - "terminationMessagePath": "307", - "terminationMessagePolicy": "ƺ蛜6Ɖ飴ɎiǨź", - "imagePullPolicy": "囌{屿oiɥ嵐sC", + "terminationMessagePath": "302", + "terminationMessagePolicy": "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ", + "imagePullPolicy": "ǚ鍰\\縑ɀ撑¼蠾8餑噭", "securityContext": { "capabilities": { "add": [ - "Ǻ鱎ƙ;Nŕ" + "ņ" ], "drop": [ - "Jih亏yƕ丆録²" + ")DŽ髐njʉBn(fǂ" ] }, "privileged": false, "seLinuxOptions": { - "user": "308", - "role": "309", - "type": "310", - "level": "311" + "user": "303", + "role": "304", + "type": "305", + "level": "306" }, "windowsOptions": { - "gmsaCredentialSpecName": "312", - "gmsaCredentialSpec": "313", - "runAsUserName": "314" + "gmsaCredentialSpecName": "307", + "gmsaCredentialSpec": "308", + "runAsUserName": "309" }, - "runAsUser": -607313695104609402, - "runAsGroup": 2179199799235189619, - "runAsNonRoot": true, + "runAsUser": -6717020695319852049, + "runAsGroup": -495558749504439559, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­", + "procMount": "Ǫʓ)ǂť嗆u", "seccompProfile": { - "type": "ɔ幩še", - "localhostProfile": "315" + "type": "晲T[irȎ3Ĕ\\", + "localhostProfile": "310" } }, - "stdin": true, - "stdinOnce": true, "tty": true } ], "ephemeralContainers": [ { - "name": "316", - "image": "317", + "name": "311", + "image": "312", "command": [ - "318" + "313" ], "args": [ - "319" + "314" ], - "workingDir": "320", + "workingDir": "315", "ports": [ { - "name": "321", - "hostPort": -2113700533, - "containerPort": -2130294761, - "protocol": "pɵ{", - "hostIP": "322" + "name": "316", + "hostPort": -1656699070, + "containerPort": -1918622971, + "protocol": "ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz", + "hostIP": "317" } ], "envFrom": [ { - "prefix": "323", + "prefix": "318", "configMapRef": { - "name": "324", + "name": "319", "optional": true }, "secretRef": { - "name": "325", + "name": "320", "optional": false } } ], "env": [ { - "name": "326", - "value": "327", + "name": "321", + "value": "322", "valueFrom": { "fieldRef": { - "apiVersion": "328", - "fieldPath": "329" + "apiVersion": "323", + "fieldPath": "324" }, "resourceFieldRef": { - "containerName": "330", - "resource": "331", - "divisor": "878" + "containerName": "325", + "resource": "326", + "divisor": "69" }, "configMapKeyRef": { - "name": "332", - "key": "333", + "name": "327", + "key": "328", "optional": true }, "secretKeyRef": { - "name": "334", - "key": "335", + "name": "329", + "key": "330", "optional": false } } @@ -1017,251 +1021,254 @@ ], "resources": { "limits": { - "銆jʒǚ鍰\\縑": "992" + "1b": "328" }, "requests": { - "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ": "400" + "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊": "699" } }, "volumeMounts": [ { - "name": "336", - "mountPath": "337", - "subPath": "338", - "mountPropagation": "(fǂǢ曣ŋayå", - "subPathExpr": "339" + "name": "331", + "readOnly": true, + "mountPath": "332", + "subPath": "333", + "mountPropagation": "Ik(dŊiɢzĮ蛋I", + "subPathExpr": "334" } ], "volumeDevices": [ { - "name": "340", - "devicePath": "341" + "name": "335", + "devicePath": "336" } ], "livenessProbe": { "exec": { "command": [ - "342" + "337" ] }, "httpGet": { - "path": "343", - "port": 1616390418, - "host": "344", - "scheme": "趭(娕uE增猍ǵ x", + "path": "338", + "port": "339", + "host": "340", + "scheme": "ȥ}礤铟怖ý萜Ǖ", "httpHeaders": [ { - "name": "345", - "value": "346" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "347", - "host": "348" + "port": -1088996269, + "host": "343" }, - "initialDelaySeconds": -1320027474, - "timeoutSeconds": -1750169306, - "periodSeconds": 2112112129, - "successThreshold": 528603974, - "failureThreshold": -342387625 + "initialDelaySeconds": -1922458514, + "timeoutSeconds": 1480364858, + "periodSeconds": 692511776, + "successThreshold": -1231653807, + "failureThreshold": -36573584, + "terminationGracePeriodSeconds": -2524837786321986358 }, "readinessProbe": { "exec": { "command": [ - "349" + "344" ] }, "httpGet": { - "path": "350", - "port": "351", - "host": "352", - "scheme": "/Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ", + "path": "345", + "port": 1219644543, + "host": "346", + "scheme": "ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy", "httpHeaders": [ { - "name": "353", - "value": "354" + "name": "347", + "value": "348" } ] }, "tcpSocket": { - "port": "355", - "host": "356" + "port": "349", + "host": "350" }, - "initialDelaySeconds": 2036955392, - "timeoutSeconds": 626243488, - "periodSeconds": -1920304485, - "successThreshold": -1842062977, - "failureThreshold": 1424401373 + "initialDelaySeconds": 652646450, + "timeoutSeconds": 757223010, + "periodSeconds": -1912967242, + "successThreshold": -2106399359, + "failureThreshold": 1443270783, + "terminationGracePeriodSeconds": -4462364494060795190 }, "startupProbe": { "exec": { "command": [ - "357" + "351" ] }, "httpGet": { - "path": "358", - "port": "359", - "host": "360", - "scheme": "æ盪泙若`l}Ñ蠂Ü", + "path": "352", + "port": -902839620, + "host": "353", + "scheme": "縆łƑ[澔槃JŵǤ桒ɴ鉂W", "httpHeaders": [ { - "name": "361", - "value": "362" + "name": "354", + "value": "355" } ] }, "tcpSocket": { - "port": 1388874570, - "host": "363" + "port": "356", + "host": "357" }, - "initialDelaySeconds": 1618861163, - "timeoutSeconds": 413903479, - "periodSeconds": 1708236944, - "successThreshold": -1192140557, - "failureThreshold": 1961354355 + "initialDelaySeconds": -574742201, + "timeoutSeconds": -1182912186, + "periodSeconds": -514169648, + "successThreshold": -1186167291, + "failureThreshold": 64459150, + "terminationGracePeriodSeconds": -4166164136222066963 }, "lifecycle": { "postStart": { "exec": { "command": [ - "364" + "358" ] }, "httpGet": { - "path": "365", - "port": -1347045470, - "host": "366", - "scheme": "¨Ix糂腂ǂǚŜEuEy", + "path": "359", + "port": "360", + "host": "361", + "scheme": "卶滿筇ȟP:/a殆诵H玲鑠ĭ$#", "httpHeaders": [ { - "name": "367", - "value": "368" + "name": "362", + "value": "363" } ] }, "tcpSocket": { - "port": -1945921250, - "host": "369" + "port": "364", + "host": "365" } }, "preStop": { "exec": { "command": [ - "370" + "366" ] }, "httpGet": { - "path": "371", - "port": 1605974497, - "host": "372", - "scheme": "m坊柩劄奼[ƕƑĝ", + "path": "367", + "port": 1791758702, + "host": "368", + "scheme": "tl敷斢杧ż鯀", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "369", + "value": "370" } ] }, "tcpSocket": { - "port": 293042649, - "host": "375" + "port": "371", + "host": "372" } } }, - "terminationMessagePath": "376", - "terminationMessagePolicy": "ǔvÄÚ×p鬷m罂o3ǰ廋i乳'", - "imagePullPolicy": "xƂ9阠", + "terminationMessagePath": "373", + "terminationMessagePolicy": "鸔ɧWǘ炙", + "imagePullPolicy": "ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "[澔槃JŵǤ桒" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "377", - "role": "378", - "type": "379", - "level": "380" + "user": "374", + "role": "375", + "type": "376", + "level": "377" }, "windowsOptions": { - "gmsaCredentialSpecName": "381", - "gmsaCredentialSpec": "382", - "runAsUserName": "383" + "gmsaCredentialSpecName": "378", + "gmsaCredentialSpec": "379", + "runAsUserName": "380" }, - "runAsUser": -122212946149411097, - "runAsGroup": -6534543348401656067, + "runAsUser": 2114633499332155907, + "runAsGroup": -1232960403847883886, "runAsNonRoot": true, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "", + "procMount": "铳s44矕Ƈè*鑏=", "seccompProfile": { - "type": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠", - "localhostProfile": "384" + "type": "ʨ|ǓÓ敆OɈÏ 瞍髃#", + "localhostProfile": "381" } }, - "stdinOnce": true, - "targetContainerName": "385" + "stdin": true, + "tty": true, + "targetContainerName": "382" } ], - "restartPolicy": "S", - "terminationGracePeriodSeconds": 2296052591495331583, - "activeDeadlineSeconds": 4885169856784949611, - "dnsPolicy": "Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "W歹s梊ɥʋăƻ", + "terminationGracePeriodSeconds": 1031455728822209328, + "activeDeadlineSeconds": 579099652389333099, + "dnsPolicy": "'蠨磼O_h盌3+Œ9两@8", "nodeSelector": { - "386": "387" + "383": "384" }, - "serviceAccountName": "388", - "serviceAccount": "389", + "serviceAccountName": "385", + "serviceAccount": "386", "automountServiceAccountToken": true, - "nodeName": "390", + "nodeName": "387", "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "391", - "role": "392", - "type": "393", - "level": "394" + "user": "388", + "role": "389", + "type": "390", + "level": "391" }, "windowsOptions": { - "gmsaCredentialSpecName": "395", - "gmsaCredentialSpec": "396", - "runAsUserName": "397" + "gmsaCredentialSpecName": "392", + "gmsaCredentialSpec": "393", + "runAsUserName": "394" }, - "runAsUser": 711750319800111437, - "runAsGroup": -6445633177475289195, + "runAsUser": 3011215457607075123, + "runAsGroup": -2549376519991319825, "runAsNonRoot": true, "supplementalGroups": [ - -7316357525352987834 + 8667724420266764868 ], - "fsGroup": 7306468936162090894, + "fsGroup": -8322686588708543096, "sysctls": [ { - "name": "398", - "value": "399" + "name": "395", + "value": "396" } ], - "fsGroupChangePolicy": "肄$鬬", + "fsGroupChangePolicy": "4虵p蓋沥7uPƒ", "seccompProfile": { - "type": "矐_", - "localhostProfile": "400" + "type": "", + "localhostProfile": "397" } }, "imagePullSecrets": [ { - "name": "401" + "name": "398" } ], - "hostname": "402", - "subdomain": "403", + "hostname": "399", + "subdomain": "400", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1269,19 +1276,19 @@ { "matchExpressions": [ { - "key": "404", - "operator": "豎穜姰l咑耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌ", + "key": "401", + "operator": "灭ƴɦ燻踸陴Sĕ濦", "values": [ - "405" + "402" ] } ], "matchFields": [ { - "key": "406", - "operator": "柯?B俋¬h`職铳s44矕Ƈ", + "key": "403", + "operator": "筿ɾ", "values": [ - "407" + "404" ] } ] @@ -1290,23 +1297,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -259047269, "preference": { "matchExpressions": [ { - "key": "408", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "405", + "operator": "霎ȃň", "values": [ - "409" + "406" ] } ], "matchFields": [ { - "key": "410", - "operator": "ƒK07曳w", + "key": "407", + "operator": "ʓ滨", "values": [ - "411" + "408" ] } ] @@ -1319,26 +1326,26 @@ { "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" + "KA-._d._.Um.-__0": "5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "3QC1--L--v_Z--ZgC", + "operator": "Exists" } ] }, "namespaces": [ - "418" + "415" ], - "topologyKey": "419", + "topologyKey": "416", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "1rhm-5y--z-0/b17ca-_p-y.eQ9": "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" }, "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", + "key": "7Vz_6.Hz_V_.r_v_._X", "operator": "Exists" } ] @@ -1347,31 +1354,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": 2001693468, "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" + "8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2": "PE..24-O._.v._9-cz.-Y6T4gz" }, "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": "Q_--v-3-BzO5z80n_HtW", + "operator": "NotIn", + "values": [ + "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w" + ] } ] }, "namespaces": [ - "432" + "429" ], - "topologyKey": "433", + "topologyKey": "430", "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" + "f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9": "P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA" }, "matchExpressions": [ { - "key": "C-_20", - "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" + ] } ] } @@ -1384,30 +1397,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6": "pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C" }, "matchExpressions": [ { - "key": "4b699/B9n.2", - "operator": "In", + "key": "T", + "operator": "NotIn", "values": [ - "MM7-.e.x" + "" ] } ] }, "namespaces": [ - "446" + "443" ], - "topologyKey": "447", + "topologyKey": "444", "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" + "T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI": "I-mt4...rQ" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "vSW_4-__h", + "operator": "In", + "values": [ + "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1" + ] } ] } @@ -1415,34 +1431,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1920802622, "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" + "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": "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", + "key": "8v---a9j23/9", + "operator": "In", "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" + "y__y.9O.L-.m.3h" ] } ] }, "namespaces": [ - "460" + "457" ], - "topologyKey": "461", + "topologyKey": "458", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "VM5..-N_H_55..--E3_2D-1DW__o_8": "kzB7U_.Q.45cy-.._K" }, "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", - "operator": "DoesNotExist" + "key": "6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG", + "operator": "Exists" } ] } @@ -1451,66 +1467,66 @@ ] } }, - "schedulerName": "468", + "schedulerName": "465", "tolerations": [ { - "key": "469", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "470", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "466", + "operator": "NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ", + "value": "467", + "effect": ";牆詒ĸąsƶ", + "tolerationSeconds": -456102350746071856 } ], "hostAliases": [ { - "ip": "471", + "ip": "468", "hostnames": [ - "472" + "469" ] } ], - "priorityClassName": "473", - "priority": -1756088332, + "priorityClassName": "470", + "priority": 1188651641, "dnsConfig": { "nameservers": [ - "474" + "471" ], "searches": [ - "475" + "472" ], "options": [ { - "name": "476", - "value": "477" + "name": "473", + "value": "474" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW" } ], - "runtimeClassName": "478", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "475", + "enableServiceLinks": false, + "preemptionPolicy": "džH0ƾ瘿¸'q钨羲;\"T#sM網mA", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "»Š": "727" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "479", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -388643187, + "topologyKey": "476", + "whenUnsatisfiable": "i僠噚恗N", "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" + "z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0": "g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T" }, "matchExpressions": [ { - "key": "KTlO.__0PX", + "key": "br..1.--S-w-5_..D.pz_-ad", "operator": "In", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "Q.__y644" ] } ] @@ -1522,18 +1538,18 @@ } }, "status": { - "replicas": -1350756342, - "fullyLabeledReplicas": 131165488, - "readyReplicas": 1801862647, - "availableReplicas": -212999359, - "observedGeneration": 6343420286878457918, + "replicas": -2095627603, + "fullyLabeledReplicas": 516555648, + "readyReplicas": 2104777337, + "availableReplicas": 876226690, + "observedGeneration": 1436288218546692842, "conditions": [ { - "type": "", - "status": "ʋǞbȫ魙Ōȇ", - "lastTransitionTime": "2443-02-01T11:09:03Z", - "reason": "486", - "message": "487" + "type": "C`牯雫", + "status": "%ÿ¼璤ňɈȀę", + "lastTransitionTime": "2951-06-01T06:00:17Z", + "reason": "483", + "message": "484" } ] } 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 e94bfa513511..8aa1439de655 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 1bed7aa5e997..7ce2d92dea1a 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 @@ -71,482 +71,493 @@ spec: selfLink: "28" uid: ʬ spec: - activeDeadlineSeconds: 4885169856784949611 + activeDeadlineSeconds: 579099652389333099 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "408" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "405" + operator: 霎ȃň values: - - "409" + - "406" matchFields: - - key: "410" - operator: ƒK07曳w + - key: "407" + operator: ʓ滨 values: - - "411" - weight: 1805682547 + - "408" + weight: -259047269 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "404" - operator: 豎穜姰l咑耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌ + - key: "401" + operator: 灭ƴɦ燻踸陴Sĕ濦 values: - - "405" + - "402" matchFields: - - key: "406" - operator: 柯?B俋¬h`職铳s44矕Ƈ + - key: "403" + operator: 筿ɾ values: - - "407" + - "404" 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 + - key: Q_--v-3-BzO5z80n_HtW + operator: NotIn + values: + - 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w 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 + 8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2: PE..24-O._.v._9-cz.-Y6T4gz namespaceSelector: matchExpressions: - - key: C-_20 - 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: - 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 + ? f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9 + : P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA namespaces: - - "432" - topologyKey: "433" - weight: -450654683 + - "429" + topologyKey: "430" + weight: 2001693468 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 3QC1--L--v_Z--ZgC + operator: Exists 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 + KA-._d._.Um.-__0: 5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I 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 + - key: 7Vz_6.Hz_V_.r_v_._X operator: Exists matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 1rhm-5y--z-0/b17ca-_p-y.eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX namespaces: - - "418" - topologyKey: "419" + - "415" + topologyKey: "416" 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 + - key: 8v---a9j23/9 + operator: In values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m + - y__y.9O.L-.m.3h 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 + 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 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 - operator: DoesNotExist + - key: 6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG + operator: Exists matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + VM5..-N_H_55..--E3_2D-1DW__o_8: kzB7U_.Q.45cy-.._K namespaces: - - "460" - topologyKey: "461" - weight: 1131487788 + - "457" + topologyKey: "458" + weight: 1920802622 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 - operator: In + - key: T + operator: NotIn values: - - MM7-.e.x + - "" matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + 4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: vSW_4-__h + operator: In + values: + - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1 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 + T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ namespaces: - - "446" - topologyKey: "447" + - "443" + topologyKey: "444" automountServiceAccountToken: true containers: - args: - - "247" - command: - "246" + command: + - "245" env: - - name: "254" - value: "255" + - name: "253" + value: "254" valueFrom: configMapKeyRef: - key: "261" - name: "260" - optional: false + key: "260" + name: "259" + optional: true fieldRef: - apiVersion: "256" - fieldPath: "257" + apiVersion: "255" + fieldPath: "256" resourceFieldRef: - containerName: "258" - divisor: "774" - resource: "259" + containerName: "257" + divisor: "9" + resource: "258" secretKeyRef: - key: "263" - name: "262" + key: "262" + name: "261" optional: false envFrom: - configMapRef: - name: "252" + name: "251" optional: false - prefix: "251" + prefix: "250" secretRef: - name: "253" - optional: false - image: "245" - imagePullPolicy: 囌{屿oiɥ嵐sC + name: "252" + optional: true + image: "244" + imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭 lifecycle: postStart: exec: command: - - "292" + - "288" httpGet: - host: "294" + host: "291" httpHeaders: - - name: "295" - value: "296" - path: "293" - port: -2128108224 - scheme: δ摖 + - name: "292" + value: "293" + path: "289" + port: "290" + scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tcpSocket: - host: "298" - port: "297" + host: "294" + port: 1167615307 preStop: exec: command: - - "299" + - "295" httpGet: - host: "302" + host: "297" httpHeaders: - - name: "303" - value: "304" - path: "300" - port: "301" + - name: "298" + value: "299" + path: "296" + port: -115833863 + scheme: ì tcpSocket: - host: "306" - port: "305" + host: "301" + port: "300" livenessProbe: exec: command: - - "270" - failureThreshold: 549215478 + - "269" + failureThreshold: -1129218498 httpGet: - host: "273" + host: "271" httpHeaders: - - name: "274" - value: "275" - path: "271" - port: "272" - scheme: E¦ - initialDelaySeconds: 1868887309 - periodSeconds: -316996074 - successThreshold: 1933968533 + - name: "272" + value: "273" + path: "270" + port: -1468297794 + scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ + initialDelaySeconds: 1308698792 + periodSeconds: -934378634 + successThreshold: -1453143878 tcpSocket: - host: "277" - port: "276" - timeoutSeconds: -528664199 - name: "244" + host: "275" + port: "274" + terminationGracePeriodSeconds: 2471155705902100229 + timeoutSeconds: 1401790459 + name: "243" ports: - - containerPort: 508868877 - hostIP: "250" - hostPort: -888240870 - name: "249" - protocol: 岼昕ĬÇó藢xɮĵȑ6L*Z + - containerPort: -1784617397 + hostIP: "249" + hostPort: 465972736 + name: "248" + protocol: Ƭƶ氩Ȩ<6 readinessProbe: exec: command: - - "278" - failureThreshold: 1847163341 + - "276" + failureThreshold: 323903711 httpGet: - host: "280" + host: "278" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -374766088 - scheme: 翜舞拉Œ - initialDelaySeconds: -190183379 - periodSeconds: -341287812 - successThreshold: 2030115750 + - name: "279" + value: "280" + path: "277" + port: -614098868 + scheme: ȗÔÂɘɢ + initialDelaySeconds: -942399354 + periodSeconds: -1803854120 + successThreshold: -1412915219 tcpSocket: - host: "284" - port: "283" - timeoutSeconds: -940334911 + host: "281" + port: 802134138 + terminationGracePeriodSeconds: -9192251189672401053 + timeoutSeconds: 1264624019 resources: limits: - $î.Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ: "393" + lNKƙ順\E¦队偯J僳徥淳: "93" requests: - <6: "446" + 媀瓄&翜舞拉Œɥ颶妧Ö闊: "472" securityContext: allowPrivilegeEscalation: true capabilities: add: - - Ǻ鱎ƙ;Nŕ + - ņ drop: - - Jih亏yƕ丆録² + - )DŽ髐njʉBn(fǂ privileged: false - procMount: 砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­ + procMount: Ǫʓ)ǂť嗆u readOnlyRootFilesystem: true - runAsGroup: 2179199799235189619 - runAsNonRoot: true - runAsUser: -607313695104609402 + runAsGroup: -495558749504439559 + runAsNonRoot: false + runAsUser: -6717020695319852049 seLinuxOptions: - level: "311" - role: "309" - type: "310" - user: "308" + level: "306" + role: "304" + type: "305" + user: "303" seccompProfile: - localhostProfile: "315" - type: ɔ幩še + localhostProfile: "310" + type: 晲T[irȎ3Ĕ\ windowsOptions: - gmsaCredentialSpec: "313" - gmsaCredentialSpecName: "312" - runAsUserName: "314" + gmsaCredentialSpec: "308" + gmsaCredentialSpecName: "307" + runAsUserName: "309" startupProbe: exec: command: - - "285" - failureThreshold: 1103049140 + - "282" + failureThreshold: 1658749995 httpGet: - host: "287" + host: "284" httpHeaders: - - name: "288" - value: "289" - path: "286" - port: 567263590 - scheme: KŅ/ - initialDelaySeconds: -1894250541 - periodSeconds: 1315054653 - successThreshold: 711020087 + - name: "285" + value: "286" + path: "283" + port: -992558278 + scheme: 鯂²静 + initialDelaySeconds: -181601395 + periodSeconds: 1851229369 + successThreshold: -560238386 tcpSocket: - host: "291" - port: "290" - timeoutSeconds: 1962818731 - stdin: true - stdinOnce: true - terminationMessagePath: "307" - terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź + host: "287" + port: -402384013 + terminationGracePeriodSeconds: -4030490994049395944 + timeoutSeconds: -617381112 + terminationMessagePath: "302" + terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ tty: true volumeDevices: - - devicePath: "269" - name: "268" + - devicePath: "268" + name: "267" volumeMounts: - - mountPath: "265" - mountPropagation: 翑0展}硐庰%皧V垾 - name: "264" - readOnly: true - subPath: "266" - subPathExpr: "267" - workingDir: "248" + - mountPath: "264" + mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃 + name: "263" + subPath: "265" + subPathExpr: "266" + workingDir: "247" dnsConfig: nameservers: - - "474" + - "471" options: - - name: "476" - value: "477" + - name: "473" + value: "474" searches: - - "475" - dnsPolicy: Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "472" + dnsPolicy: '''蠨磼O_h盌3+Œ9两@8' + enableServiceLinks: false ephemeralContainers: - args: - - "319" + - "314" command: - - "318" + - "313" env: - - name: "326" - value: "327" + - name: "321" + value: "322" valueFrom: configMapKeyRef: - key: "333" - name: "332" + key: "328" + name: "327" optional: true fieldRef: - apiVersion: "328" - fieldPath: "329" + apiVersion: "323" + fieldPath: "324" resourceFieldRef: - containerName: "330" - divisor: "878" - resource: "331" + containerName: "325" + divisor: "69" + resource: "326" secretKeyRef: - key: "335" - name: "334" + key: "330" + name: "329" optional: false envFrom: - configMapRef: - name: "324" + name: "319" optional: true - prefix: "323" + prefix: "318" secretRef: - name: "325" + name: "320" optional: false - image: "317" - imagePullPolicy: xƂ9阠 + image: "312" + imagePullPolicy: ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "364" + - "358" httpGet: - host: "366" + host: "361" httpHeaders: - - name: "367" - value: "368" - path: "365" - port: -1347045470 - scheme: ¨Ix糂腂ǂǚŜEuEy + - name: "362" + value: "363" + path: "359" + port: "360" + scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$# tcpSocket: - host: "369" - port: -1945921250 + host: "365" + port: "364" preStop: exec: command: - - "370" + - "366" httpGet: - host: "372" + host: "368" httpHeaders: - - name: "373" - value: "374" - path: "371" - port: 1605974497 - scheme: m坊柩劄奼[ƕƑĝ + - name: "369" + value: "370" + path: "367" + port: 1791758702 + scheme: tl敷斢杧ż鯀 tcpSocket: - host: "375" - port: 293042649 + host: "372" + port: "371" livenessProbe: exec: command: - - "342" - failureThreshold: -342387625 + - "337" + failureThreshold: -36573584 httpGet: - host: "344" + host: "340" httpHeaders: - - name: "345" - value: "346" - path: "343" - port: 1616390418 - scheme: 趭(娕uE增猍ǵ x - initialDelaySeconds: -1320027474 - periodSeconds: 2112112129 - successThreshold: 528603974 + - name: "341" + value: "342" + path: "338" + port: "339" + scheme: ȥ}礤铟怖ý萜Ǖ + initialDelaySeconds: -1922458514 + periodSeconds: 692511776 + successThreshold: -1231653807 tcpSocket: - host: "348" - port: "347" - timeoutSeconds: -1750169306 - name: "316" + host: "343" + port: -1088996269 + terminationGracePeriodSeconds: -2524837786321986358 + timeoutSeconds: 1480364858 + name: "311" ports: - - containerPort: -2130294761 - hostIP: "322" - hostPort: -2113700533 - name: "321" - protocol: pɵ{ + - containerPort: -1918622971 + hostIP: "317" + hostPort: -1656699070 + name: "316" + protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz readinessProbe: exec: command: - - "349" - failureThreshold: 1424401373 + - "344" + failureThreshold: 1443270783 httpGet: - host: "352" + host: "346" httpHeaders: - - name: "353" - value: "354" - path: "350" - port: "351" - scheme: /Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ - initialDelaySeconds: 2036955392 - periodSeconds: -1920304485 - successThreshold: -1842062977 + - name: "347" + value: "348" + path: "345" + port: 1219644543 + scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy + initialDelaySeconds: 652646450 + periodSeconds: -1912967242 + successThreshold: -2106399359 tcpSocket: - host: "356" - port: "355" - timeoutSeconds: 626243488 + host: "350" + port: "349" + terminationGracePeriodSeconds: -4462364494060795190 + timeoutSeconds: 757223010 resources: limits: - 銆jʒǚ鍰\縑: "992" + 1b: "328" requests: - 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ: "400" + '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699" securityContext: allowPrivilegeEscalation: false capabilities: add: - - wy¶熀ďJZ漤ŗ坟Ů郵[+扴ȨŮ+朷Ǝ膯lj + - o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ drop: - - "" + - W:ĸ輦唊#v privileged: false - procMount: 碧闳ȩr + procMount: Ÿ8T 苧yñKJɐ扵 readOnlyRootFilesystem: true - runAsGroup: 4468469649483616089 - runAsNonRoot: false - runAsUser: -5821728037462880994 + runAsGroup: 8839567045362091290 + runAsNonRoot: true + runAsUser: 1946087648860511217 seLinuxOptions: - level: "239" - role: "237" - type: "238" - user: "236" + level: "238" + role: "236" + type: "237" + user: "235" seccompProfile: - localhostProfile: "243" - type: "" + localhostProfile: "242" + type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 windowsOptions: - gmsaCredentialSpec: "241" - gmsaCredentialSpecName: "240" - runAsUserName: "242" + gmsaCredentialSpec: "240" + gmsaCredentialSpecName: "239" + runAsUserName: "241" startupProbe: exec: command: - "214" - failureThreshold: -1150474479 + failureThreshold: -2107743490 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" + - name: "217" + value: "218" path: "215" - port: "216" - scheme: ĺɗŹ倗S晒嶗UÐ_ƮA攤 - initialDelaySeconds: 1885897314 - periodSeconds: 1054858106 - successThreshold: 232569106 + port: 1623772781 + scheme: UÐ_ƮA攤/ɸɎ + initialDelaySeconds: 1054858106 + periodSeconds: -1150474479 + successThreshold: 744319626 tcpSocket: host: "220" - port: -498930176 - timeoutSeconds: -465677631 - stdinOnce: true - terminationMessagePath: "235" - terminationMessagePolicy: ɖ緕ȚÍ勅跦Opwǩ + port: "219" + terminationGracePeriodSeconds: 8569885835306406695 + timeoutSeconds: 232569106 + stdin: true + terminationMessagePath: "234" + terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' tty: true volumeDevices: - devicePath: "200" @@ -724,66 +738,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "390" + nodeName: "387" nodeSelector: - "386": "387" + "383": "384" overhead: - 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452" - preemptionPolicy: ûŠl倳ţü¿Sʟ鍡 - priority: -1756088332 - priorityClassName: "473" + »Š: "727" + preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA + priority: 1188651641 + priorityClassName: "470" readinessGates: - - conditionType: '#sM網' - restartPolicy: S - runtimeClassName: "478" - schedulerName: "468" + - conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW + restartPolicy: W歹s梊ɥʋăƻ + runtimeClassName: "475" + schedulerName: "465" securityContext: - fsGroup: 7306468936162090894 - fsGroupChangePolicy: 肄$鬬 - runAsGroup: -6445633177475289195 + fsGroup: -8322686588708543096 + fsGroupChangePolicy: 4虵p蓋沥7uPƒ + runAsGroup: -2549376519991319825 runAsNonRoot: true - runAsUser: 711750319800111437 + runAsUser: 3011215457607075123 seLinuxOptions: - level: "394" - role: "392" - type: "393" - user: "391" + level: "391" + role: "389" + type: "390" + user: "388" seccompProfile: - localhostProfile: "400" - type: 矐_ + localhostProfile: "397" + type: "" supplementalGroups: - - -7316357525352987834 + - 8667724420266764868 sysctls: - - name: "398" - value: "399" + - name: "395" + value: "396" windowsOptions: - gmsaCredentialSpec: "396" - gmsaCredentialSpecName: "395" - runAsUserName: "397" - serviceAccount: "389" - serviceAccountName: "388" + gmsaCredentialSpec: "393" + gmsaCredentialSpecName: "392" + runAsUserName: "394" + serviceAccount: "386" + serviceAccountName: "385" setHostnameAsFQDN: false - shareProcessNamespace: false - subdomain: "403" - terminationGracePeriodSeconds: 2296052591495331583 + shareProcessNamespace: true + subdomain: "400" + terminationGracePeriodSeconds: 1031455728822209328 tolerations: - - effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸ - key: "469" - operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ - tolerationSeconds: -3147305732428645642 - value: "470" + - effect: ;牆詒ĸąsƶ + key: "466" + operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ + tolerationSeconds: -456102350746071856 + value: "467" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: KTlO.__0PX + - key: br..1.--S-w-5_..D.pz_-ad operator: In values: - - V6K_.3_583-6.f-.9-.V..Q-K_6_3 + - Q.__y644 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 - maxSkew: -447559705 - topologyKey: "479" - whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒 + z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0: g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T + maxSkew: -388643187 + topologyKey: "476" + whenUnsatisfiable: i僠噚恗N volumes: - awsElasticBlockStore: fsType: "47" @@ -1034,14 +1048,14 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -212999359 + availableReplicas: 876226690 conditions: - - lastTransitionTime: "2443-02-01T11:09:03Z" - message: "487" - reason: "486" - status: ʋǞbȫ魙Ōȇ - type: "" - fullyLabeledReplicas: 131165488 - observedGeneration: 6343420286878457918 - readyReplicas: 1801862647 - replicas: -1350756342 + - lastTransitionTime: "2951-06-01T06:00:17Z" + message: "484" + reason: "483" + status: '%ÿ¼璤ňɈȀę' + type: C`牯雫 + fullyLabeledReplicas: 516555648 + observedGeneration: 1436288218546692842 + readyReplicas: 2104777337 + replicas: -2095627603 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 9e465d641d24..77af4f86f0e4 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,195 +1469,198 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "volumeClaimTemplates": [ { "metadata": { - "name": "487", - "generateName": "488", - "namespace": "489", - "selfLink": "490", - "uid": "4LM桵Ţ宧ʜ嵹ʌ5Ë}", - "resourceVersion": "932117408350471144", - "generation": 4446917721686139397, + "name": "485", + "generateName": "486", + "namespace": "487", + "selfLink": "488", + "uid": "t;Äƾ53§T旦y6辱Ŵ鎥", + "resourceVersion": "5814982353389179965", + "generation": 1310178674290624050, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2948232978388571762, + "deletionGracePeriodSeconds": 1872311292774274066, "labels": { - "492": "493" + "490": "491" }, "annotations": { - "494": "495" + "492": "493" }, "ownerReferences": [ { - "apiVersion": "496", - "kind": "497", - "name": "498", - "uid": "憲Ħ焵i,ŋ", + "apiVersion": "494", + "kind": "495", + "name": "496", + "uid": "tY圻醆锛[M牍Ƃ", "controller": false, - "blockOwnerDeletion": false + "blockOwnerDeletion": true } ], "finalizers": [ - "499" + "497" ], - "clusterName": "500", + "clusterName": "498", "managedFields": [ { - "manager": "501", - "operation": "Ʀ§:Ǫ魚Emv看ƜZ穑S", - "apiVersion": "502", - "fieldsType": "503" + "manager": "499", + "operation": "鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹", + "apiVersion": "500", + "fieldsType": "501" } ] }, "spec": { "accessModes": [ - "Is{豘ñ澀j劎笜釼鮭Ɯ" + "狳u恺Ŕsʅ" ], "selector": { "matchLabels": { - "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" + "De.._.-f..__QM__G-_OHh": "9_-._3.x.8iq" }, "matchExpressions": [ { - "key": "R_-U7-F34-6.-_-O-F__h9", - "operator": "Exists" + "key": "2-3--a1.cv-k4w7g36-vm86----3-893097-0zy976-0--q-90fo4grk4k-116-h8-77/l-..j--s-_Y-_i.._---6_.0.mr", + "operator": "In", + "values": [ + "Wx-DP__7-6w-._k2B_----H.5.Kw0V8_-__n29xr.5GDm_v.-H.L" + ] } ] }, "resources": { "limits": { - "獪霛圦Ƶ": "159" + "HǹKPaǿ嗦]ɬ朞ɄƶÁ1!Ɯa": "243" }, "requests": { - "-劺b": "142" + "ƥ": "89" } }, - "volumeName": "510", - "storageClassName": "511", - "volumeMode": "ê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘʘ", + "volumeName": "508", + "storageClassName": "509", + "volumeMode": "", "dataSource": { - "apiGroup": "512", - "kind": "513", - "name": "514" + "apiGroup": "510", + "kind": "511", + "name": "512" } }, "status": { - "phase": "s檣ŝƚʤ\u003cƟʚ`÷碹頒D", + "phase": "ɫòDÓǶɟ", "accessModes": [ - "Ƭ)攕ƕ遻W?Ɔ遗1湾宑·Ʀ" + "b隊曻:Bȗ轊" ], "capacity": { - "Ȍ璣nj儱ƚWA麭T棞詢¡ɅǏõxġ": "858" + "": "375" }, "conditions": [ { - "type": "j=击", - "status": "|{軈ĕʦ竳÷ 骵蓧應ĸ簋", - "lastProbeTime": "2322-05-21T16:41:46Z", - "lastTransitionTime": "2939-10-28T17:50:12Z", - "reason": "515", - "message": "516" + "type": "b賝łų$Q郔", + "status": "Ċ凭Ǩ輹AÀŪ", + "lastProbeTime": "2913-03-10T01:14:02Z", + "lastTransitionTime": "2359-04-16T09:19:58Z", + "reason": "513", + "message": "514" } ] } } ], - "serviceName": "517", - "podManagementPolicy": "验`垥-罏Dz咘", + "serviceName": "515", + "podManagementPolicy": "t史C\u003c镼ƶƭ", "updateStrategy": { - "type": "Ğy", + "type": "蘃ʋxr®", "rollingUpdate": { - "partition": -758476265 + "partition": 1241629379 } }, - "revisionHistoryLimit": 1260831675 + "revisionHistoryLimit": -2047047343 }, "status": { - "observedGeneration": 8438550020448048629, - "replicas": -83108222, - "readyReplicas": 1738133199, - "currentReplicas": -1053645465, - "updatedReplicas": -1271316132, - "currentRevision": "518", - "updateRevision": "519", - "collisionCount": -607784054, + "observedGeneration": -7554417720389717167, + "replicas": -1084756341, + "readyReplicas": -2001638406, + "currentReplicas": -1687188044, + "updatedReplicas": 497109907, + "currentRevision": "516", + "updateRevision": "517", + "collisionCount": 916590407, "conditions": [ { - "type": "²Ŕİuƶ½OE弞", - "status": "ɶċŶv}鮩澊聝楧p问Ð7ɞŶJŖ)j", - "lastTransitionTime": "2235-11-16T23:26:27Z", - "reason": "520", - "message": "521" + "type": "ȁ隞ĻȀ", + "status": "jËUe", + "lastTransitionTime": "2859-10-03T21:26:35Z", + "reason": "518", + "message": "519" } ] } 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 e2d42eb41b89..5d450240d971 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 d6a97dd83042..cf1066f71d45 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 @@ -30,16 +30,16 @@ metadata: selfLink: "5" uid: "7" spec: - podManagementPolicy: 验`垥-罏Dz咘 + podManagementPolicy: t史C<镼ƶƭ replicas: 896585016 - revisionHistoryLimit: 1260831675 + revisionHistoryLimit: -2047047343 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: "517" + serviceName: "515" template: metadata: annotations: @@ -71,487 +71,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -585,37 +591,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -635,6 +642,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -647,22 +655,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -672,49 +681,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -727,66 +738,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1042,84 +1053,86 @@ spec: volumePath: "101" updateStrategy: rollingUpdate: - partition: -758476265 - type: Ğy + partition: 1241629379 + type: 蘃ʋxr® volumeClaimTemplates: - metadata: annotations: - "494": "495" - clusterName: "500" + "492": "493" + clusterName: "498" creationTimestamp: null - deletionGracePeriodSeconds: -2948232978388571762 + deletionGracePeriodSeconds: 1872311292774274066 finalizers: - - "499" - generateName: "488" - generation: 4446917721686139397 + - "497" + generateName: "486" + generation: 1310178674290624050 labels: - "492": "493" + "490": "491" managedFields: - - apiVersion: "502" - fieldsType: "503" - manager: "501" - operation: Ʀ§:Ǫ魚Emv看ƜZ穑S - name: "487" - namespace: "489" + - apiVersion: "500" + fieldsType: "501" + manager: "499" + operation: 鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹 + name: "485" + namespace: "487" ownerReferences: - - apiVersion: "496" - blockOwnerDeletion: false + - apiVersion: "494" + blockOwnerDeletion: true controller: false - kind: "497" - name: "498" - uid: 憲Ħ焵i,ŋ - resourceVersion: "932117408350471144" - selfLink: "490" - uid: 4LM桵Ţ宧ʜ嵹ʌ5Ë} + kind: "495" + name: "496" + uid: tY圻醆锛[M牍Ƃ + resourceVersion: "5814982353389179965" + selfLink: "488" + uid: t;Äƾ53§T旦y6辱Ŵ鎥 spec: accessModes: - - Is{豘ñ澀j劎笜釼鮭Ɯ + - 狳u恺Ŕsʅ dataSource: - apiGroup: "512" - kind: "513" - name: "514" + apiGroup: "510" + kind: "511" + name: "512" resources: limits: - 獪霛圦Ƶ: "159" + HǹKPaǿ嗦]ɬ朞ɄƶÁ1!Ɯa: "243" requests: - -劺b: "142" + ƥ: "89" selector: matchExpressions: - - key: R_-U7-F34-6.-_-O-F__h9 - operator: Exists + - key: 2-3--a1.cv-k4w7g36-vm86----3-893097-0zy976-0--q-90fo4grk4k-116-h8-77/l-..j--s-_Y-_i.._---6_.0.mr + operator: In + values: + - Wx-DP__7-6w-._k2B_----H.5.Kw0V8_-__n29xr.5GDm_v.-H.L matchLabels: - 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: "511" - volumeMode: ê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘʘ - volumeName: "510" + De.._.-f..__QM__G-_OHh: 9_-._3.x.8iq + storageClassName: "509" + volumeMode: "" + volumeName: "508" status: accessModes: - - Ƭ)攕ƕ遻W?Ɔ遗1湾宑·Ʀ + - b隊曻:Bȗ轊 capacity: - Ȍ璣nj儱ƚWA麭T棞詢¡ɅǏõxġ: "858" + "": "375" conditions: - - lastProbeTime: "2322-05-21T16:41:46Z" - lastTransitionTime: "2939-10-28T17:50:12Z" - message: "516" - reason: "515" - status: '|{軈ĕʦ竳÷ 骵蓧應ĸ簋' - type: j=击 - phase: s檣ŝƚʤ<Ɵʚ`÷碹頒D + - lastProbeTime: "2913-03-10T01:14:02Z" + lastTransitionTime: "2359-04-16T09:19:58Z" + message: "514" + reason: "513" + status: Ċ凭Ǩ輹AÀŪ + type: b賝łų$Q郔 + phase: ɫòDÓǶɟ status: - collisionCount: -607784054 + collisionCount: 916590407 conditions: - - lastTransitionTime: "2235-11-16T23:26:27Z" - message: "521" - reason: "520" - status: ɶċŶv}鮩澊聝楧p问Ð7ɞŶJŖ)j - type: ²Ŕİuƶ½OE弞 - currentReplicas: -1053645465 - currentRevision: "518" - observedGeneration: 8438550020448048629 - readyReplicas: 1738133199 - replicas: -83108222 - updateRevision: "519" - updatedReplicas: -1271316132 + - lastTransitionTime: "2859-10-03T21:26:35Z" + message: "519" + reason: "518" + status: jËUe + type: ȁ隞ĻȀ + currentReplicas: -1687188044 + currentRevision: "516" + observedGeneration: -7554417720389717167 + readyReplicas: -2001638406 + replicas: -1084756341 + updateRevision: "517" + updatedReplicas: 497109907 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 3b81c6857dde..7f521fec1ac2 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,106 +1469,106 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "strategy": { - "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", + "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 2115665292, - "revisionHistoryLimit": 237456757, + "minReadySeconds": 1559072561, + "revisionHistoryLimit": -629510776, "rollbackTo": { - "revision": 1498428055681994500 + "revision": -8285752436940414034 }, - "progressDeadlineSeconds": -164140734 + "progressDeadlineSeconds": 349353563 }, "status": { - "observedGeneration": -1635909846206320942, - "replicas": -253906853, - "updatedReplicas": -602665165, - "readyReplicas": -859094691, - "availableReplicas": -1624946983, - "unavailableReplicas": -779806398, + "observedGeneration": 5710269275969351972, + "replicas": -153843136, + "updatedReplicas": -1961319491, + "readyReplicas": 1492268066, + "availableReplicas": -2102211832, + "unavailableReplicas": 1714841371, "conditions": [ { - "type": "mv看ƜZ", - "status": "ȇ\u003e尪璎妽4LM桵Ţ宧ʜ", - "lastUpdateTime": "2322-02-12T18:39:07Z", - "lastTransitionTime": "2398-05-12T06:43:28Z", - "reason": "487", - "message": "488" + "type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ", + "status": "", + "lastUpdateTime": "2124-10-20T09:17:54Z", + "lastTransitionTime": "2625-01-11T08:25:47Z", + "reason": "485", + "message": "486" } ], - "collisionCount": 165914268 + "collisionCount": -1280802136 } } \ 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 e1019fe50094..e45b441e3e80 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 3411600eceb6..c7597f8754b1 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 @@ -30,12 +30,12 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 2115665292 - progressDeadlineSeconds: -164140734 + minReadySeconds: 1559072561 + progressDeadlineSeconds: 349353563 replicas: 896585016 - revisionHistoryLimit: 237456757 + revisionHistoryLimit: -629510776 rollbackTo: - revision: 1498428055681994500 + revision: -8285752436940414034 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 +46,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj + type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& template: metadata: annotations: @@ -78,487 +78,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -592,37 +598,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -642,6 +649,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -654,22 +662,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -679,49 +688,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -734,66 +745,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1048,17 +1059,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -1624946983 - collisionCount: 165914268 + availableReplicas: -2102211832 + collisionCount: -1280802136 conditions: - - lastTransitionTime: "2398-05-12T06:43:28Z" - lastUpdateTime: "2322-02-12T18:39:07Z" - message: "488" - reason: "487" - status: ȇ>尪璎妽4LM桵Ţ宧ʜ - type: mv看ƜZ - observedGeneration: -1635909846206320942 - readyReplicas: -859094691 - replicas: -253906853 - unavailableReplicas: -779806398 - updatedReplicas: -602665165 + - lastTransitionTime: "2625-01-11T08:25:47Z" + lastUpdateTime: "2124-10-20T09:17:54Z" + message: "486" + reason: "485" + status: "" + type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ + observedGeneration: 5710269275969351972 + readyReplicas: 1492268066 + replicas: -153843136 + unavailableReplicas: 1714841371 + updatedReplicas: -1961319491 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 47a63a8fe875..f247d407e673 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,195 +1469,198 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "volumeClaimTemplates": [ { "metadata": { - "name": "487", - "generateName": "488", - "namespace": "489", - "selfLink": "490", - "uid": "4LM桵Ţ宧ʜ嵹ʌ5Ë}", - "resourceVersion": "932117408350471144", - "generation": 4446917721686139397, + "name": "485", + "generateName": "486", + "namespace": "487", + "selfLink": "488", + "uid": "t;Äƾ53§T旦y6辱Ŵ鎥", + "resourceVersion": "5814982353389179965", + "generation": 1310178674290624050, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2948232978388571762, + "deletionGracePeriodSeconds": 1872311292774274066, "labels": { - "492": "493" + "490": "491" }, "annotations": { - "494": "495" + "492": "493" }, "ownerReferences": [ { - "apiVersion": "496", - "kind": "497", - "name": "498", - "uid": "憲Ħ焵i,ŋ", + "apiVersion": "494", + "kind": "495", + "name": "496", + "uid": "tY圻醆锛[M牍Ƃ", "controller": false, - "blockOwnerDeletion": false + "blockOwnerDeletion": true } ], "finalizers": [ - "499" + "497" ], - "clusterName": "500", + "clusterName": "498", "managedFields": [ { - "manager": "501", - "operation": "Ʀ§:Ǫ魚Emv看ƜZ穑S", - "apiVersion": "502", - "fieldsType": "503" + "manager": "499", + "operation": "鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹", + "apiVersion": "500", + "fieldsType": "501" } ] }, "spec": { "accessModes": [ - "Is{豘ñ澀j劎笜釼鮭Ɯ" + "狳u恺Ŕsʅ" ], "selector": { "matchLabels": { - "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" + "De.._.-f..__QM__G-_OHh": "9_-._3.x.8iq" }, "matchExpressions": [ { - "key": "R_-U7-F34-6.-_-O-F__h9", - "operator": "Exists" + "key": "2-3--a1.cv-k4w7g36-vm86----3-893097-0zy976-0--q-90fo4grk4k-116-h8-77/l-..j--s-_Y-_i.._---6_.0.mr", + "operator": "In", + "values": [ + "Wx-DP__7-6w-._k2B_----H.5.Kw0V8_-__n29xr.5GDm_v.-H.L" + ] } ] }, "resources": { "limits": { - "獪霛圦Ƶ": "159" + "HǹKPaǿ嗦]ɬ朞ɄƶÁ1!Ɯa": "243" }, "requests": { - "-劺b": "142" + "ƥ": "89" } }, - "volumeName": "510", - "storageClassName": "511", - "volumeMode": "ê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘʘ", + "volumeName": "508", + "storageClassName": "509", + "volumeMode": "", "dataSource": { - "apiGroup": "512", - "kind": "513", - "name": "514" + "apiGroup": "510", + "kind": "511", + "name": "512" } }, "status": { - "phase": "s檣ŝƚʤ\u003cƟʚ`÷碹頒D", + "phase": "ɫòDÓǶɟ", "accessModes": [ - "Ƭ)攕ƕ遻W?Ɔ遗1湾宑·Ʀ" + "b隊曻:Bȗ轊" ], "capacity": { - "Ȍ璣nj儱ƚWA麭T棞詢¡ɅǏõxġ": "858" + "": "375" }, "conditions": [ { - "type": "j=击", - "status": "|{軈ĕʦ竳÷ 骵蓧應ĸ簋", - "lastProbeTime": "2322-05-21T16:41:46Z", - "lastTransitionTime": "2939-10-28T17:50:12Z", - "reason": "515", - "message": "516" + "type": "b賝łų$Q郔", + "status": "Ċ凭Ǩ輹AÀŪ", + "lastProbeTime": "2913-03-10T01:14:02Z", + "lastTransitionTime": "2359-04-16T09:19:58Z", + "reason": "513", + "message": "514" } ] } } ], - "serviceName": "517", - "podManagementPolicy": "验`垥-罏Dz咘", + "serviceName": "515", + "podManagementPolicy": "t史C\u003c镼ƶƭ", "updateStrategy": { - "type": "Ğy", + "type": "蘃ʋxr®", "rollingUpdate": { - "partition": -758476265 + "partition": 1241629379 } }, - "revisionHistoryLimit": 1260831675 + "revisionHistoryLimit": -2047047343 }, "status": { - "observedGeneration": -4311116967802775348, - "replicas": -1451872257, - "readyReplicas": -546245806, - "currentReplicas": 1503049349, - "updatedReplicas": 222651663, - "currentRevision": "518", - "updateRevision": "519", - "collisionCount": 689753881, + "observedGeneration": -4953621687850665429, + "replicas": -36590142, + "readyReplicas": -745346633, + "currentReplicas": -85996001, + "updatedReplicas": 1569440493, + "currentRevision": "516", + "updateRevision": "517", + "collisionCount": 509085460, "conditions": [ { - "type": "", - "status": "Ŕİuƶ½O", - "lastTransitionTime": "2627-07-23T23:41:05Z", - "reason": "520", - "message": "521" + "type": "ǿǑQɩjËUeƹ訥岎ā貂ĝ,梙", + "status": "q懒疮Ɨ郀`崦愯啁6ŕ(DǺM變", + "lastTransitionTime": "2478-09-16T03:50:01Z", + "reason": "518", + "message": "519" } ] } 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 a51a769aeca1..edddbbe6c71f 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 1121db40260b..12513b0ff52a 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 @@ -30,16 +30,16 @@ metadata: selfLink: "5" uid: "7" spec: - podManagementPolicy: 验`垥-罏Dz咘 + podManagementPolicy: t史C<镼ƶƭ replicas: 896585016 - revisionHistoryLimit: 1260831675 + revisionHistoryLimit: -2047047343 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: "517" + serviceName: "515" template: metadata: annotations: @@ -71,487 +71,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -585,37 +591,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -635,6 +642,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -647,22 +655,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -672,49 +681,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -727,66 +738,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1042,84 +1053,86 @@ spec: volumePath: "101" updateStrategy: rollingUpdate: - partition: -758476265 - type: Ğy + partition: 1241629379 + type: 蘃ʋxr® volumeClaimTemplates: - metadata: annotations: - "494": "495" - clusterName: "500" + "492": "493" + clusterName: "498" creationTimestamp: null - deletionGracePeriodSeconds: -2948232978388571762 + deletionGracePeriodSeconds: 1872311292774274066 finalizers: - - "499" - generateName: "488" - generation: 4446917721686139397 + - "497" + generateName: "486" + generation: 1310178674290624050 labels: - "492": "493" + "490": "491" managedFields: - - apiVersion: "502" - fieldsType: "503" - manager: "501" - operation: Ʀ§:Ǫ魚Emv看ƜZ穑S - name: "487" - namespace: "489" + - apiVersion: "500" + fieldsType: "501" + manager: "499" + operation: 鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹 + name: "485" + namespace: "487" ownerReferences: - - apiVersion: "496" - blockOwnerDeletion: false + - apiVersion: "494" + blockOwnerDeletion: true controller: false - kind: "497" - name: "498" - uid: 憲Ħ焵i,ŋ - resourceVersion: "932117408350471144" - selfLink: "490" - uid: 4LM桵Ţ宧ʜ嵹ʌ5Ë} + kind: "495" + name: "496" + uid: tY圻醆锛[M牍Ƃ + resourceVersion: "5814982353389179965" + selfLink: "488" + uid: t;Äƾ53§T旦y6辱Ŵ鎥 spec: accessModes: - - Is{豘ñ澀j劎笜釼鮭Ɯ + - 狳u恺Ŕsʅ dataSource: - apiGroup: "512" - kind: "513" - name: "514" + apiGroup: "510" + kind: "511" + name: "512" resources: limits: - 獪霛圦Ƶ: "159" + HǹKPaǿ嗦]ɬ朞ɄƶÁ1!Ɯa: "243" requests: - -劺b: "142" + ƥ: "89" selector: matchExpressions: - - key: R_-U7-F34-6.-_-O-F__h9 - operator: Exists + - key: 2-3--a1.cv-k4w7g36-vm86----3-893097-0zy976-0--q-90fo4grk4k-116-h8-77/l-..j--s-_Y-_i.._---6_.0.mr + operator: In + values: + - Wx-DP__7-6w-._k2B_----H.5.Kw0V8_-__n29xr.5GDm_v.-H.L matchLabels: - 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: "511" - volumeMode: ê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘʘ - volumeName: "510" + De.._.-f..__QM__G-_OHh: 9_-._3.x.8iq + storageClassName: "509" + volumeMode: "" + volumeName: "508" status: accessModes: - - Ƭ)攕ƕ遻W?Ɔ遗1湾宑·Ʀ + - b隊曻:Bȗ轊 capacity: - Ȍ璣nj儱ƚWA麭T棞詢¡ɅǏõxġ: "858" + "": "375" conditions: - - lastProbeTime: "2322-05-21T16:41:46Z" - lastTransitionTime: "2939-10-28T17:50:12Z" - message: "516" - reason: "515" - status: '|{軈ĕʦ竳÷ 骵蓧應ĸ簋' - type: j=击 - phase: s檣ŝƚʤ<Ɵʚ`÷碹頒D + - lastProbeTime: "2913-03-10T01:14:02Z" + lastTransitionTime: "2359-04-16T09:19:58Z" + message: "514" + reason: "513" + status: Ċ凭Ǩ輹AÀŪ + type: b賝łų$Q郔 + phase: ɫòDÓǶɟ status: - collisionCount: 689753881 + collisionCount: 509085460 conditions: - - lastTransitionTime: "2627-07-23T23:41:05Z" - message: "521" - reason: "520" - status: Ŕİuƶ½O - type: "" - currentReplicas: 1503049349 - currentRevision: "518" - observedGeneration: -4311116967802775348 - readyReplicas: -546245806 - replicas: -1451872257 - updateRevision: "519" - updatedReplicas: 222651663 + - lastTransitionTime: "2478-09-16T03:50:01Z" + message: "519" + reason: "518" + status: q懒疮Ɨ郀`崦愯啁6ŕ(DǺM變 + type: ǿǑQɩjËUeƹ訥岎ā貂ĝ,梙 + currentReplicas: -85996001 + currentRevision: "516" + observedGeneration: -4953621687850665429 + readyReplicas: -745346633 + replicas: -36590142 + updateRevision: "517" + updatedReplicas: 1569440493 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 0e78cbeda153..4ea37e0820cf 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 @@ -554,7 +554,8 @@ "timeoutSeconds": -438588982, "periodSeconds": 1004325340, "successThreshold": -1313320434, - "failureThreshold": 14304392 + "failureThreshold": 14304392, + "terminationGracePeriodSeconds": 2001337664780390084 }, "readinessProbe": { "exec": { @@ -564,9 +565,9 @@ }, "httpGet": { "path": "209", - "port": 1714588921, + "port": -614161319, "host": "210", - "scheme": "Ư貾", + "scheme": "Ȩ\u003c6鄰簳°Ļǟi\u0026", "httpHeaders": [ { "name": "211", @@ -578,11 +579,12 @@ "port": "213", "host": "214" }, - "initialDelaySeconds": -552281772, - "timeoutSeconds": -677617960, - "periodSeconds": 383015301, - "successThreshold": -1717997927, - "failureThreshold": 1533365989 + "initialDelaySeconds": 233282513, + "timeoutSeconds": -518330919, + "periodSeconds": 1313273370, + "successThreshold": -1296830577, + "failureThreshold": -1314967760, + "terminationGracePeriodSeconds": 5043322816247327651 }, "startupProbe": { "exec": { @@ -592,672 +594,679 @@ }, "httpGet": { "path": "216", - "port": -2121788927, - "host": "217", + "port": "217", + "host": "218", + "scheme": "队偯J僳徥淳4揻", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "219", + "value": "220" } ] }, "tcpSocket": { - "port": -518330919, - "host": "220" + "port": 878005329, + "host": "221" }, - "initialDelaySeconds": 1313273370, - "timeoutSeconds": -1296830577, - "periodSeconds": -1314967760, - "successThreshold": 1174240097, - "failureThreshold": -1928016742 + "initialDelaySeconds": -1244119841, + "timeoutSeconds": 1235694147, + "periodSeconds": 348370746, + "successThreshold": 468369166, + "failureThreshold": 1909548849, + "terminationGracePeriodSeconds": 6410850623145248813 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "222" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "偯J僳徥淳4", + "path": "223", + "port": "224", + "host": "225", + "scheme": "鰔澝qV訆ƎżŧL²sNƗ¸", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "226", + "value": "227" } ] }, "tcpSocket": { - "port": -1421951296, - "host": "227" + "port": "228", + "host": "229" } }, "preStop": { "exec": { "command": [ - "228" + "230" ] }, "httpGet": { - "path": "229", - "port": -1856061695, - "host": "230", - "scheme": "Œɥ颶妧Ö闊 鰔澝qV訆Ǝ", + "path": "231", + "port": "232", + "host": "233", + "scheme": "δ摖", "httpHeaders": [ { - "name": "231", - "value": "232" + "name": "234", + "value": "235" } ] }, "tcpSocket": { - "port": 509813083, - "host": "233" + "port": "236", + "host": "237" } } }, - "terminationMessagePath": "234", - "terminationMessagePolicy": "²sNƗ¸g", - "imagePullPolicy": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:", + "terminationMessagePath": "238", + "terminationMessagePolicy": "_\u003cǬëJ橈'琕鶫:顇ə娯Ȱ", + "imagePullPolicy": "ǵɐ鰥Z", "securityContext": { "capabilities": { "add": [ - "" + "DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ" ], "drop": [ - "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;" + "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6" ] }, "privileged": false, "seLinuxOptions": { - "user": "235", - "role": "236", - "type": "237", - "level": "238" + "user": "239", + "role": "240", + "type": "241", + "level": "242" }, "windowsOptions": { - "gmsaCredentialSpecName": "239", - "gmsaCredentialSpec": "240", - "runAsUserName": "241" + "gmsaCredentialSpecName": "243", + "gmsaCredentialSpec": "244", + "runAsUserName": "245" }, - "runAsUser": 5431518803727886665, - "runAsGroup": -545284475172904979, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "runAsUser": 9148233193771851687, + "runAsGroup": 6901713258562004024, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "丆", + "procMount": "弢ȹ均i绝5哇芆斩ìh4Ɋ", "seccompProfile": { - "type": "²Ŏ)/灩聋3趐囨", - "localhostProfile": "242" + "type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "localhostProfile": "246" } } } ], "containers": [ { - "name": "243", - "image": "244", + "name": "247", + "image": "248", "command": [ - "245" + "249" ], "args": [ - "246" + "250" ], - "workingDir": "247", + "workingDir": "251", "ports": [ { - "name": "248", - "hostPort": -1733181402, - "containerPort": -1365158918, - "protocol": "OǨ繫ʎǑyZ", - "hostIP": "249" + "name": "252", + "hostPort": 1540899353, + "containerPort": -1330095135, + "protocol": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", + "hostIP": "253" } ], "envFrom": [ { - "prefix": "250", + "prefix": "254", "configMapRef": { - "name": "251", + "name": "255", "optional": false }, "secretRef": { - "name": "252", - "optional": true + "name": "256", + "optional": false } } ], "env": [ { - "name": "253", - "value": "254", + "name": "257", + "value": "258", "valueFrom": { "fieldRef": { - "apiVersion": "255", - "fieldPath": "256" + "apiVersion": "259", + "fieldPath": "260" }, "resourceFieldRef": { - "containerName": "257", - "resource": "258", - "divisor": "516" + "containerName": "261", + "resource": "262", + "divisor": "293" }, "configMapKeyRef": { - "name": "259", - "key": "260", + "name": "263", + "key": "264", "optional": true }, "secretKeyRef": { - "name": "261", - "key": "262", - "optional": true + "name": "265", + "key": "266", + "optional": false } } } ], "resources": { "limits": { - "": "991" + "9崍": "210" }, "requests": { - "斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ": "850" + ")ǂť嗆u8晲T[irȎ3Ĕ\\ɢX鰨松": "775" } }, "volumeMounts": [ { - "name": "263", + "name": "267", "readOnly": true, - "mountPath": "264", - "subPath": "265", - "mountPropagation": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", - "subPathExpr": "266" + "mountPath": "268", + "subPath": "269", + "mountPropagation": "ʠɜ瞍阎lğ Ņ", + "subPathExpr": "270" } ], "volumeDevices": [ { - "name": "267", - "devicePath": "268" + "name": "271", + "devicePath": "272" } ], "livenessProbe": { "exec": { "command": [ - "269" + "273" ] }, "httpGet": { - "path": "270", - "port": -543432015, - "host": "271", - "scheme": "ƷƣMț", + "path": "274", + "port": 1866529638, + "host": "275", + "scheme": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n", "httpHeaders": [ { - "name": "272", - "value": "273" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": "274", - "host": "275" + "port": 638012651, + "host": "278" }, - "initialDelaySeconds": -211480108, - "timeoutSeconds": -200074798, - "periodSeconds": 556036216, - "successThreshold": -1838917931, - "failureThreshold": -1563928252 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "276" + "279" ] }, "httpGet": { - "path": "277", - "port": -426022413, - "host": "278", - "scheme": "躒訙Ǫʓ)ǂť嗆u8晲T[irȎ", + "path": "280", + "port": "281", + "host": "282", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "279", - "value": "280" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": 1238925115, - "host": "281" + "port": "285", + "host": "286" }, - "initialDelaySeconds": -1758095966, - "timeoutSeconds": 1627026804, - "periodSeconds": -1508967300, - "successThreshold": -1058923098, - "failureThreshold": -1656699070 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "282" + "287" ] }, "httpGet": { - "path": "283", - "port": "284", - "host": "285", - "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(", + "path": "288", + "port": "289", + "host": "290", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "286", - "value": "287" + "name": "291", + "value": "292" } ] }, "tcpSocket": { - "port": 317211081, - "host": "288" + "port": -1894647727, + "host": "293" }, - "initialDelaySeconds": -1934305215, - "timeoutSeconds": -655359985, - "periodSeconds": 875971520, - "successThreshold": 161338049, - "failureThreshold": 65094252 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "289" + "294" ] }, "httpGet": { - "path": "290", - "port": "291", - "host": "292", - "scheme": "若`l}", + "path": "295", + "port": 466267060, + "host": "296", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "293", - "value": "294" + "name": "297", + "value": "298" } ] }, "tcpSocket": { - "port": 2097633614, - "host": "295" + "port": "299", + "host": "300" } }, "preStop": { "exec": { "command": [ - "296" + "301" ] }, "httpGet": { - "path": "297", - "port": 638012651, - "host": "298", - "scheme": "誹", + "path": "302", + "port": "303", + "host": "304", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "299", - "value": "300" + "name": "305", + "value": "306" } ] }, "tcpSocket": { - "port": "301", - "host": "302" + "port": "307", + "host": "308" } } }, - "terminationMessagePath": "303", - "terminationMessagePolicy": "ɼ搳ǭ濑箨ʨIk(", - "imagePullPolicy": "腂ǂǚŜEuEy", + "terminationMessagePath": "309", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "ɞȥ}礤铟怖ý萜Ǖ" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "8ǣƘƵŧ1ƟƓ宆!鍲ɋȑoG鄧蜢" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, "privileged": false, "seLinuxOptions": { - "user": "304", - "role": "305", - "type": "306", - "level": "307" + "user": "310", + "role": "311", + "type": "312", + "level": "313" }, "windowsOptions": { - "gmsaCredentialSpecName": "308", - "gmsaCredentialSpec": "309", - "runAsUserName": "310" + "gmsaCredentialSpecName": "314", + "gmsaCredentialSpec": "315", + "runAsUserName": "316" }, - "runAsUser": 2424760700494115127, - "runAsGroup": 8749598715214557239, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "阠$嬏", + "procMount": "ʙcx", "seccompProfile": { - "type": "y¶熀ďJZ漤", - "localhostProfile": "311" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "317" } - }, - "stdinOnce": true + } } ], "ephemeralContainers": [ { - "name": "312", - "image": "313", + "name": "318", + "image": "319", "command": [ - "314" + "320" ], "args": [ - "315" + "321" ], - "workingDir": "316", + "workingDir": "322", "ports": [ { - "name": "317", - "hostPort": -1617422199, - "containerPort": -902839620, - "protocol": "縆łƑ[澔槃JŵǤ桒ɴ鉂W", - "hostIP": "318" + "name": "323", + "hostPort": 1805682547, + "containerPort": -651405950, + "protocol": "淹揀.e鍃G昧牱fsǕT衩kƒK07", + "hostIP": "324" } ], "envFrom": [ { - "prefix": "319", + "prefix": "325", "configMapRef": { - "name": "320", + "name": "326", "optional": true }, "secretRef": { - "name": "321", + "name": "327", "optional": true } } ], "env": [ { - "name": "322", - "value": "323", + "name": "328", + "value": "329", "valueFrom": { "fieldRef": { - "apiVersion": "324", - "fieldPath": "325" + "apiVersion": "330", + "fieldPath": "331" }, "resourceFieldRef": { - "containerName": "326", - "resource": "327", - "divisor": "776" + "containerName": "332", + "resource": "333", + "divisor": "684" }, "configMapKeyRef": { - "name": "328", - "key": "329", - "optional": false + "name": "334", + "key": "335", + "optional": true }, "secretKeyRef": { - "name": "330", - "key": "331", - "optional": false + "name": "336", + "key": "337", + "optional": true } } } ], "resources": { "limits": { - "ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«": "274" + "蠨磼O_h盌3+Œ9两@8Byß": "111" }, "requests": { - "仁": "342" + "ɃŒ": "451" } }, "volumeMounts": [ { - "name": "332", - "mountPath": "333", - "subPath": "334", - "mountPropagation": "l敷斢杧ż鯀1'鸔ɧWǘ炙B", - "subPathExpr": "335" + "name": "338", + "readOnly": true, + "mountPath": "339", + "subPath": "340", + "mountPropagation": "葰賦", + "subPathExpr": "341" } ], "volumeDevices": [ { - "name": "336", - "devicePath": "337" + "name": "342", + "devicePath": "343" } ], "livenessProbe": { "exec": { "command": [ - "338" + "344" ] }, "httpGet": { - "path": "339", - "port": -1703472232, - "host": "340", - "scheme": "ɎƺL肄$鬬$矐_敕ű嵞嬯t{Eɾ敹Ȯ", + "path": "345", + "port": -121675052, + "host": "346", + "scheme": "W#ļǹʅŚO虀^", "httpHeaders": [ { - "name": "341", - "value": "342" + "name": "347", + "value": "348" } ] }, "tcpSocket": { - "port": "343", - "host": "344" + "port": "349", + "host": "350" }, - "initialDelaySeconds": -1726456869, - "timeoutSeconds": 892837330, - "periodSeconds": 789384689, - "successThreshold": 436796816, - "failureThreshold": 1017403804 + "initialDelaySeconds": -1959891996, + "timeoutSeconds": -1442230895, + "periodSeconds": 1475033091, + "successThreshold": 1782790310, + "failureThreshold": 1587036035, + "terminationGracePeriodSeconds": 7560036535013464461 }, "readinessProbe": { "exec": { "command": [ - "345" + "351" ] }, "httpGet": { - "path": "346", - "port": 1290315514, - "host": "347", - "scheme": "廤", + "path": "352", + "port": -1744546613, + "host": "353", + "scheme": "ʓɻŊ", "httpHeaders": [ { - "name": "348", - "value": "349" + "name": "354", + "value": "355" } ] }, "tcpSocket": { - "port": "350", - "host": "351" + "port": -259047269, + "host": "356" }, - "initialDelaySeconds": 307856269, - "timeoutSeconds": -1072116268, - "periodSeconds": 492351478, - "successThreshold": 983624601, - "failureThreshold": -1836690542 + "initialDelaySeconds": 1586122127, + "timeoutSeconds": -1813456856, + "periodSeconds": 781203691, + "successThreshold": -216440055, + "failureThreshold": 408029351, + "terminationGracePeriodSeconds": 5450105809027610853 }, "startupProbe": { "exec": { "command": [ - "352" + "357" ] }, "httpGet": { - "path": "353", - "port": "354", - "host": "355", - "scheme": "職铳s44矕Ƈè*鑏='ʨ|Ǔ", + "path": "358", + "port": -5241849, + "host": "359", + "scheme": "}颉hȱɷȰW", "httpHeaders": [ { - "name": "356", - "value": "357" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": 718799934, - "host": "358" + "port": "362", + "host": "363" }, - "initialDelaySeconds": -1333877527, - "timeoutSeconds": -1452767599, - "periodSeconds": 1972286304, - "successThreshold": -2067214763, - "failureThreshold": -1238148960 + "initialDelaySeconds": 636493142, + "timeoutSeconds": -192358697, + "periodSeconds": 420595064, + "successThreshold": 1195176401, + "failureThreshold": 902204699, + "terminationGracePeriodSeconds": 9196919020604133323 }, "lifecycle": { "postStart": { "exec": { "command": [ - "359" + "364" ] }, "httpGet": { - "path": "360", - "port": -839925309, - "host": "361", - "scheme": "歹s梊ɥʋ", + "path": "365", + "port": -1460652193, + "host": "366", + "scheme": "8ï驿笈¯rƈa餖Ľƛ淴ɑ?", "httpHeaders": [ { - "name": "362", - "value": "363" + "name": "367", + "value": "368" } ] }, "tcpSocket": { - "port": "364", - "host": "365" + "port": "369", + "host": "370" } }, "preStop": { "exec": { "command": [ - "366" + "371" ] }, "httpGet": { - "path": "367", - "port": -835196821, - "host": "368", - "scheme": "'蠨磼O_h盌3+Œ9两@8", + "path": "372", + "port": 71524977, + "host": "373", + "scheme": "鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷", "httpHeaders": [ { - "name": "369", - "value": "370" + "name": "374", + "value": "375" } ] }, "tcpSocket": { - "port": -130408357, - "host": "371" + "port": -565041796, + "host": "376" } } }, - "terminationMessagePath": "372", - "terminationMessagePolicy": "讪Ă2讅缔m葰賦迾娙ƴ4虵p蓋沥7uP", - "imagePullPolicy": "虀^背遻堣灭ƴɦ燻", + "terminationMessagePath": "377", + "terminationMessagePolicy": "Ƭ婦d", + "imagePullPolicy": "ɧeʫį淓¯", "securityContext": { "capabilities": { "add": [ - "Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh" + "ƛ忀z委\u003e,趐V曡88 u怞荊ù" ], "drop": [ - "颉h" + "8緔Tj§E蓋Cȗä2 ɲ±" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "373", - "role": "374", - "type": "375", - "level": "376" + "user": "378", + "role": "379", + "type": "380", + "level": "381" }, "windowsOptions": { - "gmsaCredentialSpecName": "377", - "gmsaCredentialSpec": "378", - "runAsUserName": "379" + "gmsaCredentialSpecName": "382", + "gmsaCredentialSpec": "383", + "runAsUserName": "384" }, - "runAsUser": -6458893750559270292, - "runAsGroup": 4010419783586555910, - "runAsNonRoot": true, + "runAsUser": -4564863616644509171, + "runAsGroup": -7297536356638221066, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "殚篎3o8[y", + "procMount": "Ş襵樞úʥ銀", "seccompProfile": { - "type": "t(ȗŜŲ\u0026洪y儕lmòɻŶJ詢QǾɁ", - "localhostProfile": "380" + "type": "ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧", + "localhostProfile": "385" } }, "stdin": true, - "stdinOnce": true, "tty": true, - "targetContainerName": "381" + "targetContainerName": "386" } ], - "restartPolicy": "鯇ɀ魒Ð扬=惍EʦŊ", - "terminationGracePeriodSeconds": 6429479287377373080, - "activeDeadlineSeconds": -9181673998572382321, - "dnsPolicy": "ȃ$|gɳ礬.b屏", + "restartPolicy": "鹚蝉茲ʛ饊", + "terminationGracePeriodSeconds": 1736985756995615785, + "activeDeadlineSeconds": -1284119655860768065, + "dnsPolicy": "錏嬮#ʐ", "nodeSelector": { - "382": "383" + "387": "388" }, - "serviceAccountName": "384", - "serviceAccount": "385", + "serviceAccountName": "389", + "serviceAccount": "390", "automountServiceAccountToken": true, - "nodeName": "386", - "hostNetwork": true, + "nodeName": "391", "hostPID": true, + "hostIPC": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "387", - "role": "388", - "type": "389", - "level": "390" + "user": "392", + "role": "393", + "type": "394", + "level": "395" }, "windowsOptions": { - "gmsaCredentialSpecName": "391", - "gmsaCredentialSpec": "392", - "runAsUserName": "393" + "gmsaCredentialSpecName": "396", + "gmsaCredentialSpec": "397", + "runAsUserName": "398" }, - "runAsUser": 7375851700105205526, - "runAsGroup": -8471243268942862734, + "runAsUser": -4904722847506013622, + "runAsGroup": 6465579957265382985, "runAsNonRoot": false, "supplementalGroups": [ - 6241883428430393253 + -981432507446869083 ], - "fsGroup": 4174818639540616638, + "fsGroup": -1867959832193971598, "sysctls": [ { - "name": "394", - "value": "395" + "name": "399", + "value": "400" } ], - "fsGroupChangePolicy": "趐V曡88 ", + "fsGroupChangePolicy": "ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!", "seccompProfile": { - "type": "怞荊ù灹8緔Tj", - "localhostProfile": "396" + "type": "`翾'ųŎ群E牬庘颮6(|ǖû", + "localhostProfile": "401" } }, "imagePullSecrets": [ { - "name": "397" + "name": "402" } ], - "hostname": "398", - "subdomain": "399", + "hostname": "403", + "subdomain": "404", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1265,19 +1274,19 @@ { "matchExpressions": [ { - "key": "400", - "operator": "ƫZɀȩ愉", + "key": "405", + "operator": "UǷ坒", "values": [ - "401" + "406" ] } ], "matchFields": [ { - "key": "402", - "operator": "m嵘厶sȰÖ埡ÆɰŞ襵樞", + "key": "407", + "operator": "", "values": [ - "403" + "408" ] } ] @@ -1286,23 +1295,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 2082229073, + "weight": -1280563546, "preference": { "matchExpressions": [ { - "key": "404", - "operator": "ƨɤ血x柱栦阫Ƈʥ椹", + "key": "409", + "operator": "Mɮ6)", "values": [ - "405" + "410" ] } ], "matchFields": [ { - "key": "406", - "operator": "_", + "key": "411", + "operator": "杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾", "values": [ - "407" + "412" ] } ] @@ -1315,33 +1324,30 @@ { "labelSelector": { "matchLabels": { - "3--51": "h-K5y_AzOBW.9oE9_6.-v" + "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" }, "matchExpressions": [ { - "key": "064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4", - "operator": "In", + "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "operator": "NotIn", "values": [ - "S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7" + "VT3sn-0_.i__a.O2G_J" ] } ] }, "namespaces": [ - "414" + "419" ], - "topologyKey": "415", + "topologyKey": "420", "namespaceSelector": { "matchLabels": { - "j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp": "H_.39g_.--_-_ve5.m_2_--XZ-x.__.M" + "410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g": "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w" }, "matchExpressions": [ { - "key": "Pw_-r75--_-A-oQ", - "operator": "NotIn", - "values": [ - "3i__a.O2G_-_K-.03.mp.-10k" - ] + "key": "r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT", + "operator": "DoesNotExist" } ] } @@ -1349,30 +1355,33 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 256213209, + "weight": -2118597352, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z": "i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ" + "il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt": "CRT.0z-oe.G79.3bU_._nV34G._--u..9" }, "matchExpressions": [ { - "key": "7Pn-W23-_.z_.._s--_F-BR-.h_-2-s", - "operator": "Exists" + "key": "n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9", + "operator": "NotIn", + "values": [ + "f8k" + ] } ] }, "namespaces": [ - "428" + "433" ], - "topologyKey": "429", + "topologyKey": "434", "namespaceSelector": { "matchLabels": { - "2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t": "V._nV34GH" + "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp": "5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7" }, "matchExpressions": [ { - "key": "9105-4_ed-0-i_zZsY_o8t5Vl6_..C", + "key": "27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y", "operator": "DoesNotExist" } ] @@ -1386,33 +1395,30 @@ { "labelSelector": { "matchLabels": { - "q0o.0C_gV.9_G-.-z1YH": "b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA" + "Y3o_V-w._-0d__7.81_-._-8": "9._._a-.N.__-_._.3l-_86u" }, "matchExpressions": [ { - "key": "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp", + "key": "c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs", "operator": "NotIn", "values": [ - "MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg" + "B.3R6-.7Bf8GA--__A7r.8U.V_p6c" ] } ] }, "namespaces": [ - "442" + "447" ], - "topologyKey": "443", + "topologyKey": "448", "namespaceSelector": { "matchLabels": { - "4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T": "P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8" + "x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51": "m06jVZu" }, "matchExpressions": [ { - "key": "0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP", - "operator": "In", - "values": [ - "396h8.G__B3" - ] + "key": "N-._M5..-N_H_55..--E3_2D-1DW_o", + "operator": "Exists" } ] } @@ -1420,31 +1426,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1856144088, + "weight": 1943011795, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Q-.-.g-_Z_-nSLq": "4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3" + "j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz": "3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v" }, "matchExpressions": [ { - "key": "3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5", - "operator": "Exists" + "key": "x3___-..f5-6x-_-o_6O_If-5_-_U", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "456" + "461" ], - "topologyKey": "457", + "topologyKey": "462", "namespaceSelector": { "matchLabels": { - "2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6": "px_0-.mJe__.B-cd2_4" + "P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h": "4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP" }, "matchExpressions": [ { - "key": "1s._K9-.AJ-_8--___b____03_6.K8lY", - "operator": "Exists" + "key": "aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7", + "operator": "NotIn", + "values": [ + "9-.66hcB.rTt7bm9I.-..q-n" + ] } ] } @@ -1453,99 +1462,99 @@ ] } }, - "schedulerName": "464", + "schedulerName": "469", "tolerations": [ { - "key": "465", - "operator": "0yVA嬂刲;牆詒ĸąs", - "value": "466", - "effect": "kx-餌勀奷Ŏ", - "tolerationSeconds": -9038755672632113093 + "key": "470", + "operator": "杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]", + "value": "471", + "effect": "ɮ-nʣž吞Ƞ唄®窂爪", + "tolerationSeconds": -5154627301352060136 } ], "hostAliases": [ { - "ip": "467", + "ip": "472", "hostnames": [ - "468" + "473" ] } ], - "priorityClassName": "469", - "priority": -1133320634, + "priorityClassName": "474", + "priority": -860768401, "dnsConfig": { "nameservers": [ - "470" + "475" ], "searches": [ - "471" + "476" ], "options": [ { - "name": "472", - "value": "473" + "name": "477", + "value": "478" } ] }, "readinessGates": [ { - "conditionType": "į" + "conditionType": "@.ȇʟ" } ], - "runtimeClassName": "474", - "enableServiceLinks": true, - "preemptionPolicy": "Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ", + "runtimeClassName": "479", + "enableServiceLinks": false, + "preemptionPolicy": "", "overhead": { - "k_": "725" + "": "359" }, "topologySpreadConstraints": [ { - "maxSkew": -2046521037, - "topologyKey": "475", - "whenUnsatisfiable": "\"T#sM網m", + "maxSkew": -2013945465, + "topologyKey": "480", + "whenUnsatisfiable": "½ǩ ", "labelSelector": { "matchLabels": { - "3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5": "019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6" + "9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG": "4n" }, "matchExpressions": [ { - "key": "B.rTt7bm9I.-..q-F-.__ck", - "operator": "DoesNotExist" + "key": "6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q", + "operator": "Exists" } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } }, "updateStrategy": { - "type": "周藢烡Z树Ȁ謁", + "type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": -59186930, - "revisionHistoryLimit": -1552013182 + "minReadySeconds": 1467929320, + "revisionHistoryLimit": -1098193709 }, "status": { - "currentNumberScheduled": 854102661, - "numberMisscheduled": -1489341847, - "desiredNumberScheduled": -753344268, - "numberReady": -524542843, - "observedGeneration": -5582776069361093393, - "updatedNumberScheduled": -194384924, - "numberAvailable": -1758862804, - "numberUnavailable": -78446609, - "collisionCount": -730503981, + "currentNumberScheduled": 2090664533, + "numberMisscheduled": -1371816595, + "desiredNumberScheduled": 1219820375, + "numberReady": -788475912, + "observedGeneration": 6637463221525448952, + "updatedNumberScheduled": -1684048223, + "numberAvailable": 16994744, + "numberUnavailable": 340429479, + "collisionCount": 1177227691, "conditions": [ { - "type": "傢z¦Ā竚ĐȌƨǴ叆ĄD輷東t½", - "status": "n坾\u0026Pɫ(ʙÆ", - "lastTransitionTime": "2310-01-11T15:23:07Z", - "reason": "482", - "message": "483" + "type": "ôD齆O#ȞM\u003c²彾Ǟʈɐ", + "status": "盧ŶbșʬÇ[輚趞", + "lastTransitionTime": "2205-11-05T22:21:51Z", + "reason": "487", + "message": "488" } ] } 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 e7aae743b5b0..2952f30175c7 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 7f3ad41f4a26..9d1382629348 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 @@ -30,8 +30,8 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: -59186930 - revisionHistoryLimit: -1552013182 + minReadySeconds: 1467929320 + revisionHistoryLimit: -1098193709 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 @@ -71,487 +71,491 @@ spec: selfLink: "28" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: -9181673998572382321 + activeDeadlineSeconds: -1284119655860768065 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "404" - operator: ƨɤ血x柱栦阫Ƈʥ椹 + - key: "409" + operator: Mɮ6) values: - - "405" + - "410" matchFields: - - key: "406" - operator: _ + - key: "411" + operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾 values: - - "407" - weight: 2082229073 + - "412" + weight: -1280563546 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "400" - operator: ƫZɀȩ愉 + - key: "405" + operator: UǷ坒 values: - - "401" + - "406" matchFields: - - key: "402" - operator: m嵘厶sȰÖ埡ÆɰŞ襵樞 + - key: "407" + operator: "" values: - - "403" + - "408" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 7Pn-W23-_.z_.._s--_F-BR-.h_-2-s - operator: Exists + - key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9 + operator: NotIn + values: + - f8k matchLabels: - fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z: i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ + il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt: CRT.0z-oe.G79.3bU_._nV34G._--u..9 namespaceSelector: matchExpressions: - - key: 9105-4_ed-0-i_zZsY_o8t5Vl6_..C + - key: 27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y operator: DoesNotExist matchLabels: - 2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t: V._nV34GH + s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp: 5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7 namespaces: - - "428" - topologyKey: "429" - weight: 256213209 + - "433" + topologyKey: "434" + weight: -2118597352 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4 - operator: In + - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g + operator: NotIn values: - - S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7 + - VT3sn-0_.i__a.O2G_J matchLabels: - 3--51: h-K5y_AzOBW.9oE9_6.-v + H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 namespaceSelector: matchExpressions: - - key: Pw_-r75--_-A-oQ - operator: NotIn - values: - - 3i__a.O2G_-_K-.03.mp.-10k + - key: r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT + operator: DoesNotExist matchLabels: - j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp: H_.39g_.--_-_ve5.m_2_--XZ-x.__.M + 410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g: 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w namespaces: - - "414" - topologyKey: "415" + - "419" + topologyKey: "420" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5 - operator: Exists + - key: x3___-..f5-6x-_-o_6O_If-5_-_U + operator: DoesNotExist matchLabels: - Q-.-.g-_Z_-nSLq: 4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3 + j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz: 3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v namespaceSelector: matchExpressions: - - key: 1s._K9-.AJ-_8--___b____03_6.K8lY - operator: Exists + - key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7 + operator: NotIn + values: + - 9-.66hcB.rTt7bm9I.-..q-n matchLabels: - 2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6: px_0-.mJe__.B-cd2_4 + P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h: 4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP namespaces: - - "456" - topologyKey: "457" - weight: 1856144088 + - "461" + topologyKey: "462" + weight: 1943011795 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp + - key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs operator: NotIn values: - - MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg + - B.3R6-.7Bf8GA--__A7r.8U.V_p6c matchLabels: - q0o.0C_gV.9_G-.-z1YH: b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA + Y3o_V-w._-0d__7.81_-._-8: 9._._a-.N.__-_._.3l-_86u namespaceSelector: matchExpressions: - - key: 0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP - operator: In - values: - - 396h8.G__B3 + - key: N-._M5..-N_H_55..--E3_2D-1DW_o + operator: Exists matchLabels: - ? 4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T - : P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8 + x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51: m06jVZu namespaces: - - "442" - topologyKey: "443" + - "447" + topologyKey: "448" automountServiceAccountToken: true containers: - args: - - "246" + - "250" command: - - "245" + - "249" env: - - name: "253" - value: "254" + - name: "257" + value: "258" valueFrom: configMapKeyRef: - key: "260" - name: "259" + key: "264" + name: "263" optional: true fieldRef: - apiVersion: "255" - fieldPath: "256" + apiVersion: "259" + fieldPath: "260" resourceFieldRef: - containerName: "257" - divisor: "516" - resource: "258" + containerName: "261" + divisor: "293" + resource: "262" secretKeyRef: - key: "262" - name: "261" - optional: true + key: "266" + name: "265" + optional: false envFrom: - configMapRef: - name: "251" + name: "255" optional: false - prefix: "250" + prefix: "254" secretRef: - name: "252" - optional: true - image: "244" - imagePullPolicy: 腂ǂǚŜEuEy + name: "256" + optional: false + image: "248" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "289" + - "294" httpGet: - host: "292" + host: "296" httpHeaders: - - name: "293" - value: "294" - path: "290" - port: "291" - scheme: 若`l} + - name: "297" + value: "298" + path: "295" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "309" - gmsaCredentialSpecName: "308" - runAsUserName: "310" + gmsaCredentialSpec: "315" + gmsaCredentialSpecName: "314" + runAsUserName: "316" startupProbe: exec: command: - - "282" - failureThreshold: 65094252 + - "287" + failureThreshold: 1447314009 httpGet: - host: "285" + host: "290" httpHeaders: - - name: "286" - value: "287" - path: "283" - port: "284" - scheme: ɜ瞍阎lğ Ņ#耗Ǚ( - initialDelaySeconds: -1934305215 - periodSeconds: 875971520 - successThreshold: 161338049 + - name: "291" + value: "292" + path: "288" + port: "289" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "288" - port: 317211081 - timeoutSeconds: -655359985 - stdinOnce: true - terminationMessagePath: "303" - terminationMessagePolicy: ɼ搳ǭ濑箨ʨIk( + host: "293" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + terminationMessagePath: "309" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "268" - name: "267" + - devicePath: "272" + name: "271" volumeMounts: - - mountPath: "264" - mountPropagation: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ - name: "263" + - mountPath: "268" + mountPropagation: ʠɜ瞍阎lğ Ņ + name: "267" readOnly: true - subPath: "265" - subPathExpr: "266" - workingDir: "247" + subPath: "269" + subPathExpr: "270" + workingDir: "251" dnsConfig: nameservers: - - "470" + - "475" options: - - name: "472" - value: "473" + - name: "477" + value: "478" searches: - - "471" - dnsPolicy: ȃ$|gɳ礬.b屏 - enableServiceLinks: true + - "476" + dnsPolicy: 錏嬮#ʐ + enableServiceLinks: false ephemeralContainers: - args: - - "315" + - "321" command: - - "314" + - "320" env: - - name: "322" - value: "323" + - name: "328" + value: "329" valueFrom: configMapKeyRef: - key: "329" - name: "328" - optional: false + key: "335" + name: "334" + optional: true fieldRef: - apiVersion: "324" - fieldPath: "325" + apiVersion: "330" + fieldPath: "331" resourceFieldRef: - containerName: "326" - divisor: "776" - resource: "327" + containerName: "332" + divisor: "684" + resource: "333" secretKeyRef: - key: "331" - name: "330" - optional: false + key: "337" + name: "336" + optional: true envFrom: - configMapRef: - name: "320" + name: "326" optional: true - prefix: "319" + prefix: "325" secretRef: - name: "321" + name: "327" optional: true - image: "313" - imagePullPolicy: 虀^背遻堣灭ƴɦ燻 + image: "319" + imagePullPolicy: ɧeʫį淓¯ lifecycle: postStart: exec: command: - - "359" + - "364" httpGet: - host: "361" + host: "366" httpHeaders: - - name: "362" - value: "363" - path: "360" - port: -839925309 - scheme: 歹s梊ɥʋ + - name: "367" + value: "368" + path: "365" + port: -1460652193 + scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ? tcpSocket: - host: "365" - port: "364" + host: "370" + port: "369" preStop: exec: command: - - "366" + - "371" httpGet: - host: "368" + host: "373" httpHeaders: - - name: "369" - value: "370" - path: "367" - port: -835196821 - scheme: '''蠨磼O_h盌3+Œ9两@8' + - name: "374" + value: "375" + path: "372" + port: 71524977 + scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷 tcpSocket: - host: "371" - port: -130408357 + host: "376" + port: -565041796 livenessProbe: exec: command: - - "338" - failureThreshold: 1017403804 + - "344" + failureThreshold: 1587036035 httpGet: - host: "340" + host: "346" httpHeaders: - - name: "341" - value: "342" - path: "339" - port: -1703472232 - scheme: ɎƺL肄$鬬$矐_敕ű嵞嬯t{Eɾ敹Ȯ - initialDelaySeconds: -1726456869 - periodSeconds: 789384689 - successThreshold: 436796816 + - name: "347" + value: "348" + path: "345" + port: -121675052 + scheme: W#ļǹʅŚO虀^ + initialDelaySeconds: -1959891996 + periodSeconds: 1475033091 + successThreshold: 1782790310 tcpSocket: - host: "344" - port: "343" - timeoutSeconds: 892837330 - name: "312" + host: "350" + port: "349" + terminationGracePeriodSeconds: 7560036535013464461 + timeoutSeconds: -1442230895 + name: "318" ports: - - containerPort: -902839620 - hostIP: "318" - hostPort: -1617422199 - name: "317" - protocol: 縆łƑ[澔槃JŵǤ桒ɴ鉂W + - containerPort: -651405950 + hostIP: "324" + hostPort: 1805682547 + name: "323" + protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07 readinessProbe: exec: command: - - "345" - failureThreshold: -1836690542 + - "351" + failureThreshold: 408029351 httpGet: - host: "347" + host: "353" httpHeaders: - - name: "348" - value: "349" - path: "346" - port: 1290315514 - scheme: 廤 - initialDelaySeconds: 307856269 - periodSeconds: 492351478 - successThreshold: 983624601 + - name: "354" + value: "355" + path: "352" + port: -1744546613 + scheme: ʓɻŊ + initialDelaySeconds: 1586122127 + periodSeconds: 781203691 + successThreshold: -216440055 tcpSocket: - host: "351" - port: "350" - timeoutSeconds: -1072116268 + host: "356" + port: -259047269 + terminationGracePeriodSeconds: 5450105809027610853 + timeoutSeconds: -1813456856 resources: limits: - ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«: "274" + 蠨磼O_h盌3+Œ9两@8Byß: "111" requests: - 仁: "342" + ɃŒ: "451" securityContext: allowPrivilegeEscalation: true capabilities: add: - - Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh + - ƛ忀z委>,趐V曡88 u怞荊ù drop: - - 颉h - privileged: false - procMount: 殚篎3o8[y + - 8緔Tj§E蓋Cȗä2 ɲ± + privileged: true + procMount: Ş襵樞úʥ銀 readOnlyRootFilesystem: true - runAsGroup: 4010419783586555910 - runAsNonRoot: true - runAsUser: -6458893750559270292 + runAsGroup: -7297536356638221066 + runAsNonRoot: false + runAsUser: -4564863616644509171 seLinuxOptions: - level: "376" - role: "374" - type: "375" - user: "373" + level: "381" + role: "379" + type: "380" + user: "378" seccompProfile: - localhostProfile: "380" - type: t(ȗŜŲ&洪y儕lmòɻŶJ詢QǾɁ + localhostProfile: "385" + type: ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧 windowsOptions: - gmsaCredentialSpec: "378" - gmsaCredentialSpecName: "377" - runAsUserName: "379" + gmsaCredentialSpec: "383" + gmsaCredentialSpecName: "382" + runAsUserName: "384" startupProbe: exec: command: - - "352" - failureThreshold: -1238148960 + - "357" + failureThreshold: 902204699 httpGet: - host: "355" + host: "359" httpHeaders: - - name: "356" - value: "357" - path: "353" - port: "354" - scheme: 職铳s44矕Ƈè*鑏='ʨ|Ǔ - initialDelaySeconds: -1333877527 - periodSeconds: 1972286304 - successThreshold: -2067214763 + - name: "360" + value: "361" + path: "358" + port: -5241849 + scheme: '}颉hȱɷȰW' + initialDelaySeconds: 636493142 + periodSeconds: 420595064 + successThreshold: 1195176401 tcpSocket: - host: "358" - port: 718799934 - timeoutSeconds: -1452767599 + host: "363" + port: "362" + terminationGracePeriodSeconds: 9196919020604133323 + timeoutSeconds: -192358697 stdin: true - stdinOnce: true - targetContainerName: "381" - terminationMessagePath: "372" - terminationMessagePolicy: 讪Ă2讅缔m葰賦迾娙ƴ4虵p蓋沥7uP + targetContainerName: "386" + terminationMessagePath: "377" + terminationMessagePolicy: Ƭ婦d tty: true volumeDevices: - - devicePath: "337" - name: "336" + - devicePath: "343" + name: "342" volumeMounts: - - mountPath: "333" - mountPropagation: l敷斢杧ż鯀1'鸔ɧWǘ炙B - name: "332" - subPath: "334" - subPathExpr: "335" - workingDir: "316" + - mountPath: "339" + mountPropagation: 葰賦 + name: "338" + readOnly: true + subPath: "340" + subPathExpr: "341" + workingDir: "322" hostAliases: - hostnames: - - "468" - ip: "467" - hostNetwork: true + - "473" + ip: "472" + hostIPC: true hostPID: true - hostname: "398" + hostname: "403" imagePullSecrets: - - name: "397" + - name: "402" initContainers: - args: - "178" @@ -585,38 +589,38 @@ spec: name: "184" optional: true image: "176" - imagePullPolicy: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' + imagePullPolicy: ǵɐ鰥Z lifecycle: postStart: exec: command: - - "221" + - "222" httpGet: - host: "224" + host: "225" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 偯J僳徥淳4 + - name: "226" + value: "227" + path: "223" + port: "224" + scheme: 鰔澝qV訆ƎżŧL²sNƗ¸ tcpSocket: - host: "227" - port: -1421951296 + host: "229" + port: "228" preStop: exec: command: - - "228" + - "230" httpGet: - host: "230" + host: "233" httpHeaders: - - name: "231" - value: "232" - path: "229" - port: -1856061695 - scheme: Œɥ颶妧Ö闊 鰔澝qV訆Ǝ + - name: "234" + value: "235" + path: "231" + port: "232" + scheme: δ摖 tcpSocket: - host: "233" - port: 509813083 + host: "237" + port: "236" livenessProbe: exec: command: @@ -636,6 +640,7 @@ spec: tcpSocket: host: "207" port: -1761398388 + terminationGracePeriodSeconds: 2001337664780390084 timeoutSeconds: -438588982 name: "175" ports: @@ -648,22 +653,23 @@ spec: exec: command: - "208" - failureThreshold: 1533365989 + failureThreshold: -1314967760 httpGet: host: "210" httpHeaders: - name: "211" value: "212" path: "209" - port: 1714588921 - scheme: Ư貾 - initialDelaySeconds: -552281772 - periodSeconds: 383015301 - successThreshold: -1717997927 + port: -614161319 + scheme: Ȩ<6鄰簳°Ļǟi& + initialDelaySeconds: 233282513 + periodSeconds: 1313273370 + successThreshold: -1296830577 tcpSocket: host: "214" port: "213" - timeoutSeconds: -677617960 + terminationGracePeriodSeconds: 5043322816247327651 + timeoutSeconds: -518330919 resources: limits: 朷Ǝ膯ljVX1虊谇: "279" @@ -673,48 +679,50 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - "" + - DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ drop: - - Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + - H鯂²静ƲǦŐnj汰8ŕİi騎C"6 privileged: false - procMount: 丆 - readOnlyRootFilesystem: true - runAsGroup: -545284475172904979 - runAsNonRoot: false - runAsUser: 5431518803727886665 + procMount: 弢ȹ均i绝5哇芆斩ìh4Ɋ + readOnlyRootFilesystem: false + runAsGroup: 6901713258562004024 + runAsNonRoot: true + runAsUser: 9148233193771851687 seLinuxOptions: - level: "238" - role: "236" - type: "237" - user: "235" + level: "242" + role: "240" + type: "241" + user: "239" seccompProfile: - localhostProfile: "242" - type: ²Ŏ)/灩聋3趐囨 + localhostProfile: "246" + type: Ȗ|ʐşƧ諔迮ƙIJ嘢4 windowsOptions: - gmsaCredentialSpec: "240" - gmsaCredentialSpecName: "239" - runAsUserName: "241" + gmsaCredentialSpec: "244" + gmsaCredentialSpecName: "243" + runAsUserName: "245" startupProbe: exec: command: - "215" - failureThreshold: -1928016742 + failureThreshold: 1909548849 httpGet: - host: "217" + host: "218" httpHeaders: - - name: "218" - value: "219" + - name: "219" + value: "220" path: "216" - port: -2121788927 - initialDelaySeconds: 1313273370 - periodSeconds: -1314967760 - successThreshold: 1174240097 + port: "217" + scheme: 队偯J僳徥淳4揻 + initialDelaySeconds: -1244119841 + periodSeconds: 348370746 + successThreshold: 468369166 tcpSocket: - host: "220" - port: -518330919 - timeoutSeconds: -1296830577 - terminationMessagePath: "234" - terminationMessagePolicy: ²sNƗ¸g + host: "221" + port: 878005329 + terminationGracePeriodSeconds: 6410850623145248813 + timeoutSeconds: 1235694147 + terminationMessagePath: "238" + terminationMessagePolicy: _<ǬëJ橈'琕鶫:顇ə娯Ȱ volumeDevices: - devicePath: "200" name: "199" @@ -725,64 +733,64 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "386" + nodeName: "391" nodeSelector: - "382": "383" + "387": "388" overhead: - k_: "725" - preemptionPolicy: Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ - priority: -1133320634 - priorityClassName: "469" + "": "359" + preemptionPolicy: "" + priority: -860768401 + priorityClassName: "474" readinessGates: - - conditionType: į - restartPolicy: 鯇ɀ魒Ð扬=惍EʦŊ - runtimeClassName: "474" - schedulerName: "464" + - conditionType: '@.ȇʟ' + restartPolicy: 鹚蝉茲ʛ饊 + runtimeClassName: "479" + schedulerName: "469" securityContext: - fsGroup: 4174818639540616638 - fsGroupChangePolicy: '趐V曡88 ' - runAsGroup: -8471243268942862734 + fsGroup: -1867959832193971598 + fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾! + runAsGroup: 6465579957265382985 runAsNonRoot: false - runAsUser: 7375851700105205526 + runAsUser: -4904722847506013622 seLinuxOptions: - level: "390" - role: "388" - type: "389" - user: "387" + level: "395" + role: "393" + type: "394" + user: "392" seccompProfile: - localhostProfile: "396" - type: 怞荊ù灹8緔Tj + localhostProfile: "401" + type: '`翾''ųŎ群E牬庘颮6(|ǖû' supplementalGroups: - - 6241883428430393253 + - -981432507446869083 sysctls: - - name: "394" - value: "395" + - name: "399" + value: "400" windowsOptions: - gmsaCredentialSpec: "392" - gmsaCredentialSpecName: "391" - runAsUserName: "393" - serviceAccount: "385" - serviceAccountName: "384" - setHostnameAsFQDN: false + gmsaCredentialSpec: "397" + gmsaCredentialSpecName: "396" + runAsUserName: "398" + serviceAccount: "390" + serviceAccountName: "389" + setHostnameAsFQDN: true shareProcessNamespace: false - subdomain: "399" - terminationGracePeriodSeconds: 6429479287377373080 + subdomain: "404" + terminationGracePeriodSeconds: 1736985756995615785 tolerations: - - effect: kx-餌勀奷Ŏ - key: "465" - operator: 0yVA嬂刲;牆詒ĸąs - tolerationSeconds: -9038755672632113093 - value: "466" + - effect: ɮ-nʣž吞Ƞ唄®窂爪 + key: "470" + operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ] + tolerationSeconds: -5154627301352060136 + value: "471" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: B.rTt7bm9I.-..q-F-.__ck - operator: DoesNotExist + - key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q + operator: Exists matchLabels: - 3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5: 019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6 - maxSkew: -2046521037 - topologyKey: "475" - whenUnsatisfiable: '"T#sM網m' + 9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG: 4n + maxSkew: -2013945465 + topologyKey: "480" + whenUnsatisfiable: '½ǩ ' volumes: - awsElasticBlockStore: fsType: "47" @@ -1038,20 +1046,20 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 周藢烡Z树Ȁ謁 + type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ status: - collisionCount: -730503981 + collisionCount: 1177227691 conditions: - - lastTransitionTime: "2310-01-11T15:23:07Z" - message: "483" - reason: "482" - status: n坾&Pɫ(ʙÆ - type: 傢z¦Ā竚ĐȌƨǴ叆ĄD輷東t½ - currentNumberScheduled: 854102661 - desiredNumberScheduled: -753344268 - numberAvailable: -1758862804 - numberMisscheduled: -1489341847 - numberReady: -524542843 - numberUnavailable: -78446609 - observedGeneration: -5582776069361093393 - updatedNumberScheduled: -194384924 + - lastTransitionTime: "2205-11-05T22:21:51Z" + message: "488" + reason: "487" + status: 盧ŶbșʬÇ[輚趞 + type: ôD齆O#ȞM<²彾Ǟʈɐ + currentNumberScheduled: 2090664533 + desiredNumberScheduled: 1219820375 + numberAvailable: 16994744 + numberMisscheduled: -1371816595 + numberReady: -788475912 + numberUnavailable: 340429479 + observedGeneration: 6637463221525448952 + updatedNumberScheduled: -1684048223 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 861fffc08b43..ff8775067b75 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,103 +1469,103 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "strategy": { - "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", + "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 2115665292, - "revisionHistoryLimit": 237456757, - "progressDeadlineSeconds": -1402499324 + "minReadySeconds": 1559072561, + "revisionHistoryLimit": -629510776, + "progressDeadlineSeconds": -212409426 }, "status": { - "observedGeneration": -8619941635428506201, - "replicas": -380889943, - "updatedReplicas": 466048730, - "readyReplicas": -601845829, - "availableReplicas": 426527089, - "unavailableReplicas": -1890403855, + "observedGeneration": -2967151415957453677, + "replicas": 1329525670, + "updatedReplicas": -1169406076, + "readyReplicas": 1162680985, + "availableReplicas": 171558604, + "unavailableReplicas": -161888815, "conditions": [ { - "type": "绰爪qĖĖȠ姓ȇ\u003e尪璎妽", - "status": "ĈȖ董缞濪葷cŲ", - "lastUpdateTime": "1999-05-06T18:42:43Z", - "lastTransitionTime": "2109-09-25T13:37:56Z", - "reason": "487", - "message": "488" + "type": "?鳢.ǀŭ瘢颦", + "status": "氞唬蹵ɥeȿĦ`垨Džɞ堹ǖ*Oɑ埩", + "lastUpdateTime": "2346-11-18T09:51:55Z", + "lastTransitionTime": "2391-11-11T11:52:22Z", + "reason": "485", + "message": "486" } ], - "collisionCount": -2046786896 + "collisionCount": -1889018254 } } \ 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 947242f46991..9c4295f39907 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 e088e6a22595..211b26578037 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 @@ -30,10 +30,10 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 2115665292 - progressDeadlineSeconds: -1402499324 + minReadySeconds: 1559072561 + progressDeadlineSeconds: -212409426 replicas: 896585016 - revisionHistoryLimit: 237456757 + revisionHistoryLimit: -629510776 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 @@ -44,7 +44,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj + type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& template: metadata: annotations: @@ -76,487 +76,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -590,37 +596,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -640,6 +647,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -652,22 +660,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -677,49 +686,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -732,66 +743,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1046,17 +1057,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: 426527089 - collisionCount: -2046786896 + availableReplicas: 171558604 + collisionCount: -1889018254 conditions: - - lastTransitionTime: "2109-09-25T13:37:56Z" - lastUpdateTime: "1999-05-06T18:42:43Z" - message: "488" - reason: "487" - status: ĈȖ董缞濪葷cŲ - type: 绰爪qĖĖȠ姓ȇ>尪璎妽 - observedGeneration: -8619941635428506201 - readyReplicas: -601845829 - replicas: -380889943 - unavailableReplicas: -1890403855 - updatedReplicas: 466048730 + - lastTransitionTime: "2391-11-11T11:52:22Z" + lastUpdateTime: "2346-11-18T09:51:55Z" + message: "486" + reason: "485" + status: 氞唬蹵ɥeȿĦ`垨Džɞ堹ǖ*Oɑ埩 + type: ?鳢.ǀŭ瘢颦 + observedGeneration: -2967151415957453677 + readyReplicas: 1162680985 + replicas: 1329525670 + unavailableReplicas: -161888815 + updatedReplicas: -1169406076 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 e3dadc3dadd1..f59ffa047b3d 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 @@ -555,7 +555,8 @@ "timeoutSeconds": -194343002, "periodSeconds": -850069363, "successThreshold": 918929368, - "failureThreshold": 1016277253 + "failureThreshold": 1016277253, + "terminationGracePeriodSeconds": -8520337362162976488 }, "readinessProbe": { "exec": { @@ -567,7 +568,7 @@ "path": "208", "port": "209", "host": "210", - "scheme": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ", + "scheme": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", "httpHeaders": [ { "name": "211", @@ -576,14 +577,15 @@ ] }, "tcpSocket": { - "port": 1281792166, + "port": 538852927, "host": "213" }, - "initialDelaySeconds": -1934111455, - "timeoutSeconds": 766864314, - "periodSeconds": 1146016612, - "successThreshold": 1495880465, - "failureThreshold": -1032967081 + "initialDelaySeconds": -407545915, + "timeoutSeconds": 902535764, + "periodSeconds": 716842280, + "successThreshold": 1479266199, + "failureThreshold": 163512962, + "terminationGracePeriodSeconds": -8521017368802772029 }, "startupProbe": { "exec": { @@ -593,25 +595,26 @@ }, "httpGet": { "path": "215", - "port": "216", - "host": "217", - "scheme": "ĺɗŹ倗S晒嶗UÐ_ƮA攤", + "port": 1623772781, + "host": "216", + "scheme": "UÐ_ƮA攤/ɸɎ", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -498930176, + "port": "219", "host": "220" }, - "initialDelaySeconds": 1885897314, - "timeoutSeconds": -465677631, - "periodSeconds": 1054858106, - "successThreshold": 232569106, - "failureThreshold": -1150474479 + "initialDelaySeconds": 1054858106, + "timeoutSeconds": 232569106, + "periodSeconds": -1150474479, + "successThreshold": 744319626, + "failureThreshold": -2107743490, + "terminationGracePeriodSeconds": 8569885835306406695 }, "lifecycle": { "postStart": { @@ -622,139 +625,139 @@ }, "httpGet": { "path": "222", - "port": "223", - "host": "224", - "scheme": "s3!Zɾģ毋", + "port": 896430536, + "host": "223", + "scheme": "罴ņ螡źȰ", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "224", + "value": "225" } ] }, "tcpSocket": { - "port": 391562775, - "host": "227" + "port": 513341278, + "host": "226" } }, "preStop": { "exec": { "command": [ - "228" + "227" ] }, "httpGet": { - "path": "229", - "port": "230", - "host": "231", - "scheme": "ȶ网棊ʢ=wǕɳɷ9Ì", + "path": "228", + "port": 1451056156, + "host": "229", + "scheme": "uʎȺ眖R#", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": -1364571630, - "host": "234" + "port": "232", + "host": "233" } } }, - "terminationMessagePath": "235", - "terminationMessagePolicy": "ɖ緕ȚÍ勅跦Opwǩ", - "imagePullPolicy": "輓Ɔȓ蹣ɐǛv+8", + "terminationMessagePath": "234", + "terminationMessagePolicy": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", + "imagePullPolicy": "1ØœȠƬQg鄠", "securityContext": { "capabilities": { "add": [ - "军g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" + "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ" ], "drop": [ - "" + "W:ĸ輦唊#v" ] }, "privileged": false, "seLinuxOptions": { - "user": "236", - "role": "237", - "type": "238", - "level": "239" + "user": "235", + "role": "236", + "type": "237", + "level": "238" }, "windowsOptions": { - "gmsaCredentialSpecName": "240", - "gmsaCredentialSpec": "241", - "runAsUserName": "242" + "gmsaCredentialSpecName": "239", + "gmsaCredentialSpec": "240", + "runAsUserName": "241" }, - "runAsUser": -5821728037462880994, - "runAsGroup": 4468469649483616089, - "runAsNonRoot": false, + "runAsUser": 1946087648860511217, + "runAsGroup": 8839567045362091290, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "碧闳ȩr", + "allowPrivilegeEscalation": true, + "procMount": "Ÿ8T 苧yñKJɐ扵", "seccompProfile": { - "type": "", - "localhostProfile": "243" + "type": "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞", + "localhostProfile": "242" } }, - "stdinOnce": true, + "stdin": true, "tty": true } ], "containers": [ { - "name": "244", - "image": "245", + "name": "243", + "image": "244", "command": [ - "246" + "245" ], "args": [ - "247" + "246" ], - "workingDir": "248", + "workingDir": "247", "ports": [ { - "name": "249", - "hostPort": -888240870, - "containerPort": 508868877, - "protocol": "岼昕ĬÇó藢xɮĵȑ6L*Z", - "hostIP": "250" + "name": "248", + "hostPort": 465972736, + "containerPort": -1784617397, + "protocol": "Ƭƶ氩Ȩ\u003c6", + "hostIP": "249" } ], "envFrom": [ { - "prefix": "251", + "prefix": "250", "configMapRef": { - "name": "252", + "name": "251", "optional": false }, "secretRef": { - "name": "253", - "optional": false + "name": "252", + "optional": true } } ], "env": [ { - "name": "254", - "value": "255", + "name": "253", + "value": "254", "valueFrom": { "fieldRef": { - "apiVersion": "256", - "fieldPath": "257" + "apiVersion": "255", + "fieldPath": "256" }, "resourceFieldRef": { - "containerName": "258", - "resource": "259", - "divisor": "774" + "containerName": "257", + "resource": "258", + "divisor": "9" }, "configMapKeyRef": { - "name": "260", - "key": "261", - "optional": false + "name": "259", + "key": "260", + "optional": true }, "secretKeyRef": { - "name": "262", - "key": "263", + "name": "261", + "key": "262", "optional": false } } @@ -762,254 +765,255 @@ ], "resources": { "limits": { - "$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ": "393" + "lNKƙ順\\E¦队偯J僳徥淳": "93" }, "requests": { - "\u003c6": "446" + "媀瓄\u0026翜舞拉Œɥ颶妧Ö闊": "472" } }, "volumeMounts": [ { - "name": "264", - "readOnly": true, - "mountPath": "265", - "subPath": "266", - "mountPropagation": "翑0展}硐庰%皧V垾", - "subPathExpr": "267" + "name": "263", + "mountPath": "264", + "subPath": "265", + "mountPropagation": "ĠM蘇KŅ/»頸+SÄ蚃", + "subPathExpr": "266" } ], "volumeDevices": [ { - "name": "268", - "devicePath": "269" + "name": "267", + "devicePath": "268" } ], "livenessProbe": { "exec": { "command": [ - "270" + "269" ] }, "httpGet": { - "path": "271", - "port": "272", - "host": "273", - "scheme": "E¦", + "path": "270", + "port": -1468297794, + "host": "271", + "scheme": "磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": "274", + "host": "275" }, - "initialDelaySeconds": 1868887309, - "timeoutSeconds": -528664199, - "periodSeconds": -316996074, - "successThreshold": 1933968533, - "failureThreshold": 549215478 + "initialDelaySeconds": 1308698792, + "timeoutSeconds": 1401790459, + "periodSeconds": -934378634, + "successThreshold": -1453143878, + "failureThreshold": -1129218498, + "terminationGracePeriodSeconds": 2471155705902100229 }, "readinessProbe": { "exec": { "command": [ - "278" + "276" ] }, "httpGet": { - "path": "279", - "port": -374766088, - "host": "280", - "scheme": "翜舞拉Œ", + "path": "277", + "port": -614098868, + "host": "278", + "scheme": "ȗÔÂɘɢ", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "279", + "value": "280" } ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": 802134138, + "host": "281" }, - "initialDelaySeconds": -190183379, - "timeoutSeconds": -940334911, - "periodSeconds": -341287812, - "successThreshold": 2030115750, - "failureThreshold": 1847163341 + "initialDelaySeconds": -942399354, + "timeoutSeconds": 1264624019, + "periodSeconds": -1803854120, + "successThreshold": -1412915219, + "failureThreshold": 323903711, + "terminationGracePeriodSeconds": -9192251189672401053 }, "startupProbe": { "exec": { "command": [ - "285" + "282" ] }, "httpGet": { - "path": "286", - "port": 567263590, - "host": "287", - "scheme": "KŅ/", + "path": "283", + "port": -992558278, + "host": "284", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "288", - "value": "289" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "290", - "host": "291" + "port": -402384013, + "host": "287" }, - "initialDelaySeconds": -1894250541, - "timeoutSeconds": 1962818731, - "periodSeconds": 1315054653, - "successThreshold": 711020087, - "failureThreshold": 1103049140 + "initialDelaySeconds": -181601395, + "timeoutSeconds": -617381112, + "periodSeconds": 1851229369, + "successThreshold": -560238386, + "failureThreshold": 1658749995, + "terminationGracePeriodSeconds": -4030490994049395944 }, "lifecycle": { "postStart": { "exec": { "command": [ - "292" + "288" ] }, "httpGet": { - "path": "293", - "port": -2128108224, - "host": "294", - "scheme": "δ摖", + "path": "289", + "port": "290", + "host": "291", + "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "292", + "value": "293" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": 1167615307, + "host": "294" } }, "preStop": { "exec": { "command": [ - "299" + "295" ] }, "httpGet": { - "path": "300", - "port": "301", - "host": "302", + "path": "296", + "port": -115833863, + "host": "297", + "scheme": "ì", "httpHeaders": [ { - "name": "303", - "value": "304" + "name": "298", + "value": "299" } ] }, "tcpSocket": { - "port": "305", - "host": "306" + "port": "300", + "host": "301" } } }, - "terminationMessagePath": "307", - "terminationMessagePolicy": "ƺ蛜6Ɖ飴ɎiǨź", - "imagePullPolicy": "囌{屿oiɥ嵐sC", + "terminationMessagePath": "302", + "terminationMessagePolicy": "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ", + "imagePullPolicy": "ǚ鍰\\縑ɀ撑¼蠾8餑噭", "securityContext": { "capabilities": { "add": [ - "Ǻ鱎ƙ;Nŕ" + "ņ" ], "drop": [ - "Jih亏yƕ丆録²" + ")DŽ髐njʉBn(fǂ" ] }, "privileged": false, "seLinuxOptions": { - "user": "308", - "role": "309", - "type": "310", - "level": "311" + "user": "303", + "role": "304", + "type": "305", + "level": "306" }, "windowsOptions": { - "gmsaCredentialSpecName": "312", - "gmsaCredentialSpec": "313", - "runAsUserName": "314" + "gmsaCredentialSpecName": "307", + "gmsaCredentialSpec": "308", + "runAsUserName": "309" }, - "runAsUser": -607313695104609402, - "runAsGroup": 2179199799235189619, - "runAsNonRoot": true, + "runAsUser": -6717020695319852049, + "runAsGroup": -495558749504439559, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­", + "procMount": "Ǫʓ)ǂť嗆u", "seccompProfile": { - "type": "ɔ幩še", - "localhostProfile": "315" + "type": "晲T[irȎ3Ĕ\\", + "localhostProfile": "310" } }, - "stdin": true, - "stdinOnce": true, "tty": true } ], "ephemeralContainers": [ { - "name": "316", - "image": "317", + "name": "311", + "image": "312", "command": [ - "318" + "313" ], "args": [ - "319" + "314" ], - "workingDir": "320", + "workingDir": "315", "ports": [ { - "name": "321", - "hostPort": -2113700533, - "containerPort": -2130294761, - "protocol": "pɵ{", - "hostIP": "322" + "name": "316", + "hostPort": -1656699070, + "containerPort": -1918622971, + "protocol": "ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz", + "hostIP": "317" } ], "envFrom": [ { - "prefix": "323", + "prefix": "318", "configMapRef": { - "name": "324", + "name": "319", "optional": true }, "secretRef": { - "name": "325", + "name": "320", "optional": false } } ], "env": [ { - "name": "326", - "value": "327", + "name": "321", + "value": "322", "valueFrom": { "fieldRef": { - "apiVersion": "328", - "fieldPath": "329" + "apiVersion": "323", + "fieldPath": "324" }, "resourceFieldRef": { - "containerName": "330", - "resource": "331", - "divisor": "878" + "containerName": "325", + "resource": "326", + "divisor": "69" }, "configMapKeyRef": { - "name": "332", - "key": "333", + "name": "327", + "key": "328", "optional": true }, "secretKeyRef": { - "name": "334", - "key": "335", + "name": "329", + "key": "330", "optional": false } } @@ -1017,251 +1021,254 @@ ], "resources": { "limits": { - "銆jʒǚ鍰\\縑": "992" + "1b": "328" }, "requests": { - "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ": "400" + "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊": "699" } }, "volumeMounts": [ { - "name": "336", - "mountPath": "337", - "subPath": "338", - "mountPropagation": "(fǂǢ曣ŋayå", - "subPathExpr": "339" + "name": "331", + "readOnly": true, + "mountPath": "332", + "subPath": "333", + "mountPropagation": "Ik(dŊiɢzĮ蛋I", + "subPathExpr": "334" } ], "volumeDevices": [ { - "name": "340", - "devicePath": "341" + "name": "335", + "devicePath": "336" } ], "livenessProbe": { "exec": { "command": [ - "342" + "337" ] }, "httpGet": { - "path": "343", - "port": 1616390418, - "host": "344", - "scheme": "趭(娕uE增猍ǵ x", + "path": "338", + "port": "339", + "host": "340", + "scheme": "ȥ}礤铟怖ý萜Ǖ", "httpHeaders": [ { - "name": "345", - "value": "346" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "347", - "host": "348" + "port": -1088996269, + "host": "343" }, - "initialDelaySeconds": -1320027474, - "timeoutSeconds": -1750169306, - "periodSeconds": 2112112129, - "successThreshold": 528603974, - "failureThreshold": -342387625 + "initialDelaySeconds": -1922458514, + "timeoutSeconds": 1480364858, + "periodSeconds": 692511776, + "successThreshold": -1231653807, + "failureThreshold": -36573584, + "terminationGracePeriodSeconds": -2524837786321986358 }, "readinessProbe": { "exec": { "command": [ - "349" + "344" ] }, "httpGet": { - "path": "350", - "port": "351", - "host": "352", - "scheme": "/Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ", + "path": "345", + "port": 1219644543, + "host": "346", + "scheme": "ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy", "httpHeaders": [ { - "name": "353", - "value": "354" + "name": "347", + "value": "348" } ] }, "tcpSocket": { - "port": "355", - "host": "356" + "port": "349", + "host": "350" }, - "initialDelaySeconds": 2036955392, - "timeoutSeconds": 626243488, - "periodSeconds": -1920304485, - "successThreshold": -1842062977, - "failureThreshold": 1424401373 + "initialDelaySeconds": 652646450, + "timeoutSeconds": 757223010, + "periodSeconds": -1912967242, + "successThreshold": -2106399359, + "failureThreshold": 1443270783, + "terminationGracePeriodSeconds": -4462364494060795190 }, "startupProbe": { "exec": { "command": [ - "357" + "351" ] }, "httpGet": { - "path": "358", - "port": "359", - "host": "360", - "scheme": "æ盪泙若`l}Ñ蠂Ü", + "path": "352", + "port": -902839620, + "host": "353", + "scheme": "縆łƑ[澔槃JŵǤ桒ɴ鉂W", "httpHeaders": [ { - "name": "361", - "value": "362" + "name": "354", + "value": "355" } ] }, "tcpSocket": { - "port": 1388874570, - "host": "363" + "port": "356", + "host": "357" }, - "initialDelaySeconds": 1618861163, - "timeoutSeconds": 413903479, - "periodSeconds": 1708236944, - "successThreshold": -1192140557, - "failureThreshold": 1961354355 + "initialDelaySeconds": -574742201, + "timeoutSeconds": -1182912186, + "periodSeconds": -514169648, + "successThreshold": -1186167291, + "failureThreshold": 64459150, + "terminationGracePeriodSeconds": -4166164136222066963 }, "lifecycle": { "postStart": { "exec": { "command": [ - "364" + "358" ] }, "httpGet": { - "path": "365", - "port": -1347045470, - "host": "366", - "scheme": "¨Ix糂腂ǂǚŜEuEy", + "path": "359", + "port": "360", + "host": "361", + "scheme": "卶滿筇ȟP:/a殆诵H玲鑠ĭ$#", "httpHeaders": [ { - "name": "367", - "value": "368" + "name": "362", + "value": "363" } ] }, "tcpSocket": { - "port": -1945921250, - "host": "369" + "port": "364", + "host": "365" } }, "preStop": { "exec": { "command": [ - "370" + "366" ] }, "httpGet": { - "path": "371", - "port": 1605974497, - "host": "372", - "scheme": "m坊柩劄奼[ƕƑĝ", + "path": "367", + "port": 1791758702, + "host": "368", + "scheme": "tl敷斢杧ż鯀", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "369", + "value": "370" } ] }, "tcpSocket": { - "port": 293042649, - "host": "375" + "port": "371", + "host": "372" } } }, - "terminationMessagePath": "376", - "terminationMessagePolicy": "ǔvÄÚ×p鬷m罂o3ǰ廋i乳'", - "imagePullPolicy": "xƂ9阠", + "terminationMessagePath": "373", + "terminationMessagePolicy": "鸔ɧWǘ炙", + "imagePullPolicy": "ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "[澔槃JŵǤ桒" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "377", - "role": "378", - "type": "379", - "level": "380" + "user": "374", + "role": "375", + "type": "376", + "level": "377" }, "windowsOptions": { - "gmsaCredentialSpecName": "381", - "gmsaCredentialSpec": "382", - "runAsUserName": "383" + "gmsaCredentialSpecName": "378", + "gmsaCredentialSpec": "379", + "runAsUserName": "380" }, - "runAsUser": -122212946149411097, - "runAsGroup": -6534543348401656067, + "runAsUser": 2114633499332155907, + "runAsGroup": -1232960403847883886, "runAsNonRoot": true, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "", + "procMount": "铳s44矕Ƈè*鑏=", "seccompProfile": { - "type": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠", - "localhostProfile": "384" + "type": "ʨ|ǓÓ敆OɈÏ 瞍髃#", + "localhostProfile": "381" } }, - "stdinOnce": true, - "targetContainerName": "385" + "stdin": true, + "tty": true, + "targetContainerName": "382" } ], - "restartPolicy": "S", - "terminationGracePeriodSeconds": 2296052591495331583, - "activeDeadlineSeconds": 4885169856784949611, - "dnsPolicy": "Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "W歹s梊ɥʋăƻ", + "terminationGracePeriodSeconds": 1031455728822209328, + "activeDeadlineSeconds": 579099652389333099, + "dnsPolicy": "'蠨磼O_h盌3+Œ9两@8", "nodeSelector": { - "386": "387" + "383": "384" }, - "serviceAccountName": "388", - "serviceAccount": "389", + "serviceAccountName": "385", + "serviceAccount": "386", "automountServiceAccountToken": true, - "nodeName": "390", + "nodeName": "387", "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "391", - "role": "392", - "type": "393", - "level": "394" + "user": "388", + "role": "389", + "type": "390", + "level": "391" }, "windowsOptions": { - "gmsaCredentialSpecName": "395", - "gmsaCredentialSpec": "396", - "runAsUserName": "397" + "gmsaCredentialSpecName": "392", + "gmsaCredentialSpec": "393", + "runAsUserName": "394" }, - "runAsUser": 711750319800111437, - "runAsGroup": -6445633177475289195, + "runAsUser": 3011215457607075123, + "runAsGroup": -2549376519991319825, "runAsNonRoot": true, "supplementalGroups": [ - -7316357525352987834 + 8667724420266764868 ], - "fsGroup": 7306468936162090894, + "fsGroup": -8322686588708543096, "sysctls": [ { - "name": "398", - "value": "399" + "name": "395", + "value": "396" } ], - "fsGroupChangePolicy": "肄$鬬", + "fsGroupChangePolicy": "4虵p蓋沥7uPƒ", "seccompProfile": { - "type": "矐_", - "localhostProfile": "400" + "type": "", + "localhostProfile": "397" } }, "imagePullSecrets": [ { - "name": "401" + "name": "398" } ], - "hostname": "402", - "subdomain": "403", + "hostname": "399", + "subdomain": "400", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1269,19 +1276,19 @@ { "matchExpressions": [ { - "key": "404", - "operator": "豎穜姰l咑耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌ", + "key": "401", + "operator": "灭ƴɦ燻踸陴Sĕ濦", "values": [ - "405" + "402" ] } ], "matchFields": [ { - "key": "406", - "operator": "柯?B俋¬h`職铳s44矕Ƈ", + "key": "403", + "operator": "筿ɾ", "values": [ - "407" + "404" ] } ] @@ -1290,23 +1297,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -259047269, "preference": { "matchExpressions": [ { - "key": "408", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "405", + "operator": "霎ȃň", "values": [ - "409" + "406" ] } ], "matchFields": [ { - "key": "410", - "operator": "ƒK07曳w", + "key": "407", + "operator": "ʓ滨", "values": [ - "411" + "408" ] } ] @@ -1319,26 +1326,26 @@ { "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" + "KA-._d._.Um.-__0": "5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "3QC1--L--v_Z--ZgC", + "operator": "Exists" } ] }, "namespaces": [ - "418" + "415" ], - "topologyKey": "419", + "topologyKey": "416", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "1rhm-5y--z-0/b17ca-_p-y.eQ9": "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" }, "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", + "key": "7Vz_6.Hz_V_.r_v_._X", "operator": "Exists" } ] @@ -1347,31 +1354,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": 2001693468, "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" + "8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2": "PE..24-O._.v._9-cz.-Y6T4gz" }, "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": "Q_--v-3-BzO5z80n_HtW", + "operator": "NotIn", + "values": [ + "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w" + ] } ] }, "namespaces": [ - "432" + "429" ], - "topologyKey": "433", + "topologyKey": "430", "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" + "f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9": "P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA" }, "matchExpressions": [ { - "key": "C-_20", - "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" + ] } ] } @@ -1384,30 +1397,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6": "pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C" }, "matchExpressions": [ { - "key": "4b699/B9n.2", - "operator": "In", + "key": "T", + "operator": "NotIn", "values": [ - "MM7-.e.x" + "" ] } ] }, "namespaces": [ - "446" + "443" ], - "topologyKey": "447", + "topologyKey": "444", "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" + "T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI": "I-mt4...rQ" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "vSW_4-__h", + "operator": "In", + "values": [ + "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1" + ] } ] } @@ -1415,34 +1431,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1920802622, "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" + "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": "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", + "key": "8v---a9j23/9", + "operator": "In", "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" + "y__y.9O.L-.m.3h" ] } ] }, "namespaces": [ - "460" + "457" ], - "topologyKey": "461", + "topologyKey": "458", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "VM5..-N_H_55..--E3_2D-1DW__o_8": "kzB7U_.Q.45cy-.._K" }, "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", - "operator": "DoesNotExist" + "key": "6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG", + "operator": "Exists" } ] } @@ -1451,66 +1467,66 @@ ] } }, - "schedulerName": "468", + "schedulerName": "465", "tolerations": [ { - "key": "469", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "470", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "466", + "operator": "NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ", + "value": "467", + "effect": ";牆詒ĸąsƶ", + "tolerationSeconds": -456102350746071856 } ], "hostAliases": [ { - "ip": "471", + "ip": "468", "hostnames": [ - "472" + "469" ] } ], - "priorityClassName": "473", - "priority": -1756088332, + "priorityClassName": "470", + "priority": 1188651641, "dnsConfig": { "nameservers": [ - "474" + "471" ], "searches": [ - "475" + "472" ], "options": [ { - "name": "476", - "value": "477" + "name": "473", + "value": "474" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW" } ], - "runtimeClassName": "478", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "475", + "enableServiceLinks": false, + "preemptionPolicy": "džH0ƾ瘿¸'q钨羲;\"T#sM網mA", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "»Š": "727" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "479", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -388643187, + "topologyKey": "476", + "whenUnsatisfiable": "i僠噚恗N", "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" + "z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0": "g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T" }, "matchExpressions": [ { - "key": "KTlO.__0PX", + "key": "br..1.--S-w-5_..D.pz_-ad", "operator": "In", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "Q.__y644" ] } ] @@ -1522,18 +1538,18 @@ } }, "status": { - "replicas": -1350756342, - "fullyLabeledReplicas": 131165488, - "readyReplicas": 1801862647, - "availableReplicas": -212999359, - "observedGeneration": 6343420286878457918, + "replicas": -2095627603, + "fullyLabeledReplicas": 516555648, + "readyReplicas": 2104777337, + "availableReplicas": 876226690, + "observedGeneration": 1436288218546692842, "conditions": [ { - "type": "", - "status": "ʋǞbȫ魙Ōȇ", - "lastTransitionTime": "2443-02-01T11:09:03Z", - "reason": "486", - "message": "487" + "type": "C`牯雫", + "status": "%ÿ¼璤ňɈȀę", + "lastTransitionTime": "2951-06-01T06:00:17Z", + "reason": "483", + "message": "484" } ] } 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 5a980bf96d24..b05817ea47db 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 f0eb3507715e..8f8ac2d5ce2a 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 @@ -71,482 +71,493 @@ spec: selfLink: "28" uid: ʬ spec: - activeDeadlineSeconds: 4885169856784949611 + activeDeadlineSeconds: 579099652389333099 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "408" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "405" + operator: 霎ȃň values: - - "409" + - "406" matchFields: - - key: "410" - operator: ƒK07曳w + - key: "407" + operator: ʓ滨 values: - - "411" - weight: 1805682547 + - "408" + weight: -259047269 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "404" - operator: 豎穜姰l咑耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌ + - key: "401" + operator: 灭ƴɦ燻踸陴Sĕ濦 values: - - "405" + - "402" matchFields: - - key: "406" - operator: 柯?B俋¬h`職铳s44矕Ƈ + - key: "403" + operator: 筿ɾ values: - - "407" + - "404" 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 + - key: Q_--v-3-BzO5z80n_HtW + operator: NotIn + values: + - 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w 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 + 8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2: PE..24-O._.v._9-cz.-Y6T4gz namespaceSelector: matchExpressions: - - key: C-_20 - 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: - 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 + ? f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9 + : P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA namespaces: - - "432" - topologyKey: "433" - weight: -450654683 + - "429" + topologyKey: "430" + weight: 2001693468 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 3QC1--L--v_Z--ZgC + operator: Exists 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 + KA-._d._.Um.-__0: 5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I 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 + - key: 7Vz_6.Hz_V_.r_v_._X operator: Exists matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 1rhm-5y--z-0/b17ca-_p-y.eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX namespaces: - - "418" - topologyKey: "419" + - "415" + topologyKey: "416" 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 + - key: 8v---a9j23/9 + operator: In values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m + - y__y.9O.L-.m.3h 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 + 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 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 - operator: DoesNotExist + - key: 6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG + operator: Exists matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + VM5..-N_H_55..--E3_2D-1DW__o_8: kzB7U_.Q.45cy-.._K namespaces: - - "460" - topologyKey: "461" - weight: 1131487788 + - "457" + topologyKey: "458" + weight: 1920802622 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 - operator: In + - key: T + operator: NotIn values: - - MM7-.e.x + - "" matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + 4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: vSW_4-__h + operator: In + values: + - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1 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 + T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ namespaces: - - "446" - topologyKey: "447" + - "443" + topologyKey: "444" automountServiceAccountToken: true containers: - args: - - "247" - command: - "246" + command: + - "245" env: - - name: "254" - value: "255" + - name: "253" + value: "254" valueFrom: configMapKeyRef: - key: "261" - name: "260" - optional: false + key: "260" + name: "259" + optional: true fieldRef: - apiVersion: "256" - fieldPath: "257" + apiVersion: "255" + fieldPath: "256" resourceFieldRef: - containerName: "258" - divisor: "774" - resource: "259" + containerName: "257" + divisor: "9" + resource: "258" secretKeyRef: - key: "263" - name: "262" + key: "262" + name: "261" optional: false envFrom: - configMapRef: - name: "252" + name: "251" optional: false - prefix: "251" + prefix: "250" secretRef: - name: "253" - optional: false - image: "245" - imagePullPolicy: 囌{屿oiɥ嵐sC + name: "252" + optional: true + image: "244" + imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭 lifecycle: postStart: exec: command: - - "292" + - "288" httpGet: - host: "294" + host: "291" httpHeaders: - - name: "295" - value: "296" - path: "293" - port: -2128108224 - scheme: δ摖 + - name: "292" + value: "293" + path: "289" + port: "290" + scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tcpSocket: - host: "298" - port: "297" + host: "294" + port: 1167615307 preStop: exec: command: - - "299" + - "295" httpGet: - host: "302" + host: "297" httpHeaders: - - name: "303" - value: "304" - path: "300" - port: "301" + - name: "298" + value: "299" + path: "296" + port: -115833863 + scheme: ì tcpSocket: - host: "306" - port: "305" + host: "301" + port: "300" livenessProbe: exec: command: - - "270" - failureThreshold: 549215478 + - "269" + failureThreshold: -1129218498 httpGet: - host: "273" + host: "271" httpHeaders: - - name: "274" - value: "275" - path: "271" - port: "272" - scheme: E¦ - initialDelaySeconds: 1868887309 - periodSeconds: -316996074 - successThreshold: 1933968533 + - name: "272" + value: "273" + path: "270" + port: -1468297794 + scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ + initialDelaySeconds: 1308698792 + periodSeconds: -934378634 + successThreshold: -1453143878 tcpSocket: - host: "277" - port: "276" - timeoutSeconds: -528664199 - name: "244" + host: "275" + port: "274" + terminationGracePeriodSeconds: 2471155705902100229 + timeoutSeconds: 1401790459 + name: "243" ports: - - containerPort: 508868877 - hostIP: "250" - hostPort: -888240870 - name: "249" - protocol: 岼昕ĬÇó藢xɮĵȑ6L*Z + - containerPort: -1784617397 + hostIP: "249" + hostPort: 465972736 + name: "248" + protocol: Ƭƶ氩Ȩ<6 readinessProbe: exec: command: - - "278" - failureThreshold: 1847163341 + - "276" + failureThreshold: 323903711 httpGet: - host: "280" + host: "278" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -374766088 - scheme: 翜舞拉Œ - initialDelaySeconds: -190183379 - periodSeconds: -341287812 - successThreshold: 2030115750 + - name: "279" + value: "280" + path: "277" + port: -614098868 + scheme: ȗÔÂɘɢ + initialDelaySeconds: -942399354 + periodSeconds: -1803854120 + successThreshold: -1412915219 tcpSocket: - host: "284" - port: "283" - timeoutSeconds: -940334911 + host: "281" + port: 802134138 + terminationGracePeriodSeconds: -9192251189672401053 + timeoutSeconds: 1264624019 resources: limits: - $î.Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ: "393" + lNKƙ順\E¦队偯J僳徥淳: "93" requests: - <6: "446" + 媀瓄&翜舞拉Œɥ颶妧Ö闊: "472" securityContext: allowPrivilegeEscalation: true capabilities: add: - - Ǻ鱎ƙ;Nŕ + - ņ drop: - - Jih亏yƕ丆録² + - )DŽ髐njʉBn(fǂ privileged: false - procMount: 砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­ + procMount: Ǫʓ)ǂť嗆u readOnlyRootFilesystem: true - runAsGroup: 2179199799235189619 - runAsNonRoot: true - runAsUser: -607313695104609402 + runAsGroup: -495558749504439559 + runAsNonRoot: false + runAsUser: -6717020695319852049 seLinuxOptions: - level: "311" - role: "309" - type: "310" - user: "308" + level: "306" + role: "304" + type: "305" + user: "303" seccompProfile: - localhostProfile: "315" - type: ɔ幩še + localhostProfile: "310" + type: 晲T[irȎ3Ĕ\ windowsOptions: - gmsaCredentialSpec: "313" - gmsaCredentialSpecName: "312" - runAsUserName: "314" + gmsaCredentialSpec: "308" + gmsaCredentialSpecName: "307" + runAsUserName: "309" startupProbe: exec: command: - - "285" - failureThreshold: 1103049140 + - "282" + failureThreshold: 1658749995 httpGet: - host: "287" + host: "284" httpHeaders: - - name: "288" - value: "289" - path: "286" - port: 567263590 - scheme: KŅ/ - initialDelaySeconds: -1894250541 - periodSeconds: 1315054653 - successThreshold: 711020087 + - name: "285" + value: "286" + path: "283" + port: -992558278 + scheme: 鯂²静 + initialDelaySeconds: -181601395 + periodSeconds: 1851229369 + successThreshold: -560238386 tcpSocket: - host: "291" - port: "290" - timeoutSeconds: 1962818731 - stdin: true - stdinOnce: true - terminationMessagePath: "307" - terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź + host: "287" + port: -402384013 + terminationGracePeriodSeconds: -4030490994049395944 + timeoutSeconds: -617381112 + terminationMessagePath: "302" + terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ tty: true volumeDevices: - - devicePath: "269" - name: "268" + - devicePath: "268" + name: "267" volumeMounts: - - mountPath: "265" - mountPropagation: 翑0展}硐庰%皧V垾 - name: "264" - readOnly: true - subPath: "266" - subPathExpr: "267" - workingDir: "248" + - mountPath: "264" + mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃 + name: "263" + subPath: "265" + subPathExpr: "266" + workingDir: "247" dnsConfig: nameservers: - - "474" + - "471" options: - - name: "476" - value: "477" + - name: "473" + value: "474" searches: - - "475" - dnsPolicy: Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "472" + dnsPolicy: '''蠨磼O_h盌3+Œ9两@8' + enableServiceLinks: false ephemeralContainers: - args: - - "319" + - "314" command: - - "318" + - "313" env: - - name: "326" - value: "327" + - name: "321" + value: "322" valueFrom: configMapKeyRef: - key: "333" - name: "332" + key: "328" + name: "327" optional: true fieldRef: - apiVersion: "328" - fieldPath: "329" + apiVersion: "323" + fieldPath: "324" resourceFieldRef: - containerName: "330" - divisor: "878" - resource: "331" + containerName: "325" + divisor: "69" + resource: "326" secretKeyRef: - key: "335" - name: "334" + key: "330" + name: "329" optional: false envFrom: - configMapRef: - name: "324" + name: "319" optional: true - prefix: "323" + prefix: "318" secretRef: - name: "325" + name: "320" optional: false - image: "317" - imagePullPolicy: xƂ9阠 + image: "312" + imagePullPolicy: ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "364" + - "358" httpGet: - host: "366" + host: "361" httpHeaders: - - name: "367" - value: "368" - path: "365" - port: -1347045470 - scheme: ¨Ix糂腂ǂǚŜEuEy + - name: "362" + value: "363" + path: "359" + port: "360" + scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$# tcpSocket: - host: "369" - port: -1945921250 + host: "365" + port: "364" preStop: exec: command: - - "370" + - "366" httpGet: - host: "372" + host: "368" httpHeaders: - - name: "373" - value: "374" - path: "371" - port: 1605974497 - scheme: m坊柩劄奼[ƕƑĝ + - name: "369" + value: "370" + path: "367" + port: 1791758702 + scheme: tl敷斢杧ż鯀 tcpSocket: - host: "375" - port: 293042649 + host: "372" + port: "371" livenessProbe: exec: command: - - "342" - failureThreshold: -342387625 + - "337" + failureThreshold: -36573584 httpGet: - host: "344" + host: "340" httpHeaders: - - name: "345" - value: "346" - path: "343" - port: 1616390418 - scheme: 趭(娕uE增猍ǵ x - initialDelaySeconds: -1320027474 - periodSeconds: 2112112129 - successThreshold: 528603974 + - name: "341" + value: "342" + path: "338" + port: "339" + scheme: ȥ}礤铟怖ý萜Ǖ + initialDelaySeconds: -1922458514 + periodSeconds: 692511776 + successThreshold: -1231653807 tcpSocket: - host: "348" - port: "347" - timeoutSeconds: -1750169306 - name: "316" + host: "343" + port: -1088996269 + terminationGracePeriodSeconds: -2524837786321986358 + timeoutSeconds: 1480364858 + name: "311" ports: - - containerPort: -2130294761 - hostIP: "322" - hostPort: -2113700533 - name: "321" - protocol: pɵ{ + - containerPort: -1918622971 + hostIP: "317" + hostPort: -1656699070 + name: "316" + protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz readinessProbe: exec: command: - - "349" - failureThreshold: 1424401373 + - "344" + failureThreshold: 1443270783 httpGet: - host: "352" + host: "346" httpHeaders: - - name: "353" - value: "354" - path: "350" - port: "351" - scheme: /Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ - initialDelaySeconds: 2036955392 - periodSeconds: -1920304485 - successThreshold: -1842062977 + - name: "347" + value: "348" + path: "345" + port: 1219644543 + scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy + initialDelaySeconds: 652646450 + periodSeconds: -1912967242 + successThreshold: -2106399359 tcpSocket: - host: "356" - port: "355" - timeoutSeconds: 626243488 + host: "350" + port: "349" + terminationGracePeriodSeconds: -4462364494060795190 + timeoutSeconds: 757223010 resources: limits: - 銆jʒǚ鍰\縑: "992" + 1b: "328" requests: - 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ: "400" + '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699" securityContext: allowPrivilegeEscalation: false capabilities: add: - - wy¶熀ďJZ漤ŗ坟Ů郵[+扴ȨŮ+朷Ǝ膯lj + - o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ drop: - - "" + - W:ĸ輦唊#v privileged: false - procMount: 碧闳ȩr + procMount: Ÿ8T 苧yñKJɐ扵 readOnlyRootFilesystem: true - runAsGroup: 4468469649483616089 - runAsNonRoot: false - runAsUser: -5821728037462880994 + runAsGroup: 8839567045362091290 + runAsNonRoot: true + runAsUser: 1946087648860511217 seLinuxOptions: - level: "239" - role: "237" - type: "238" - user: "236" + level: "238" + role: "236" + type: "237" + user: "235" seccompProfile: - localhostProfile: "243" - type: "" + localhostProfile: "242" + type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 windowsOptions: - gmsaCredentialSpec: "241" - gmsaCredentialSpecName: "240" - runAsUserName: "242" + gmsaCredentialSpec: "240" + gmsaCredentialSpecName: "239" + runAsUserName: "241" startupProbe: exec: command: - "214" - failureThreshold: -1150474479 + failureThreshold: -2107743490 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" + - name: "217" + value: "218" path: "215" - port: "216" - scheme: ĺɗŹ倗S晒嶗UÐ_ƮA攤 - initialDelaySeconds: 1885897314 - periodSeconds: 1054858106 - successThreshold: 232569106 + port: 1623772781 + scheme: UÐ_ƮA攤/ɸɎ + initialDelaySeconds: 1054858106 + periodSeconds: -1150474479 + successThreshold: 744319626 tcpSocket: host: "220" - port: -498930176 - timeoutSeconds: -465677631 - stdinOnce: true - terminationMessagePath: "235" - terminationMessagePolicy: ɖ緕ȚÍ勅跦Opwǩ + port: "219" + terminationGracePeriodSeconds: 8569885835306406695 + timeoutSeconds: 232569106 + stdin: true + terminationMessagePath: "234" + terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' tty: true volumeDevices: - devicePath: "200" @@ -724,66 +738,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "390" + nodeName: "387" nodeSelector: - "386": "387" + "383": "384" overhead: - 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452" - preemptionPolicy: ûŠl倳ţü¿Sʟ鍡 - priority: -1756088332 - priorityClassName: "473" + »Š: "727" + preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA + priority: 1188651641 + priorityClassName: "470" readinessGates: - - conditionType: '#sM網' - restartPolicy: S - runtimeClassName: "478" - schedulerName: "468" + - conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW + restartPolicy: W歹s梊ɥʋăƻ + runtimeClassName: "475" + schedulerName: "465" securityContext: - fsGroup: 7306468936162090894 - fsGroupChangePolicy: 肄$鬬 - runAsGroup: -6445633177475289195 + fsGroup: -8322686588708543096 + fsGroupChangePolicy: 4虵p蓋沥7uPƒ + runAsGroup: -2549376519991319825 runAsNonRoot: true - runAsUser: 711750319800111437 + runAsUser: 3011215457607075123 seLinuxOptions: - level: "394" - role: "392" - type: "393" - user: "391" + level: "391" + role: "389" + type: "390" + user: "388" seccompProfile: - localhostProfile: "400" - type: 矐_ + localhostProfile: "397" + type: "" supplementalGroups: - - -7316357525352987834 + - 8667724420266764868 sysctls: - - name: "398" - value: "399" + - name: "395" + value: "396" windowsOptions: - gmsaCredentialSpec: "396" - gmsaCredentialSpecName: "395" - runAsUserName: "397" - serviceAccount: "389" - serviceAccountName: "388" + gmsaCredentialSpec: "393" + gmsaCredentialSpecName: "392" + runAsUserName: "394" + serviceAccount: "386" + serviceAccountName: "385" setHostnameAsFQDN: false - shareProcessNamespace: false - subdomain: "403" - terminationGracePeriodSeconds: 2296052591495331583 + shareProcessNamespace: true + subdomain: "400" + terminationGracePeriodSeconds: 1031455728822209328 tolerations: - - effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸ - key: "469" - operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ - tolerationSeconds: -3147305732428645642 - value: "470" + - effect: ;牆詒ĸąsƶ + key: "466" + operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ + tolerationSeconds: -456102350746071856 + value: "467" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: KTlO.__0PX + - key: br..1.--S-w-5_..D.pz_-ad operator: In values: - - V6K_.3_583-6.f-.9-.V..Q-K_6_3 + - Q.__y644 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 - maxSkew: -447559705 - topologyKey: "479" - whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒 + z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0: g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T + maxSkew: -388643187 + topologyKey: "476" + whenUnsatisfiable: i僠噚恗N volumes: - awsElasticBlockStore: fsType: "47" @@ -1034,14 +1048,14 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -212999359 + availableReplicas: 876226690 conditions: - - lastTransitionTime: "2443-02-01T11:09:03Z" - message: "487" - reason: "486" - status: ʋǞbȫ魙Ōȇ - type: "" - fullyLabeledReplicas: 131165488 - observedGeneration: 6343420286878457918 - readyReplicas: 1801862647 - replicas: -1350756342 + - lastTransitionTime: "2951-06-01T06:00:17Z" + message: "484" + reason: "483" + status: '%ÿ¼璤ňɈȀę' + type: C`牯雫 + fullyLabeledReplicas: 516555648 + observedGeneration: 1436288218546692842 + readyReplicas: 2104777337 + replicas: -2095627603 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 b8e1e3b634e5..1b1babdcf8e7 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,195 +1469,198 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "volumeClaimTemplates": [ { "metadata": { - "name": "487", - "generateName": "488", - "namespace": "489", - "selfLink": "490", - "uid": "4LM桵Ţ宧ʜ嵹ʌ5Ë}", - "resourceVersion": "932117408350471144", - "generation": 4446917721686139397, + "name": "485", + "generateName": "486", + "namespace": "487", + "selfLink": "488", + "uid": "t;Äƾ53§T旦y6辱Ŵ鎥", + "resourceVersion": "5814982353389179965", + "generation": 1310178674290624050, "creationTimestamp": null, - "deletionGracePeriodSeconds": -2948232978388571762, + "deletionGracePeriodSeconds": 1872311292774274066, "labels": { - "492": "493" + "490": "491" }, "annotations": { - "494": "495" + "492": "493" }, "ownerReferences": [ { - "apiVersion": "496", - "kind": "497", - "name": "498", - "uid": "憲Ħ焵i,ŋ", + "apiVersion": "494", + "kind": "495", + "name": "496", + "uid": "tY圻醆锛[M牍Ƃ", "controller": false, - "blockOwnerDeletion": false + "blockOwnerDeletion": true } ], "finalizers": [ - "499" + "497" ], - "clusterName": "500", + "clusterName": "498", "managedFields": [ { - "manager": "501", - "operation": "Ʀ§:Ǫ魚Emv看ƜZ穑S", - "apiVersion": "502", - "fieldsType": "503" + "manager": "499", + "operation": "鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹", + "apiVersion": "500", + "fieldsType": "501" } ] }, "spec": { "accessModes": [ - "Is{豘ñ澀j劎笜釼鮭Ɯ" + "狳u恺Ŕsʅ" ], "selector": { "matchLabels": { - "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" + "De.._.-f..__QM__G-_OHh": "9_-._3.x.8iq" }, "matchExpressions": [ { - "key": "R_-U7-F34-6.-_-O-F__h9", - "operator": "Exists" + "key": "2-3--a1.cv-k4w7g36-vm86----3-893097-0zy976-0--q-90fo4grk4k-116-h8-77/l-..j--s-_Y-_i.._---6_.0.mr", + "operator": "In", + "values": [ + "Wx-DP__7-6w-._k2B_----H.5.Kw0V8_-__n29xr.5GDm_v.-H.L" + ] } ] }, "resources": { "limits": { - "獪霛圦Ƶ": "159" + "HǹKPaǿ嗦]ɬ朞ɄƶÁ1!Ɯa": "243" }, "requests": { - "-劺b": "142" + "ƥ": "89" } }, - "volumeName": "510", - "storageClassName": "511", - "volumeMode": "ê婼SƸ炃\u0026-Ƹ绿浠穸æǷ^ɘʘ", + "volumeName": "508", + "storageClassName": "509", + "volumeMode": "", "dataSource": { - "apiGroup": "512", - "kind": "513", - "name": "514" + "apiGroup": "510", + "kind": "511", + "name": "512" } }, "status": { - "phase": "s檣ŝƚʤ\u003cƟʚ`÷碹頒D", + "phase": "ɫòDÓǶɟ", "accessModes": [ - "Ƭ)攕ƕ遻W?Ɔ遗1湾宑·Ʀ" + "b隊曻:Bȗ轊" ], "capacity": { - "Ȍ璣nj儱ƚWA麭T棞詢¡ɅǏõxġ": "858" + "": "375" }, "conditions": [ { - "type": "j=击", - "status": "|{軈ĕʦ竳÷ 骵蓧應ĸ簋", - "lastProbeTime": "2322-05-21T16:41:46Z", - "lastTransitionTime": "2939-10-28T17:50:12Z", - "reason": "515", - "message": "516" + "type": "b賝łų$Q郔", + "status": "Ċ凭Ǩ輹AÀŪ", + "lastProbeTime": "2913-03-10T01:14:02Z", + "lastTransitionTime": "2359-04-16T09:19:58Z", + "reason": "513", + "message": "514" } ] } } ], - "serviceName": "517", - "podManagementPolicy": "验`垥-罏Dz咘", + "serviceName": "515", + "podManagementPolicy": "t史C\u003c镼ƶƭ", "updateStrategy": { - "type": "Ğy", + "type": "蘃ʋxr®", "rollingUpdate": { - "partition": -758476265 + "partition": 1241629379 } }, - "revisionHistoryLimit": 1260831675 + "revisionHistoryLimit": -2047047343 }, "status": { - "observedGeneration": 8438550020448048629, - "replicas": -83108222, - "readyReplicas": 1738133199, - "currentReplicas": -1053645465, - "updatedReplicas": -1271316132, - "currentRevision": "518", - "updateRevision": "519", - "collisionCount": -607784054, + "observedGeneration": -7554417720389717167, + "replicas": -1084756341, + "readyReplicas": -2001638406, + "currentReplicas": -1687188044, + "updatedReplicas": 497109907, + "currentRevision": "516", + "updateRevision": "517", + "collisionCount": 916590407, "conditions": [ { - "type": "²Ŕİuƶ½OE弞", - "status": "ɶċŶv}鮩澊聝楧p问Ð7ɞŶJŖ)j", - "lastTransitionTime": "2235-11-16T23:26:27Z", - "reason": "520", - "message": "521" + "type": "ȁ隞ĻȀ", + "status": "jËUe", + "lastTransitionTime": "2859-10-03T21:26:35Z", + "reason": "518", + "message": "519" } ] } 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 de788939c5e6..a39d192dadfb 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 a050fb58ce32..6aea73cf5a67 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 @@ -30,16 +30,16 @@ metadata: selfLink: "5" uid: "7" spec: - podManagementPolicy: 验`垥-罏Dz咘 + podManagementPolicy: t史C<镼ƶƭ replicas: 896585016 - revisionHistoryLimit: 1260831675 + revisionHistoryLimit: -2047047343 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: "517" + serviceName: "515" template: metadata: annotations: @@ -71,487 +71,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -585,37 +591,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -635,6 +642,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -647,22 +655,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -672,49 +681,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -727,66 +738,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1042,84 +1053,86 @@ spec: volumePath: "101" updateStrategy: rollingUpdate: - partition: -758476265 - type: Ğy + partition: 1241629379 + type: 蘃ʋxr® volumeClaimTemplates: - metadata: annotations: - "494": "495" - clusterName: "500" + "492": "493" + clusterName: "498" creationTimestamp: null - deletionGracePeriodSeconds: -2948232978388571762 + deletionGracePeriodSeconds: 1872311292774274066 finalizers: - - "499" - generateName: "488" - generation: 4446917721686139397 + - "497" + generateName: "486" + generation: 1310178674290624050 labels: - "492": "493" + "490": "491" managedFields: - - apiVersion: "502" - fieldsType: "503" - manager: "501" - operation: Ʀ§:Ǫ魚Emv看ƜZ穑S - name: "487" - namespace: "489" + - apiVersion: "500" + fieldsType: "501" + manager: "499" + operation: 鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹 + name: "485" + namespace: "487" ownerReferences: - - apiVersion: "496" - blockOwnerDeletion: false + - apiVersion: "494" + blockOwnerDeletion: true controller: false - kind: "497" - name: "498" - uid: 憲Ħ焵i,ŋ - resourceVersion: "932117408350471144" - selfLink: "490" - uid: 4LM桵Ţ宧ʜ嵹ʌ5Ë} + kind: "495" + name: "496" + uid: tY圻醆锛[M牍Ƃ + resourceVersion: "5814982353389179965" + selfLink: "488" + uid: t;Äƾ53§T旦y6辱Ŵ鎥 spec: accessModes: - - Is{豘ñ澀j劎笜釼鮭Ɯ + - 狳u恺Ŕsʅ dataSource: - apiGroup: "512" - kind: "513" - name: "514" + apiGroup: "510" + kind: "511" + name: "512" resources: limits: - 獪霛圦Ƶ: "159" + HǹKPaǿ嗦]ɬ朞ɄƶÁ1!Ɯa: "243" requests: - -劺b: "142" + ƥ: "89" selector: matchExpressions: - - key: R_-U7-F34-6.-_-O-F__h9 - operator: Exists + - key: 2-3--a1.cv-k4w7g36-vm86----3-893097-0zy976-0--q-90fo4grk4k-116-h8-77/l-..j--s-_Y-_i.._---6_.0.mr + operator: In + values: + - Wx-DP__7-6w-._k2B_----H.5.Kw0V8_-__n29xr.5GDm_v.-H.L matchLabels: - 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: "511" - volumeMode: ê婼SƸ炃&-Ƹ绿浠穸æǷ^ɘʘ - volumeName: "510" + De.._.-f..__QM__G-_OHh: 9_-._3.x.8iq + storageClassName: "509" + volumeMode: "" + volumeName: "508" status: accessModes: - - Ƭ)攕ƕ遻W?Ɔ遗1湾宑·Ʀ + - b隊曻:Bȗ轊 capacity: - Ȍ璣nj儱ƚWA麭T棞詢¡ɅǏõxġ: "858" + "": "375" conditions: - - lastProbeTime: "2322-05-21T16:41:46Z" - lastTransitionTime: "2939-10-28T17:50:12Z" - message: "516" - reason: "515" - status: '|{軈ĕʦ竳÷ 骵蓧應ĸ簋' - type: j=击 - phase: s檣ŝƚʤ<Ɵʚ`÷碹頒D + - lastProbeTime: "2913-03-10T01:14:02Z" + lastTransitionTime: "2359-04-16T09:19:58Z" + message: "514" + reason: "513" + status: Ċ凭Ǩ輹AÀŪ + type: b賝łų$Q郔 + phase: ɫòDÓǶɟ status: - collisionCount: -607784054 + collisionCount: 916590407 conditions: - - lastTransitionTime: "2235-11-16T23:26:27Z" - message: "521" - reason: "520" - status: ɶċŶv}鮩澊聝楧p问Ð7ɞŶJŖ)j - type: ²Ŕİuƶ½OE弞 - currentReplicas: -1053645465 - currentRevision: "518" - observedGeneration: 8438550020448048629 - readyReplicas: 1738133199 - replicas: -83108222 - updateRevision: "519" - updatedReplicas: -1271316132 + - lastTransitionTime: "2859-10-03T21:26:35Z" + message: "519" + reason: "518" + status: jËUe + type: ȁ隞ĻȀ + currentReplicas: -1687188044 + currentRevision: "516" + observedGeneration: -7554417720389717167 + readyReplicas: -2001638406 + replicas: -1084756341 + updateRevision: "517" + updatedReplicas: 497109907 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 e9f119b4b4d1..f6880296146e 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 @@ -604,7 +604,8 @@ "timeoutSeconds": 1885897314, "periodSeconds": -465677631, "successThreshold": 1054858106, - "failureThreshold": 232569106 + "failureThreshold": 232569106, + "terminationGracePeriodSeconds": -4941250258285962800 }, "readinessProbe": { "exec": { @@ -616,7 +617,7 @@ "path": "227", "port": "228", "host": "229", - "scheme": "癃8鸖", + "scheme": "s3!Zɾģ毋", "httpHeaders": [ { "name": "230", @@ -625,14 +626,15 @@ ] }, "tcpSocket": { - "port": 896430536, + "port": 391562775, "host": "232" }, - "initialDelaySeconds": 1574150975, - "timeoutSeconds": 993144482, - "periodSeconds": 714088955, - "successThreshold": 1033766276, - "failureThreshold": -1745509819 + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101, + "terminationGracePeriodSeconds": 6232238734837754388 }, "startupProbe": { "exec": { @@ -642,38 +644,38 @@ }, "httpGet": { "path": "234", - "port": "235", - "host": "236", - "scheme": "庎D}埽uʎȺ眖R#yV'WKw(ğ儴", + "port": -1140531048, + "host": "235", "httpHeaders": [ { - "name": "237", - "value": "238" + "name": "236", + "value": "237" } ] }, "tcpSocket": { - "port": 965937684, - "host": "239" + "port": 1741405963, + "host": "238" }, - "initialDelaySeconds": -277192536, - "timeoutSeconds": -1588323253, - "periodSeconds": -20130017, - "successThreshold": -1244623134, - "failureThreshold": -1334110502 + "initialDelaySeconds": 1260448044, + "timeoutSeconds": -200461294, + "periodSeconds": -1791206950, + "successThreshold": 1160477220, + "failureThreshold": 1226391571, + "terminationGracePeriodSeconds": 6347577485454457915 }, "lifecycle": { "postStart": { "exec": { "command": [ - "240" + "239" ] }, "httpGet": { - "path": "241", - "port": -1738069460, + "path": "240", + "port": "241", "host": "242", - "scheme": "v+8Ƥ熪军g\u003e郵[+扴", + "scheme": "Opwǩ曬逴褜1ØœȠƬQg鄠", "httpHeaders": [ { "name": "243", @@ -682,381 +684,382 @@ ] }, "tcpSocket": { - "port": "245", - "host": "246" + "port": 1102291854, + "host": "245" } }, "preStop": { "exec": { "command": [ - "247" + "246" ] }, "httpGet": { - "path": "248", - "port": "249", - "host": "250", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "247", + "port": 809006670, + "host": "248", + "scheme": "扴ȨŮ+朷Ǝ膯ljVX1虊谇", "httpHeaders": [ { - "name": "251", - "value": "252" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "253", - "host": "254" + "port": -1748648882, + "host": "251" } } }, - "terminationMessagePath": "255", - "terminationMessagePolicy": "輦唊#v铿ʩȂ4ē鐭", - "imagePullPolicy": "岼昕ĬÇó藢xɮĵȑ6L*Z", + "terminationMessagePath": "252", + "terminationMessagePolicy": "t叀碧闳ȩr嚧ʣq埄", + "imagePullPolicy": "ē鐭#嬀ơŸ8T 苧yñKJɐ", "securityContext": { "capabilities": { "add": [ - "咡W" + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" ], "drop": [ - "敄lu|" + "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥" ] }, "privileged": false, "seLinuxOptions": { - "user": "256", - "role": "257", - "type": "258", - "level": "259" + "user": "253", + "role": "254", + "type": "255", + "level": "256" }, "windowsOptions": { - "gmsaCredentialSpecName": "260", - "gmsaCredentialSpec": "261", - "runAsUserName": "262" + "gmsaCredentialSpecName": "257", + "gmsaCredentialSpec": "258", + "runAsUserName": "259" }, - "runAsUser": -230763786643460687, - "runAsGroup": 8175137418799691442, + "runAsUser": -3342656999442156006, + "runAsGroup": -5569844914519516591, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "=E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ", "seccompProfile": { - "type": "硐庰%皧V垾现葢ŵ橨鬶l獕;跣H", - "localhostProfile": "263" + "type": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", + "localhostProfile": "260" } }, + "stdin": true, "tty": true } ], "containers": [ { - "name": "264", - "image": "265", + "name": "261", + "image": "262", "command": [ - "266" + "263" ], "args": [ - "267" + "264" ], - "workingDir": "268", + "workingDir": "265", "ports": [ { - "name": "269", - "hostPort": 1430286749, - "containerPort": -374766088, - "protocol": "翜舞拉Œ", - "hostIP": "270" + "name": "266", + "hostPort": -825277526, + "containerPort": 1157117817, + "hostIP": "267" } ], "envFrom": [ { - "prefix": "271", + "prefix": "268", "configMapRef": { - "name": "272", + "name": "269", "optional": false }, "secretRef": { - "name": "273", - "optional": true + "name": "270", + "optional": false } } ], "env": [ { - "name": "274", - "value": "275", + "name": "271", + "value": "272", "valueFrom": { "fieldRef": { - "apiVersion": "276", - "fieldPath": "277" + "apiVersion": "273", + "fieldPath": "274" }, "resourceFieldRef": { - "containerName": "278", - "resource": "279", - "divisor": "328" + "containerName": "275", + "resource": "276", + "divisor": "107" }, "configMapKeyRef": { - "name": "280", - "key": "281", - "optional": true + "name": "277", + "key": "278", + "optional": false }, "secretKeyRef": { - "name": "282", - "key": "283", - "optional": true + "name": "279", + "key": "280", + "optional": false } } } ], "resources": { "limits": { - "訆ƎżŧL²sNƗ¸gĩ餠籲磣": "340" + "琕鶫:顇ə娯Ȱ囌{": "853" }, "requests": { - "": "771" + "Z龏´DÒȗÔÂɘɢ鬍熖B芭花": "372" } }, "volumeMounts": [ { - "name": "284", + "name": "281", "readOnly": true, - "mountPath": "285", - "subPath": "286", - "mountPropagation": "冓鍓贯", - "subPathExpr": "287" + "mountPath": "282", + "subPath": "283", + "mountPropagation": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻", + "subPathExpr": "284" } ], "volumeDevices": [ { - "name": "288", - "devicePath": "289" + "name": "285", + "devicePath": "286" } ], "livenessProbe": { "exec": { "command": [ - "290" + "287" ] }, "httpGet": { - "path": "291", - "port": 1952458416, - "host": "292", - "scheme": "琕鶫:顇ə娯Ȱ囌{", + "path": "288", + "port": "289", + "host": "290", + "scheme": "C\"6x$1s", "httpHeaders": [ { - "name": "293", - "value": "294" + "name": "291", + "value": "292" } ] }, "tcpSocket": { - "port": -1829146875, - "host": "295" + "port": "293", + "host": "294" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793 + "initialDelaySeconds": -860435782, + "timeoutSeconds": 1067125211, + "periodSeconds": -2088645849, + "successThreshold": 1900201288, + "failureThreshold": -766915393, + "terminationGracePeriodSeconds": 3557544419897236324 }, "readinessProbe": { "exec": { "command": [ - "296" + "295" ] }, "httpGet": { - "path": "297", - "port": "298", - "host": "299", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "296", + "port": -311014176, + "host": "297", "httpHeaders": [ { - "name": "300", - "value": "301" + "name": "298", + "value": "299" } ] }, "tcpSocket": { - "port": -181601395, - "host": "302" + "port": 1076497581, + "host": "300" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 95144287, + "timeoutSeconds": 363405643, + "periodSeconds": 1635382953, + "successThreshold": -727263154, + "failureThreshold": -1449289597, + "terminationGracePeriodSeconds": 6328236602200940742 }, "startupProbe": { "exec": { "command": [ - "303" + "301" ] }, "httpGet": { - "path": "304", - "port": -305362540, - "host": "305", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "302", + "port": 248533396, + "host": "303", + "scheme": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", "httpHeaders": [ { - "name": "306", - "value": "307" + "name": "304", + "value": "305" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "308" + "port": -674445196, + "host": "306" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1239158543, + "timeoutSeconds": -543432015, + "periodSeconds": -515370067, + "successThreshold": 2073046460, + "failureThreshold": 1692740191, + "terminationGracePeriodSeconds": -1195705267535749940 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "307" ] }, "httpGet": { - "path": "310", - "port": "311", - "host": "312", - "scheme": "WOŭW灬pȭCV擭銆", + "path": "308", + "port": "309", + "host": "310", + "scheme": "Ǣ曣ŋayåe躒訙", "httpHeaders": [ { - "name": "313", - "value": "314" + "name": "311", + "value": "312" } ] }, "tcpSocket": { - "port": "315", - "host": "316" + "port": "313", + "host": "314" } }, "preStop": { "exec": { "command": [ - "317" + "315" ] }, "httpGet": { - "path": "318", - "port": 1540899353, - "host": "319", - "scheme": "| 鞤ɱďW賁Ěɭɪǹ0衷,", + "path": "316", + "port": "317", + "host": "318", + "scheme": "uE增猍ǵ xǨŴ", "httpHeaders": [ { - "name": "320", - "value": "321" + "name": "319", + "value": "320" } ] }, "tcpSocket": { - "port": 1692740191, - "host": "322" + "port": 2112112129, + "host": "321" } } }, - "terminationMessagePath": "323", - "terminationMessagePolicy": "ț譎懚XW疪鑳w", - "imagePullPolicy": "yåe躒訙Ǫʓ)", + "terminationMessagePath": "322", + "terminationMessagePolicy": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗", + "imagePullPolicy": "ĒzŔ瘍Nʊ", "securityContext": { "capabilities": { "add": [ - "嗆u" + "璾ėȜv" ], "drop": [ - "晲T[irȎ3Ĕ\\" + "b繐汚磉反-n覦灲閈誹" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "324", - "role": "325", - "type": "326", - "level": "327" + "user": "323", + "role": "324", + "type": "325", + "level": "326" }, "windowsOptions": { - "gmsaCredentialSpecName": "328", - "gmsaCredentialSpec": "329", - "runAsUserName": "330" + "gmsaCredentialSpecName": "327", + "gmsaCredentialSpec": "328", + "runAsUserName": "329" }, - "runAsUser": 4642510477960813990, - "runAsGroup": -7115468323604305274, + "runAsUser": 8423952810832831481, + "runAsGroup": 7806703309589874498, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "ȲǸ|蕎'佉賞ǧĒzŔ", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "k(dŊiɢzĮ蛋I滞廬耐", "seccompProfile": { - "type": "", - "localhostProfile": "331" + "type": "焬CQm坊柩", + "localhostProfile": "330" } - }, - "stdin": true + } } ], "ephemeralContainers": [ { - "name": "332", - "image": "333", + "name": "331", + "image": "332", "command": [ - "334" + "333" ], "args": [ - "335" + "334" ], - "workingDir": "336", + "workingDir": "335", "ports": [ { - "name": "337", - "hostPort": 2073630689, - "containerPort": -830875556, - "protocol": "Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ", - "hostIP": "338" + "name": "336", + "hostPort": 1141812777, + "containerPort": -1830926023, + "protocol": "®EĨǔvÄÚ×p", + "hostIP": "337" } ], "envFrom": [ { - "prefix": "339", + "prefix": "338", "configMapRef": { - "name": "340", + "name": "339", "optional": true }, "secretRef": { - "name": "341", + "name": "340", "optional": true } } ], "env": [ { - "name": "342", - "value": "343", + "name": "341", + "value": "342", "valueFrom": { "fieldRef": { - "apiVersion": "344", - "fieldPath": "345" + "apiVersion": "343", + "fieldPath": "344" }, "resourceFieldRef": { - "containerName": "346", - "resource": "347", - "divisor": "678" + "containerName": "345", + "resource": "346", + "divisor": "60" }, "configMapKeyRef": { - "name": "348", - "key": "349", + "name": "347", + "key": "348", "optional": true }, "secretKeyRef": { - "name": "350", - "key": "351", + "name": "349", + "key": "350", "optional": true } } @@ -1064,66 +1067,67 @@ ], "resources": { "limits": { - "zĮ蛋I滞廬耐鷞焬CQ": "712" + "": "262" }, "requests": { - "ý萜Ǖc": "275" + "Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶": "1" } }, "volumeMounts": [ { - "name": "352", - "mountPath": "353", - "subPath": "354", - "mountPropagation": "ĝ®EĨǔvÄÚ×p鬷", - "subPathExpr": "355" + "name": "351", + "mountPath": "352", + "subPath": "353", + "mountPropagation": "TGÒ鵌Ē3Nh×DJ", + "subPathExpr": "354" } ], "volumeDevices": [ { - "name": "356", - "devicePath": "357" + "name": "355", + "devicePath": "356" } ], "livenessProbe": { "exec": { "command": [ - "358" + "357" ] }, "httpGet": { - "path": "359", - "port": -1211577347, - "host": "360", - "scheme": "ǽżLj捲", + "path": "358", + "port": -514169648, + "host": "359", + "scheme": "\u0026疀", "httpHeaders": [ { - "name": "361", - "value": "362" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": "363", - "host": "364" + "port": "362", + "host": "363" }, - "initialDelaySeconds": -1382141042, - "timeoutSeconds": 583526946, - "periodSeconds": 186003226, - "successThreshold": -297065907, - "failureThreshold": 466267060 + "initialDelaySeconds": -39292476, + "timeoutSeconds": 801902541, + "periodSeconds": -1312249623, + "successThreshold": -1089435479, + "failureThreshold": -1031303729, + "terminationGracePeriodSeconds": -7317946572666008364 }, "readinessProbe": { "exec": { "command": [ - "365" + "364" ] }, "httpGet": { - "path": "366", - "port": -708495486, + "path": "365", + "port": "366", "host": "367", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "scheme": "ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "httpHeaders": [ { "name": "368", @@ -1135,11 +1139,12 @@ "port": "370", "host": "371" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": 2102595797, + "timeoutSeconds": -1921957558, + "periodSeconds": 180543684, + "successThreshold": -1050610482, + "failureThreshold": 1191111236, + "terminationGracePeriodSeconds": 5574781452707956333 }, "startupProbe": { "exec": { @@ -1151,7 +1156,7 @@ "path": "373", "port": "374", "host": "375", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "scheme": "餸硷", "httpHeaders": [ { "name": "376", @@ -1160,76 +1165,77 @@ ] }, "tcpSocket": { - "port": "378", - "host": "379" + "port": 731136838, + "host": "378" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 1701169865, + "timeoutSeconds": 685946195, + "periodSeconds": 1871363087, + "successThreshold": -614257963, + "failureThreshold": 1517970305, + "terminationGracePeriodSeconds": -3984053182430357055 }, "lifecycle": { "postStart": { "exec": { "command": [ - "380" + "379" ] }, "httpGet": { - "path": "381", - "port": "382", - "host": "383", - "scheme": "ńČȷǻ.wȏâ磠Ƴ崖S", + "path": "380", + "port": "381", + "host": "382", + "scheme": "ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ", "httpHeaders": [ { - "name": "384", - "value": "385" + "name": "383", + "value": "384" } ] }, "tcpSocket": { - "port": "386", - "host": "387" + "port": "385", + "host": "386" } }, "preStop": { "exec": { "command": [ - "388" + "387" ] }, "httpGet": { - "path": "389", - "port": "390", - "host": "391", - "scheme": "橱9ij\\Ď愝Ű藛b磾s", + "path": "388", + "port": "389", + "host": "390", + "scheme": "cx赮ǒđ\u003e*劶?j", "httpHeaders": [ { - "name": "392", - "value": "393" + "name": "391", + "value": "392" } ] }, "tcpSocket": { - "port": 2060584115, + "port": "393", "host": "394" } } }, "terminationMessagePath": "395", - "terminationMessagePolicy": "敮ǰ詀ǿ忀oɎƺL肄$鬬$", - "imagePullPolicy": "ʫ羶剹ƊF豎穜姰l咑", + "terminationMessagePolicy": "¥", + "imagePullPolicy": "Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃", "securityContext": { "capabilities": { "add": [ - "^鏋蛹Ƚȿ醏g遧" + "ȕW歹s" ], "drop": [ - "飂廤Ƌʙcx" + "ɥʋăƻ遲" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { "user": "396", "role": "397", @@ -1241,26 +1247,25 @@ "gmsaCredentialSpec": "401", "runAsUserName": "402" }, - "runAsUser": 73764735411458498, - "runAsGroup": 650553495487228967, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "ĭ¥#ƱÁR", + "runAsUser": 3805707846751185585, + "runAsGroup": 4820130167691486230, + "runAsNonRoot": false, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", "seccompProfile": { - "type": "淹揀.e鍃G昧牱fsǕT衩kƒK07", + "type": "z鋎", "localhostProfile": "403" } }, - "stdin": true, "tty": true, "targetContainerName": "404" } ], - "restartPolicy": "œj堑ūM鈱ɖ'蠨磼O_h", - "terminationGracePeriodSeconds": 3305070661619041050, - "activeDeadlineSeconds": -8735446882646824517, - "dnsPolicy": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿", + "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", + "terminationGracePeriodSeconds": -8963807447996144781, + "activeDeadlineSeconds": -5539971415578447792, + "dnsPolicy": "6", "nodeSelector": { "405": "406" }, @@ -1269,6 +1274,7 @@ "automountServiceAccountToken": false, "nodeName": "409", "hostNetwork": true, + "hostPID": true, "hostIPC": true, "shareProcessNamespace": true, "securityContext": { @@ -1283,22 +1289,22 @@ "gmsaCredentialSpec": "415", "runAsUserName": "416" }, - "runAsUser": 4444586492552487433, - "runAsGroup": 3185438857926287711, - "runAsNonRoot": true, + "runAsUser": 4290717681745188904, + "runAsGroup": 3355244307027629244, + "runAsNonRoot": false, "supplementalGroups": [ - 3497863229537310760 + -7106117411092125093 ], - "fsGroup": 5195444687005969380, + "fsGroup": -9164240834267238973, "sysctls": [ { "name": "417", "value": "418" } ], - "fsGroupChangePolicy": "ƴɦ燻踸陴Sĕ濦ʓɻ", + "fsGroupChangePolicy": "", "seccompProfile": { - "type": "0蚢鑸鶲Ãqb轫ʓ滨Ė", + "type": "d'呪", "localhostProfile": "419" } }, @@ -1317,7 +1323,7 @@ "matchExpressions": [ { "key": "423", - "operator": "呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG喾", + "operator": "W瀤oɢ嫎¸殚篎3o8[y", "values": [ "424" ] @@ -1326,7 +1332,7 @@ "matchFields": [ { "key": "425", - "operator": "y#t(ȗŜŲ\u0026", + "operator": "ï驿笈", "values": [ "426" ] @@ -1337,12 +1343,12 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1116309226, + "weight": -1009377808, "preference": { "matchExpressions": [ { "key": "427", - "operator": "l", + "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", "values": [ "428" ] @@ -1351,7 +1357,7 @@ "matchFields": [ { "key": "429", - "operator": "", + "operator": "惍EʦŊĊ娮rȧ", "values": [ "430" ] @@ -1366,14 +1372,14 @@ { "labelSelector": { "matchLabels": { - "5_.-miJ4x-_0_5-_.7Fp": "S-_AmD-.0AP.-.C_p" + "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" }, "matchExpressions": [ { - "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", "operator": "NotIn", "values": [ - "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] @@ -1384,12 +1390,12 @@ "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "4eq5": "" + "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": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "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" } ] } @@ -1397,19 +1403,16 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 888976270, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "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" - ] + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, @@ -1419,15 +1422,12 @@ "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "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" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "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" - ] + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1440,12 +1440,15 @@ { "labelSelector": { "matchLabels": { - "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" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8", - "operator": "Exists" + "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" + ] } ] }, @@ -1455,14 +1458,14 @@ "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s", + "key": "N7.81_-._-_8_.._._a9", "operator": "In", "values": [ - "V._qN__A_f_-B3_U__L.KH6K.RwsfI2" + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" ] } ] @@ -1471,16 +1474,16 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1668452490, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "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" + "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": "6W74-R_Z_Tz.a3_Ho", - "operator": "Exists" + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, @@ -1490,15 +1493,12 @@ "topologyKey": "480", "namespaceSelector": { "matchLabels": { - "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" + "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": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", - "operator": "In", - "values": [ - "x3___-..f5-6x-_-o_6O_If-5_-_.F" - ] + "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" } ] } @@ -1511,10 +1511,10 @@ "tolerations": [ { "key": "488", - "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", "value": "489", - "effect": "慰x:", - "tolerationSeconds": 3362400521064014157 + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ @@ -1526,7 +1526,7 @@ } ], "priorityClassName": "492", - "priority": 743241089, + "priority": 347613368, "dnsConfig": { "nameservers": [ "493" @@ -1543,46 +1543,45 @@ }, "readinessGates": [ { - "conditionType": "0yVA嬂刲;牆詒ĸąs" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], "runtimeClassName": "497", "enableServiceLinks": false, - "preemptionPolicy": "Iƭij韺ʧ\u003e", + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "D傕Ɠ栊闔虝巒瀦ŕ": "124" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -174245111, + "maxSkew": -484382570, "topologyKey": "498", - "whenUnsatisfiable": "", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "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" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", - "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": [ - "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] } } ], - "setHostnameAsFQDN": true + "setHostnameAsFQDN": false } }, - "ttlSecondsAfterFinished": -1166275743, - "completionMode": "\u0026ɃB沅零șPî壣V礆", + "ttlSecondsAfterFinished": -1285029915, "suspend": true } }, - "successfulJobsHistoryLimit": 1171076488, - "failedJobsHistoryLimit": -1190434752 + "successfulJobsHistoryLimit": 1729066291, + "failedJobsHistoryLimit": -908823020 }, "status": { "active": [ @@ -1590,7 +1589,7 @@ "kind": "505", "namespace": "506", "name": "507", - "uid": "圻醆锛[M牍Ƃ氙吐ɝ鶼", + "uid": "`", "apiVersion": "508", "resourceVersion": "509", "fieldPath": "510" 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 6d737290f1f6..1046ff93e508 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 bece276e0bc3..5d20489ebc79 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 @@ -31,7 +31,7 @@ metadata: uid: "7" spec: concurrencyPolicy: Hr鯹)晿郵[+扴 + path: "240" + port: "241" + scheme: Opwǩ曬逴褜1ØœȠƬQg鄠 tcpSocket: - host: "246" - port: "245" + host: "245" + port: 1102291854 preStop: exec: command: - - "247" + - "246" httpGet: - host: "250" + host: "248" httpHeaders: - - name: "251" - value: "252" - path: "248" - port: "249" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' + - name: "249" + value: "250" + path: "247" + port: 809006670 + scheme: 扴ȨŮ+朷Ǝ膯ljVX1虊谇 tcpSocket: - host: "254" - port: "253" + host: "251" + port: -1748648882 livenessProbe: exec: command: @@ -672,6 +671,7 @@ spec: tcpSocket: host: "225" port: 2060823740 + terminationGracePeriodSeconds: -4941250258285962800 timeoutSeconds: 1885897314 name: "193" ports: @@ -684,7 +684,7 @@ spec: exec: command: - "226" - failureThreshold: -1745509819 + failureThreshold: -1213051101 httpGet: host: "229" httpHeaders: @@ -692,66 +692,68 @@ spec: value: "231" path: "227" port: "228" - scheme: 癃8鸖 - initialDelaySeconds: 1574150975 - periodSeconds: 714088955 - successThreshold: 1033766276 + scheme: s3!Zɾģ毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: host: "232" - port: 896430536 - timeoutSeconds: 993144482 + port: 391562775 + terminationGracePeriodSeconds: 6232238734837754388 + timeoutSeconds: -832805508 resources: limits: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ: "660" requests: I\p[: "853" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 咡W + - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 drop: - - 敄lu| + - 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥 privileged: false - procMount: =E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展 - readOnlyRootFilesystem: false - runAsGroup: 8175137418799691442 + procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ + readOnlyRootFilesystem: true + runAsGroup: -5569844914519516591 runAsNonRoot: true - runAsUser: -230763786643460687 + runAsUser: -3342656999442156006 seLinuxOptions: - level: "259" - role: "257" - type: "258" - user: "256" + level: "256" + role: "254" + type: "255" + user: "253" seccompProfile: - localhostProfile: "263" - type: 硐庰%皧V垾现葢ŵ橨鬶l獕;跣H + localhostProfile: "260" + type: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ windowsOptions: - gmsaCredentialSpec: "261" - gmsaCredentialSpecName: "260" - runAsUserName: "262" + gmsaCredentialSpec: "258" + gmsaCredentialSpecName: "257" + runAsUserName: "259" startupProbe: exec: command: - "233" - failureThreshold: -1334110502 + failureThreshold: 1226391571 httpGet: - host: "236" + host: "235" httpHeaders: - - name: "237" - value: "238" + - name: "236" + value: "237" path: "234" - port: "235" - scheme: 庎D}埽uʎȺ眖R#yV'WKw(ğ儴 - initialDelaySeconds: -277192536 - periodSeconds: -20130017 - successThreshold: -1244623134 + port: -1140531048 + initialDelaySeconds: 1260448044 + periodSeconds: -1791206950 + successThreshold: 1160477220 tcpSocket: - host: "239" - port: 965937684 - timeoutSeconds: -1588323253 - terminationMessagePath: "255" - terminationMessagePolicy: 輦唊#v铿ʩȂ4ē鐭 + host: "238" + port: 1741405963 + terminationGracePeriodSeconds: 6347577485454457915 + timeoutSeconds: -200461294 + stdin: true + terminationMessagePath: "252" + terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄 tty: true volumeDevices: - devicePath: "218" @@ -768,21 +770,21 @@ spec: nodeSelector: "405": "406" overhead: - D傕Ɠ栊闔虝巒瀦ŕ: "124" - preemptionPolicy: Iƭij韺ʧ> - priority: 743241089 + D輷: "792" + preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 + priority: 347613368 priorityClassName: "492" readinessGates: - - conditionType: 0yVA嬂刲;牆詒ĸąs - restartPolicy: œj堑ūM鈱ɖ'蠨磼O_h + - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ + restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 runtimeClassName: "497" schedulerName: "487" securityContext: - fsGroup: 5195444687005969380 - fsGroupChangePolicy: ƴɦ燻踸陴Sĕ濦ʓɻ - runAsGroup: 3185438857926287711 - runAsNonRoot: true - runAsUser: 4444586492552487433 + fsGroup: -9164240834267238973 + fsGroupChangePolicy: "" + runAsGroup: 3355244307027629244 + runAsNonRoot: false + runAsUser: 4290717681745188904 seLinuxOptions: level: "413" role: "411" @@ -790,9 +792,9 @@ spec: user: "410" seccompProfile: localhostProfile: "419" - type: 0蚢鑸鶲Ãqb轫ʓ滨Ė + type: d'呪 supplementalGroups: - - 3497863229537310760 + - -7106117411092125093 sysctls: - name: "417" value: "418" @@ -802,28 +804,28 @@ spec: runAsUserName: "416" serviceAccount: "408" serviceAccountName: "407" - setHostnameAsFQDN: true + setHostnameAsFQDN: false shareProcessNamespace: true subdomain: "422" - terminationGracePeriodSeconds: 3305070661619041050 + terminationGracePeriodSeconds: -8963807447996144781 tolerations: - - effect: '慰x:' + - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ key: "488" - operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ - tolerationSeconds: 3362400521064014157 + operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 + tolerationSeconds: 3252034671163905138 value: "489" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x - 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: - - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe + - h.v._5.vB-.-7-.6Jv-86___3 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 + n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb + maxSkew: -484382570 topologyKey: "498" - whenUnsatisfiable: "" + whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` volumes: - awsElasticBlockStore: fsType: "65" @@ -1076,10 +1078,10 @@ spec: storagePolicyID: "122" storagePolicyName: "121" volumePath: "119" - ttlSecondsAfterFinished: -1166275743 + ttlSecondsAfterFinished: -1285029915 schedule: "19" startingDeadlineSeconds: -2555947251840004808 - successfulJobsHistoryLimit: 1171076488 + successfulJobsHistoryLimit: 1729066291 suspend: true status: active: @@ -1089,4 +1091,4 @@ status: name: "507" namespace: "506" resourceVersion: "509" - uid: 圻醆锛[M牍Ƃ氙吐ɝ鶼 + 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 9b7d4f58acd4..6216dfc9c10d 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 @@ -557,7 +557,8 @@ "timeoutSeconds": -1188430996, "periodSeconds": -2015604435, "successThreshold": 576428641, - "failureThreshold": 1719293828 + "failureThreshold": 1719293828, + "terminationGracePeriodSeconds": 7695418809915380277 }, "readinessProbe": { "exec": { @@ -567,248 +568,254 @@ }, "httpGet": { "path": "208", - "port": -103588794, - "host": "209", - "scheme": ",铻OŤǢʭ嵔棂p儼Ƿ裚瓶", + "port": "209", + "host": "210", + "scheme": "敍0)鈼¬麄", "httpHeaders": [ { - "name": "210", - "value": "211" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -1549755975, - "host": "212" + "port": -648954478, + "host": "213" }, - "initialDelaySeconds": -1275947865, - "timeoutSeconds": -2112697830, - "periodSeconds": -560140039, - "successThreshold": -1933850966, - "failureThreshold": 441998152 + "initialDelaySeconds": 1170649416, + "timeoutSeconds": 893619181, + "periodSeconds": -1891134534, + "successThreshold": -1710454086, + "failureThreshold": 192146389, + "terminationGracePeriodSeconds": 5519151154130360761 }, "startupProbe": { "exec": { "command": [ - "213" + "214" ] }, "httpGet": { - "path": "214", - "port": "215", - "host": "216", - "scheme": "胾^拜Ȍzɟ踡肒Ao/", + "path": "215", + "port": "216", + "host": "217", + "scheme": "瓧嫭塓烀罁胾^拜", "httpHeaders": [ { - "name": "217", - "value": "218" + "name": "218", + "value": "219" } ] }, "tcpSocket": { - "port": -245303037, - "host": "219" + "port": "220", + "host": "221" }, - "initialDelaySeconds": 1801903819, - "timeoutSeconds": -1497057920, - "periodSeconds": 436566830, - "successThreshold": 1351748524, - "failureThreshold": 794066396 + "initialDelaySeconds": -1613115506, + "timeoutSeconds": -1341523482, + "periodSeconds": 1385030458, + "successThreshold": 427196286, + "failureThreshold": 1048864116, + "terminationGracePeriodSeconds": 1132874952502226901 }, "lifecycle": { "postStart": { "exec": { "command": [ - "220" + "222" ] }, "httpGet": { - "path": "221", - "port": "222", - "host": "223", + "path": "223", + "port": 817152661, + "host": "224", + "scheme": "LJèux榜VƋZ", "httpHeaders": [ { - "name": "224", - "value": "225" + "name": "225", + "value": "226" } ] }, "tcpSocket": { - "port": "226", - "host": "227" + "port": "227", + "host": "228" } }, "preStop": { "exec": { "command": [ - "228" + "229" ] }, "httpGet": { - "path": "229", - "port": -1589303862, - "host": "230", - "scheme": "ľǎɳ,ǿ飏騀呣ǎ", + "path": "230", + "port": -2000048581, + "host": "231", + "scheme": "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę", "httpHeaders": [ { - "name": "231", - "value": "232" + "name": "232", + "value": "233" } ] }, "tcpSocket": { - "port": "233", - "host": "234" + "port": "234", + "host": "235" } } }, - "terminationMessagePath": "235", - "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣", + "terminationMessagePath": "236", + "terminationMessagePolicy": "U髷裎$MVȟ@7飣奺Ȋ", + "imagePullPolicy": "ljʁ揆ɘȌ脾嚏吐ĠL", "securityContext": { "capabilities": { "add": [ - "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄" + "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0" ], "drop": [ - "rʤî萨zvt莭琽§ć\\ ïì" + "Kʝ瘴I\\p[ħsĨɆâĺɗ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "236", - "role": "237", - "type": "238", - "level": "239" + "user": "237", + "role": "238", + "type": "239", + "level": "240" }, "windowsOptions": { - "gmsaCredentialSpecName": "240", - "gmsaCredentialSpec": "241", - "runAsUserName": "242" + "gmsaCredentialSpecName": "241", + "gmsaCredentialSpec": "242", + "runAsUserName": "243" }, - "runAsUser": -5738810661106213940, - "runAsGroup": 3195567116206635190, + "runAsUser": -3442119660495017037, + "runAsGroup": 6974050994588811875, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ƖN粕擓Ɩ", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "A", "seccompProfile": { - "type": "Ve", - "localhostProfile": "243" + "type": "/ɸɎ R§耶FfBls3!", + "localhostProfile": "244" } }, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "244", - "image": "245", + "name": "245", + "image": "246", "command": [ - "246" + "247" ], "args": [ - "247" + "248" ], - "workingDir": "248", + "workingDir": "249", "ports": [ { - "name": "249", - "hostPort": -801430937, - "containerPort": 1883209805, - "protocol": "ɓȌʟni酛3ƁÀ*", - "hostIP": "250" + "name": "250", + "hostPort": -720450949, + "containerPort": -630252364, + "protocol": "dz娝嘚庎D}埽uʎȺ眖R#yV'WK", + "hostIP": "251" } ], "envFrom": [ { - "prefix": "251", + "prefix": "252", "configMapRef": { - "name": "252", + "name": "253", "optional": false }, "secretRef": { - "name": "253", + "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": "19" + "containerName": "259", + "resource": "260", + "divisor": "668" }, "configMapKeyRef": { - "name": "260", - "key": "261", + "name": "261", + "key": "262", "optional": false }, "secretKeyRef": { - "name": "262", - "key": "263", - "optional": true + "name": "263", + "key": "264", + "optional": false } } } ], "resources": { "limits": { - "Jȉ罴ņ螡źȰ?$矡ȶ网棊": "199" + "輓Ɔȓ蹣ɐǛv+8": "375" }, "requests": { - "ʎȺ眖R#": "985" + "[颐o啛更偢ɇ": "21" } }, "volumeMounts": [ { - "name": "264", - "mountPath": "265", - "subPath": "266", - "mountPropagation": "¿", - "subPathExpr": "267" + "name": "265", + "readOnly": true, + "mountPath": "266", + "subPath": "267", + "mountPropagation": "+", + "subPathExpr": "268" } ], "volumeDevices": [ { - "name": "268", - "devicePath": "269" + "name": "269", + "devicePath": "270" } ], "livenessProbe": { "exec": { "command": [ - "270" + "271" ] }, "httpGet": { - "path": "271", - "port": -534498506, - "host": "272", - "scheme": "儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ", + "path": "272", + "port": -743369977, + "host": "273", + "scheme": "\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4", "httpHeaders": [ { - "name": "273", - "value": "274" + "name": "274", + "value": "275" } ] }, "tcpSocket": { - "port": "275", + "port": -1224991707, "host": "276" }, - "initialDelaySeconds": -805795167, - "timeoutSeconds": 1791615594, - "periodSeconds": 785984384, - "successThreshold": 193463975, - "failureThreshold": 1831208885 + "initialDelaySeconds": 887398685, + "timeoutSeconds": -612420031, + "periodSeconds": -1139949896, + "successThreshold": 1274622498, + "failureThreshold": -179937987, + "terminationGracePeriodSeconds": -8210022364156100044 }, "readinessProbe": { "exec": { @@ -818,25 +825,26 @@ }, "httpGet": { "path": "278", - "port": "279", - "host": "280", - "scheme": "更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "port": 474715842, + "host": "279", + "scheme": "Jɐ扵Gƚ绤fʀļ腩墺Ò媁荭gw", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "280", + "value": "281" } ] }, "tcpSocket": { - "port": 467291328, + "port": "282", "host": "283" }, - "initialDelaySeconds": -1664778008, - "timeoutSeconds": -1191528701, - "periodSeconds": -978176982, - "successThreshold": 415947324, - "failureThreshold": 18113448 + "initialDelaySeconds": -1122739822, + "timeoutSeconds": -1761398388, + "periodSeconds": -1532958330, + "successThreshold": -438588982, + "failureThreshold": 1004325340, + "terminationGracePeriodSeconds": -5640668310341845616 }, "startupProbe": { "exec": { @@ -846,9 +854,8 @@ }, "httpGet": { "path": "285", - "port": 453108839, + "port": 1941923625, "host": "286", - "scheme": "趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*", "httpHeaders": [ { "name": "287", @@ -857,75 +864,77 @@ ] }, "tcpSocket": { - "port": 1574967021, - "host": "289" + "port": "289", + "host": "290" }, - "initialDelaySeconds": -244758593, - "timeoutSeconds": 591440053, - "periodSeconds": 104069700, - "successThreshold": -331594625, - "failureThreshold": 888935190 + "initialDelaySeconds": 452673549, + "timeoutSeconds": 627670321, + "periodSeconds": -125932767, + "successThreshold": -18758819, + "failureThreshold": -1666819085, + "terminationGracePeriodSeconds": -1212012606981050727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "290" + "291" ] }, "httpGet": { - "path": "291", - "port": -1661575965, - "host": "292", - "scheme": "î.Ȏ蝪ʜ5遰=", + "path": "292", + "port": 1165327504, + "host": "293", + "scheme": "庰%皧V", "httpHeaders": [ { - "name": "293", - "value": "294" + "name": "294", + "value": "295" } ] }, "tcpSocket": { - "port": 834105836, - "host": "295" + "port": -260262954, + "host": "296" } }, "preStop": { "exec": { "command": [ - "296" + "297" ] }, "httpGet": { - "path": "297", - "port": "298", - "host": "299", + "path": "298", + "port": "299", + "host": "300", + "scheme": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ", "httpHeaders": [ { - "name": "300", - "value": "301" + "name": "301", + "value": "302" } ] }, "tcpSocket": { - "port": "302", + "port": 1907998540, "host": "303" } } }, "terminationMessagePath": "304", - "terminationMessagePolicy": "Ȩ\u003c6鄰簳°Ļǟi\u0026", - "imagePullPolicy": "庰%皧V", + "terminationMessagePolicy": ",ŕ", + "imagePullPolicy": "澝qV訆Ǝżŧ", "securityContext": { "capabilities": { "add": [ - "葢ŵ橨鬶l獕;跣" + "sNƗ¸gĩ餠籲磣Óƿ頀\"冓鍓贯澔" ], "drop": [ - "ǝcw媀瓄\u0026翜舞拉Œɥ" + "ƺ蛜6Ɖ飴ɎiǨź" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { "user": "305", "role": "306", @@ -937,18 +946,19 @@ "gmsaCredentialSpec": "310", "runAsUserName": "311" }, - "runAsUser": 8194791334069427324, - "runAsGroup": 8719280757454240148, - "runAsNonRoot": false, + "runAsUser": 6461287015868628542, + "runAsGroup": 2471155705902100229, + "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "訆ƎżŧL²sNƗ¸gĩ餠籲磣", + "allowPrivilegeEscalation": false, + "procMount": "ȗÔÂɘɢ", "seccompProfile": { - "type": "ƿ頀\"冓鍓贯澔 ", + "type": "熖B芭花ª瘡蟦JBʟ鍏H鯂", "localhostProfile": "312" } }, - "stdinOnce": true + "stdinOnce": true, + "tty": true } ], "ephemeralContainers": [ @@ -965,9 +975,9 @@ "ports": [ { "name": "318", - "hostPort": 472742933, - "containerPort": 50696420, - "protocol": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ", + "hostPort": -402384013, + "containerPort": -181601395, + "protocol": "汰8ŕİi騎C\"6x$1s", "hostIP": "319" } ], @@ -976,7 +986,7 @@ "prefix": "320", "configMapRef": { "name": "321", - "optional": false + "optional": true }, "secretRef": { "name": "322", @@ -996,7 +1006,7 @@ "resourceFieldRef": { "containerName": "327", "resource": "328", - "divisor": "226" + "divisor": "956" }, "configMapKeyRef": { "name": "329", @@ -1006,26 +1016,25 @@ "secretKeyRef": { "name": "331", "key": "332", - "optional": false + "optional": true } } } ], "resources": { "limits": { - "ʟ鍏H鯂²静": "193" + "5哇芆斩ìh4ɊHȖ|ʐş": "879" }, "requests": { - "聋3趐囨鏻": "838" + "ȭCV擭銆jʒǚ鍰\\縑ɀ撑¼蠾8餑噭": "157" } }, "volumeMounts": [ { "name": "333", - "readOnly": true, "mountPath": "334", "subPath": "335", - "mountPropagation": "騎C\"6x$1sȣ±p鋄", + "mountPropagation": "ǹ0", "subPathExpr": "336" } ], @@ -1043,220 +1052,226 @@ }, "httpGet": { "path": "340", - "port": "341", - "host": "342", - "scheme": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ", + "port": -1491762290, + "host": "341", + "scheme": "Bn(fǂǢ曣ŋayåe躒訙Ǫ", "httpHeaders": [ { - "name": "343", - "value": "344" + "name": "342", + "value": "343" } ] }, "tcpSocket": { - "port": "345", - "host": "346" + "port": 739175678, + "host": "344" }, - "initialDelaySeconds": -667808868, - "timeoutSeconds": -1411971593, - "periodSeconds": -1952582931, - "successThreshold": -74827262, - "failureThreshold": 467105019 + "initialDelaySeconds": -17241638, + "timeoutSeconds": 1454160406, + "periodSeconds": 597943993, + "successThreshold": -1237718434, + "failureThreshold": -1379762675, + "terminationGracePeriodSeconds": -3735660420379502501 }, "readinessProbe": { "exec": { "command": [ - "347" + "345" ] }, "httpGet": { - "path": "348", - "port": "349", - "host": "350", - "scheme": "| 鞤ɱďW賁Ěɭɪǹ0衷,", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ȏ3Ĕ\\ɢX鰨", "httpHeaders": [ { - "name": "351", - "value": "352" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": 1692740191, - "host": "353" + "port": -1918622971, + "host": "351" }, - "initialDelaySeconds": -278396828, - "timeoutSeconds": 1497888778, - "periodSeconds": -1663818120, - "successThreshold": -211480108, - "failureThreshold": -200074798 + "initialDelaySeconds": 1031506256, + "timeoutSeconds": -186532794, + "periodSeconds": -954508651, + "successThreshold": 1597200284, + "failureThreshold": 1831638296, + "terminationGracePeriodSeconds": 760480547754807445 }, "startupProbe": { "exec": { "command": [ - "354" + "352" ] }, "httpGet": { - "path": "355", - "port": "356", - "host": "357", - "scheme": "ay", + "path": "353", + "port": "354", + "host": "355", + "scheme": "賞ǧĒzŔ瘍N", "httpHeaders": [ { - "name": "358", - "value": "359" + "name": "356", + "value": "357" } ] }, "tcpSocket": { - "port": "360", - "host": "361" + "port": -531787516, + "host": "358" }, - "initialDelaySeconds": 628632965, - "timeoutSeconds": 552654052, - "periodSeconds": -1396197931, - "successThreshold": -1114385515, - "failureThreshold": 2144856253 + "initialDelaySeconds": 2073630689, + "timeoutSeconds": -830875556, + "periodSeconds": -1395144116, + "successThreshold": -684167223, + "failureThreshold": -751455207, + "terminationGracePeriodSeconds": -3839813958613977681 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "359" ] }, "httpGet": { - "path": "363", - "port": 597943993, - "host": "364", - "scheme": "8", + "path": "360", + "port": 702968201, + "host": "361", + "scheme": "Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ", "httpHeaders": [ { - "name": "365", - "value": "366" + "name": "362", + "value": "363" } ] }, "tcpSocket": { - "port": "367", - "host": "368" + "port": 1993058773, + "host": "364" } }, "preStop": { "exec": { "command": [ - "369" + "365" ] }, "httpGet": { - "path": "370", - "port": 601942575, - "host": "371", - "scheme": "壶ƵfȽÃ茓", + "path": "366", + "port": 2115799218, + "host": "367", + "scheme": "ɢzĮ蛋I滞廬耐鷞焬CQm坊柩劄奼[", "httpHeaders": [ { - "name": "372", - "value": "373" + "name": "368", + "value": "369" } ] }, "tcpSocket": { - "port": 1359309446, - "host": "374" + "port": "370", + "host": "371" } } }, - "terminationMessagePath": "375", - "terminationMessagePolicy": "挴ʠ", - "imagePullPolicy": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "terminationMessagePath": "372", + "terminationMessagePolicy": "ĝ®EĨǔvÄÚ×p鬷", + "imagePullPolicy": "G鄧蜢暳ǽ", "securityContext": { "capabilities": { "add": [ - "1b" + "" ], "drop": [ - "汚磉反-n" + "攻xƂ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003c" ] }, "privileged": true, "seLinuxOptions": { - "user": "376", - "role": "377", - "type": "378", - "level": "379" + "user": "373", + "role": "374", + "type": "375", + "level": "376" }, "windowsOptions": { - "gmsaCredentialSpecName": "380", - "gmsaCredentialSpec": "381", - "runAsUserName": "382" + "gmsaCredentialSpecName": "377", + "gmsaCredentialSpec": "378", + "runAsUserName": "379" }, - "runAsUser": 6952955754983307007, - "runAsGroup": 8284722634127679632, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "runAsUser": -2391833818948531474, + "runAsGroup": 4961684277572791542, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "濑", + "procMount": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ", "seccompProfile": { - "type": "ʨIk(dŊiɢzĮ蛋I滞", - "localhostProfile": "383" + "type": "虓氙磂tńČȷǻ.wȏâ磠Ƴ崖", + "localhostProfile": "380" } }, + "stdin": true, "stdinOnce": true, - "targetContainerName": "384" + "targetContainerName": "381" } ], - "restartPolicy": "鷞焬C", - "terminationGracePeriodSeconds": 2910487247185363461, - "activeDeadlineSeconds": 6810468860514125748, + "restartPolicy": "V", + "terminationGracePeriodSeconds": 2097799378008387965, + "activeDeadlineSeconds": 7695545029085197807, + "dnsPolicy": "9ij\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ", "nodeSelector": { - "385": "386" + "382": "383" }, - "serviceAccountName": "387", - "serviceAccount": "388", - "automountServiceAccountToken": false, - "nodeName": "389", + "serviceAccountName": "384", + "serviceAccount": "385", + "automountServiceAccountToken": true, + "nodeName": "386", + "hostNetwork": true, "hostPID": true, "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "390", - "role": "391", - "type": "392", - "level": "393" + "user": "387", + "role": "388", + "type": "389", + "level": "390" }, "windowsOptions": { - "gmsaCredentialSpecName": "394", - "gmsaCredentialSpec": "395", - "runAsUserName": "396" + "gmsaCredentialSpecName": "391", + "gmsaCredentialSpec": "392", + "runAsUserName": "393" }, - "runAsUser": 6358118655232240727, - "runAsGroup": 8766190045617353809, - "runAsNonRoot": false, + "runAsUser": -8782526851089538175, + "runAsGroup": -3984053182430357055, + "runAsNonRoot": true, "supplementalGroups": [ - -2524837786321986358 + -4848183283725048145 ], - "fsGroup": 8801451190757707332, + "fsGroup": 1086777894996369636, "sysctls": [ { - "name": "397", - "value": "398" + "name": "394", + "value": "395" } ], - "fsGroupChangePolicy": "ɋȑoG鄧蜢暳ǽżLj捲", + "fsGroupChangePolicy": "嬯t{", "seccompProfile": { - "type": "xƂ9阠", - "localhostProfile": "399" + "type": "ɾ", + "localhostProfile": "396" } }, "imagePullSecrets": [ { - "name": "400" + "name": "397" } ], - "hostname": "401", - "subdomain": "402", + "hostname": "398", + "subdomain": "399", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1264,19 +1279,19 @@ { "matchExpressions": [ { - "key": "403", - "operator": "喕", + "key": "400", + "operator": "鏋蛹Ƚȿ醏g遧", "values": [ - "404" + "401" ] } ], "matchFields": [ { - "key": "405", - "operator": "ďJZ漤ŗ坟Ů\u003c", + "key": "402", + "operator": "Ļo:{柯?B俋¬h`職铳s44矕", "values": [ - "406" + "403" ] } ] @@ -1285,23 +1300,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 97641827, + "weight": 1045190247, "preference": { "matchExpressions": [ { - "key": "407", - "operator": "łƑ[澔", + "key": "404", + "operator": "鑏='ʨ|ǓÓ敆OɈÏ 瞍", "values": [ - "408" + "405" ] } ], "matchFields": [ { - "key": "409", - "operator": "Ē3Nh×DJɶ羹ƞʓ%ʝ", + "key": "406", + "operator": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼", "values": [ - "410" + "407" ] } ] @@ -1314,33 +1329,30 @@ { "labelSelector": { "matchLabels": { - "1caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-P---_H-.___._D8.TS-jJ.YO": "op34_-y.8_38m" + "e6-1--0s-t1e--mv56c27-23---gl.3x-b--55039780bdw0-1-47rrw8-5ts-7-b-p-5-5wmi-4xs-0-5ki/9..3_t_-l..-.DG7r-3.----._4__O": "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q" }, "matchExpressions": [ { - "key": "4sE4", - "operator": "In", + "key": "3--51", + "operator": "NotIn", "values": [ - "u_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l" + "C.-e16-O5" ] } ] }, "namespaces": [ - "417" + "414" ], - "topologyKey": "418", + "topologyKey": "415", "namespaceSelector": { "matchLabels": { - "v8_.O_..8n.--z_-..6W.K": "sTt.-U_--6" + "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": "7-3x-3/23_P", - "operator": "NotIn", - "values": [ - "5....7..--w0_1V4.-r-8S5--_7_-Zp_._.-mi4" - ] + "key": "8mtxb__-ex-_1_-ODgC_1-_8__3", + "operator": "DoesNotExist" } ] } @@ -1348,37 +1360,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -2081163116, + "weight": -555161071, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "acp6-5-x1---4/b8a_6_.0Q46": "6" + "73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C": "r-v-3-BO" }, "matchExpressions": [ { - "key": "a-L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW9", - "operator": "In", - "values": [ - "Gv" - ] + "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L", + "operator": "Exists" } ] }, "namespaces": [ - "431" + "428" ], - "topologyKey": "432", + "topologyKey": "429", "namespaceSelector": { "matchLabels": { - "Z___._6..tf-_u-3-_n0..p": "S.K" + "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM" }, "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": "RT.0zo", + "operator": "DoesNotExist" } ] } @@ -1391,30 +1397,30 @@ { "labelSelector": { "matchLabels": { - "snw0-3i--a2/023Xl-3Pw_-r75--c": "4wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m3" + "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH" }, "matchExpressions": [ { - "key": "rN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-n8", - "operator": "NotIn", - "values": [ - "8u.._-__BM.6-.Y_72-_--pT751" - ] + "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "445" + "442" ], - "topologyKey": "446", + "topologyKey": "443", "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" + "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w", + "operator": "In", + "values": [ + "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d" + ] } ] } @@ -1422,33 +1428,30 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 33371499, + "weight": 339079271, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "RT.0zo": "7G79.3bU_._nV34G._--u.._.105-4_ed-f" + "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": "o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_g0", - "operator": "NotIn", - "values": [ - "kn_9n.p.o" - ] + "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5", + "operator": "Exists" } ] }, "namespaces": [ - "459" + "456" ], - "topologyKey": "460", + "topologyKey": "457", "namespaceSelector": { "matchLabels": { - "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/7-.6": "K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nd_.b_-gL_13" + "E35H__.B_E": "U..u8gwbk" }, "matchExpressions": [ { - "key": "g-cx-428u2j--3u-77-75-p-z---k-5r6h--y7o-0-wq-zfdn.yg0t-q--qr95ws-v-5--7-uf5/bk81S3.s_s_6.-_U", + "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i", "operator": "Exists" } ] @@ -1458,66 +1461,65 @@ ] } }, - "schedulerName": "467", + "schedulerName": "464", "tolerations": [ { - "key": "468", - "operator": "â羃ȄÑNQ梯誠?忹ț慑罪ƐǥĂ/ɼ", - "value": "469", - "effect": "Ȫ", - "tolerationSeconds": -3512872839388697022 + "key": "465", + "operator": "ŭʔb'?舍ȃʥx臥]å摞", + "value": "466", + "tolerationSeconds": 3053978290188957517 } ], "hostAliases": [ { - "ip": "470", + "ip": "467", "hostnames": [ - "471" + "468" ] } ], - "priorityClassName": "472", - "priority": 338072377, + "priorityClassName": "469", + "priority": -340583156, "dnsConfig": { "nameservers": [ - "473" + "470" ], "searches": [ - "474" + "471" ], "options": [ { - "name": "475", - "value": "476" + "name": "472", + "value": "473" } ] }, "readinessGates": [ { - "conditionType": "ȳ靘ɶ¦9F徵{ɦ!f親ʚ«Ǥ栌Ə" + "conditionType": "țc£PAÎǨȨ栋" } ], - "runtimeClassName": "477", + "runtimeClassName": "474", "enableServiceLinks": false, - "preemptionPolicy": "", + "preemptionPolicy": "n{鳻", "overhead": { - "öZÕW肤 遞Ȼ棉砍": "261" + "隅DžbİEMǶɼ`|褞": "229" }, "topologySpreadConstraints": [ { - "maxSkew": 1795378781, - "topologyKey": "478", - "whenUnsatisfiable": "焿熣$ɒ割婻漛Ǒ", + "maxSkew": 1486667065, + "topologyKey": "475", + "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞", "labelSelector": { "matchLabels": { - "17--f-z336z7---1-i-67-3o--pw8-l0d--7881-v7-j-8-98-9-av.2vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476bt/PT-_Nx__-F_._n.WaY_o.-0-yE-RW": "sfI_2-_20_9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_3H" + "H_55..--E3_2D-1DW__o_-.k": "7" }, "matchExpressions": [ { - "key": "gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Zy", + "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b", "operator": "NotIn", "values": [ - "7.._B-ks7dG-9S-6" + "H1z..j_.r3--T" ] } ] @@ -1527,24 +1529,24 @@ "setHostnameAsFQDN": false } }, - "ttlSecondsAfterFinished": -580752105, - "completionMode": "r#猂=đÁŊ锱軈騱țc£PAÎǨȨ", - "suspend": true + "ttlSecondsAfterFinished": 1020403419, + "completionMode": "ʉiUȡɭĮ庺%#囨q砅ƎXÄdƦ;", + "suspend": false }, "status": { "conditions": [ { - "type": "±n{鳻$隅DžbİEMǶɼ`|褞ŒD喼", - "status": "ɤȶšɞƵõ禲", - "lastProbeTime": "2229-03-14T09:15:27Z", - "lastTransitionTime": "2386-02-27T08:30:37Z", - "reason": "485", - "message": "486" + "type": "氮怉ƥ;\"薑Ȣ#闬輙", + "status": "褅桃|", + "lastProbeTime": "2625-10-20T09:03:25Z", + "lastTransitionTime": "2222-01-27T15:06:59Z", + "reason": "482", + "message": "483" } ], - "active": 247437609, - "succeeded": 40631908, - "failed": 1380690227, - "completedIndexes": "487" + "active": -882920248, + "succeeded": -1163607463, + "failed": -758431192, + "completedIndexes": "484" } } \ 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 359b1b1d1d9f..ff671b4fc779 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 283402ed1eca..c4116e0f7235 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 @@ -32,7 +32,7 @@ metadata: spec: activeDeadlineSeconds: -5584804243908071872 backoffLimit: -783752440 - completionMode: r#猂=đÁŊ锱軈騱țc£PAÎǨȨ + completionMode: ʉiUȡɭĮ庺%#囨q砅ƎXÄdƦ; completions: 1305381319 manualSelector: true parallelism: 896585016 @@ -44,7 +44,7 @@ spec: - 3_bQw.-dG6c-.x matchLabels: hjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4: 3L.u - suspend: true + suspend: false template: metadata: annotations: @@ -76,246 +76,241 @@ spec: selfLink: "28" uid: ɸ=ǤÆ碛,1 spec: - activeDeadlineSeconds: 6810468860514125748 + activeDeadlineSeconds: 7695545029085197807 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "407" - operator: łƑ[澔 + - key: "404" + operator: 鑏='ʨ|ǓÓ敆OɈÏ 瞍 values: - - "408" + - "405" matchFields: - - key: "409" - operator: Ē3Nh×DJɶ羹ƞʓ%ʝ + - key: "406" + operator: kƒK07曳wœj堑ūM鈱ɖ'蠨磼 values: - - "410" - weight: 97641827 + - "407" + weight: 1045190247 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "403" - operator: 喕 + - key: "400" + operator: 鏋蛹Ƚȿ醏g遧 values: - - "404" + - "401" matchFields: - - key: "405" - operator: ďJZ漤ŗ坟Ů< + - key: "402" + operator: Ļo:{柯?B俋¬h`職铳s44矕 values: - - "406" + - "403" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: a-L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW9 - operator: In - values: - - Gv + - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L + operator: Exists matchLabels: - acp6-5-x1---4/b8a_6_.0Q46: "6" + 73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C: r-v-3-BO namespaceSelector: 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: RT.0zo + operator: DoesNotExist matchLabels: - Z___._6..tf-_u-3-_n0..p: S.K + r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM namespaces: - - "431" - topologyKey: "432" - weight: -2081163116 + - "428" + topologyKey: "429" + weight: -555161071 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4sE4 - operator: In + - key: 3--51 + operator: NotIn values: - - u_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + - C.-e16-O5 matchLabels: - 1caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-P---_H-.___._D8.TS-jJ.YO: op34_-y.8_38m + e6-1--0s-t1e--mv56c27-23---gl.3x-b--55039780bdw0-1-47rrw8-5ts-7-b-p-5-5wmi-4xs-0-5ki/9..3_t_-l..-.DG7r-3.----._4__O: u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q namespaceSelector: matchExpressions: - - key: 7-3x-3/23_P - operator: NotIn - values: - - 5....7..--w0_1V4.-r-8S5--_7_-Zp_._.-mi4 + - key: 8mtxb__-ex-_1_-ODgC_1-_8__3 + operator: DoesNotExist matchLabels: - v8_.O_..8n.--z_-..6W.K: sTt.-U_--6 + 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: - - "417" - topologyKey: "418" + - "414" + topologyKey: "415" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_g0 - operator: NotIn - values: - - kn_9n.p.o + - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5 + operator: Exists matchLabels: - RT.0zo: 7G79.3bU_._nV34G._--u.._.105-4_ed-f + 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: g-cx-428u2j--3u-77-75-p-z---k-5r6h--y7o-0-wq-zfdn.yg0t-q--qr95ws-v-5--7-uf5/bk81S3.s_s_6.-_U + - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i operator: Exists matchLabels: - o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/7-.6: K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nd_.b_-gL_13 + E35H__.B_E: U..u8gwbk namespaces: - - "459" - topologyKey: "460" - weight: 33371499 + - "456" + topologyKey: "457" + weight: 339079271 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: rN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-n8 - operator: NotIn - values: - - 8u.._-__BM.6-.Y_72-_--pT751 + - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g + operator: DoesNotExist matchLabels: - snw0-3i--a2/023Xl-3Pw_-r75--c: 4wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m3 + FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH namespaceSelector: matchExpressions: - - key: C-_20 - operator: Exists + - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w + operator: In + values: + - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d 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 + p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p namespaces: - - "445" - topologyKey: "446" - automountServiceAccountToken: false + - "442" + topologyKey: "443" + 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: false fieldRef: - apiVersion: "256" - fieldPath: "257" + apiVersion: "257" + fieldPath: "258" resourceFieldRef: - containerName: "258" - divisor: "19" - resource: "259" + containerName: "259" + divisor: "668" + resource: "260" secretKeyRef: - key: "263" - name: "262" - optional: true + key: "264" + name: "263" + optional: false envFrom: - configMapRef: - name: "252" + name: "253" optional: false - prefix: "251" + prefix: "252" secretRef: - name: "253" + name: "254" optional: true - image: "245" - imagePullPolicy: 庰%皧V + image: "246" + imagePullPolicy: 澝qV訆Ǝżŧ lifecycle: postStart: exec: command: - - "290" + - "291" httpGet: - host: "292" + host: "293" httpHeaders: - - name: "293" - value: "294" - path: "291" - port: -1661575965 - scheme: î.Ȏ蝪ʜ5遰= + - name: "294" + value: "295" + path: "292" + port: 1165327504 + scheme: 庰%皧V tcpSocket: - host: "295" - port: 834105836 + host: "296" + port: -260262954 preStop: exec: command: - - "296" + - "297" httpGet: - host: "299" + host: "300" httpHeaders: - - name: "300" - value: "301" - path: "297" - port: "298" + - name: "301" + value: "302" + path: "298" + port: "299" + scheme: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ tcpSocket: host: "303" - port: "302" + port: 1907998540 livenessProbe: exec: command: - - "270" - failureThreshold: 1831208885 + - "271" + failureThreshold: -179937987 httpGet: - host: "272" + host: "273" httpHeaders: - - name: "273" - value: "274" - path: "271" - port: -534498506 - scheme: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ - initialDelaySeconds: -805795167 - periodSeconds: 785984384 - successThreshold: 193463975 + - name: "274" + value: "275" + path: "272" + port: -743369977 + scheme: '>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4' + initialDelaySeconds: 887398685 + periodSeconds: -1139949896 + successThreshold: 1274622498 tcpSocket: host: "276" - port: "275" - timeoutSeconds: 1791615594 - name: "244" + port: -1224991707 + terminationGracePeriodSeconds: -8210022364156100044 + timeoutSeconds: -612420031 + name: "245" ports: - - containerPort: 1883209805 - hostIP: "250" - hostPort: -801430937 - name: "249" - protocol: ɓȌʟni酛3ƁÀ* + - containerPort: -630252364 + hostIP: "251" + hostPort: -720450949 + name: "250" + protocol: dz娝嘚庎D}埽uʎȺ眖R#yV'WK readinessProbe: exec: command: - "277" - failureThreshold: 18113448 + failureThreshold: 1004325340 httpGet: - host: "280" + host: "279" httpHeaders: - - name: "281" - value: "282" + - name: "280" + value: "281" path: "278" - port: "279" - scheme: 更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - initialDelaySeconds: -1664778008 - periodSeconds: -978176982 - successThreshold: 415947324 + port: 474715842 + scheme: Jɐ扵Gƚ绤fʀļ腩墺Ò媁荭gw + initialDelaySeconds: -1122739822 + periodSeconds: -1532958330 + successThreshold: -438588982 tcpSocket: host: "283" - port: 467291328 - timeoutSeconds: -1191528701 + port: "282" + terminationGracePeriodSeconds: -5640668310341845616 + timeoutSeconds: -1761398388 resources: limits: - Jȉ罴ņ螡źȰ?$矡ȶ网棊: "199" + 輓Ɔȓ蹣ɐǛv+8: "375" requests: - ʎȺ眖R#: "985" + '[颐o啛更偢ɇ': "21" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 葢ŵ橨鬶l獕;跣 + - sNƗ¸gĩ餠籲磣Óƿ頀"冓鍓贯澔 drop: - - ǝcw媀瓄&翜舞拉Œɥ - privileged: false - procMount: 訆ƎżŧL²sNƗ¸gĩ餠籲磣 + - ƺ蛜6Ɖ飴ɎiǨź + privileged: true + procMount: ȗÔÂɘɢ readOnlyRootFilesystem: false - runAsGroup: 8719280757454240148 - runAsNonRoot: false - runAsUser: 8194791334069427324 + runAsGroup: 2471155705902100229 + runAsNonRoot: true + runAsUser: 6461287015868628542 seLinuxOptions: level: "308" role: "306" @@ -323,7 +318,7 @@ spec: user: "305" seccompProfile: localhostProfile: "312" - type: 'ƿ頀"冓鍓贯澔 ' + type: 熖B芭花ª瘡蟦JBʟ鍏H鯂 windowsOptions: gmsaCredentialSpec: "310" gmsaCredentialSpecName: "309" @@ -332,43 +327,46 @@ spec: exec: command: - "284" - failureThreshold: 888935190 + failureThreshold: -1666819085 httpGet: host: "286" httpHeaders: - name: "287" value: "288" path: "285" - port: 453108839 - scheme: 趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L* - initialDelaySeconds: -244758593 - periodSeconds: 104069700 - successThreshold: -331594625 + port: 1941923625 + initialDelaySeconds: 452673549 + periodSeconds: -125932767 + successThreshold: -18758819 tcpSocket: - host: "289" - port: 1574967021 - timeoutSeconds: 591440053 + host: "290" + port: "289" + terminationGracePeriodSeconds: -1212012606981050727 + timeoutSeconds: 627670321 stdinOnce: true terminationMessagePath: "304" - terminationMessagePolicy: Ȩ<6鄰簳°Ļǟi& + terminationMessagePolicy: ',ŕ' + tty: true volumeDevices: - - devicePath: "269" - name: "268" + - devicePath: "270" + name: "269" volumeMounts: - - mountPath: "265" - mountPropagation: ¿ - name: "264" - subPath: "266" - subPathExpr: "267" - workingDir: "248" + - mountPath: "266" + mountPropagation: + + name: "265" + readOnly: true + subPath: "267" + subPathExpr: "268" + workingDir: "249" dnsConfig: nameservers: - - "473" + - "470" options: - - name: "475" - value: "476" + - name: "472" + value: "473" searches: - - "474" + - "471" + dnsPolicy: 9ij\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ enableServiceLinks: false ephemeralContainers: - args: @@ -388,174 +386,178 @@ spec: fieldPath: "326" resourceFieldRef: containerName: "327" - divisor: "226" + divisor: "956" resource: "328" secretKeyRef: key: "332" name: "331" - optional: false + optional: true envFrom: - configMapRef: name: "321" - optional: false + optional: true prefix: "320" secretRef: name: "322" optional: false image: "314" - imagePullPolicy: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė + imagePullPolicy: G鄧蜢暳ǽ lifecycle: postStart: exec: command: - - "362" + - "359" httpGet: - host: "364" + host: "361" httpHeaders: - - name: "365" - value: "366" - path: "363" - port: 597943993 - scheme: "8" + - name: "362" + value: "363" + path: "360" + port: 702968201 + scheme: Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ tcpSocket: - host: "368" - port: "367" + host: "364" + port: 1993058773 preStop: exec: command: - - "369" + - "365" httpGet: - host: "371" + host: "367" httpHeaders: - - name: "372" - value: "373" - path: "370" - port: 601942575 - scheme: 壶ƵfȽÃ茓 + - name: "368" + value: "369" + path: "366" + port: 2115799218 + scheme: ɢzĮ蛋I滞廬耐鷞焬CQm坊柩劄奼[ tcpSocket: - host: "374" - port: 1359309446 + host: "371" + port: "370" livenessProbe: exec: command: - "339" - failureThreshold: 467105019 + failureThreshold: -1379762675 httpGet: - host: "342" + host: "341" httpHeaders: - - name: "343" - value: "344" + - name: "342" + value: "343" path: "340" - port: "341" - scheme: šeSvEȤƏ埮pɵ{WOŭW灬pȭ - initialDelaySeconds: -667808868 - periodSeconds: -1952582931 - successThreshold: -74827262 + port: -1491762290 + scheme: Bn(fǂǢ曣ŋayåe躒訙Ǫ + initialDelaySeconds: -17241638 + periodSeconds: 597943993 + successThreshold: -1237718434 tcpSocket: - host: "346" - port: "345" - timeoutSeconds: -1411971593 + host: "344" + port: 739175678 + terminationGracePeriodSeconds: -3735660420379502501 + timeoutSeconds: 1454160406 name: "313" ports: - - containerPort: 50696420 + - containerPort: -181601395 hostIP: "319" - hostPort: 472742933 + hostPort: -402384013 name: "318" - protocol: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ + protocol: 汰8ŕİi騎C"6x$1s readinessProbe: exec: command: - - "347" - failureThreshold: -200074798 + - "345" + failureThreshold: 1831638296 httpGet: - host: "350" + host: "348" httpHeaders: - - name: "351" - value: "352" - path: "348" - port: "349" - scheme: '| 鞤ɱďW賁Ěɭɪǹ0衷,' - initialDelaySeconds: -278396828 - periodSeconds: -1663818120 - successThreshold: -211480108 + - name: "349" + value: "350" + path: "346" + port: "347" + scheme: Ȏ3Ĕ\ɢX鰨 + initialDelaySeconds: 1031506256 + periodSeconds: -954508651 + successThreshold: 1597200284 tcpSocket: - host: "353" - port: 1692740191 - timeoutSeconds: 1497888778 + host: "351" + port: -1918622971 + terminationGracePeriodSeconds: 760480547754807445 + timeoutSeconds: -186532794 resources: limits: - ʟ鍏H鯂²静: "193" + 5哇芆斩ìh4ɊHȖ|ʐş: "879" requests: - 聋3趐囨鏻: "838" + ȭCV擭銆jʒǚ鍰\縑ɀ撑¼蠾8餑噭: "157" securityContext: allowPrivilegeEscalation: false capabilities: add: - - 1b + - "" drop: - - 汚磉反-n + - 攻xƂ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů< privileged: true - procMount: 濑 - readOnlyRootFilesystem: false - runAsGroup: 8284722634127679632 - runAsNonRoot: false - runAsUser: 6952955754983307007 + procMount: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ + readOnlyRootFilesystem: true + runAsGroup: 4961684277572791542 + runAsNonRoot: true + runAsUser: -2391833818948531474 seLinuxOptions: - level: "379" - role: "377" - type: "378" - user: "376" + level: "376" + role: "374" + type: "375" + user: "373" seccompProfile: - localhostProfile: "383" - type: ʨIk(dŊiɢzĮ蛋I滞 + localhostProfile: "380" + type: 虓氙磂tńČȷǻ.wȏâ磠Ƴ崖 windowsOptions: - gmsaCredentialSpec: "381" - gmsaCredentialSpecName: "380" - runAsUserName: "382" + gmsaCredentialSpec: "378" + gmsaCredentialSpecName: "377" + runAsUserName: "379" startupProbe: exec: command: - - "354" - failureThreshold: 2144856253 + - "352" + failureThreshold: -751455207 httpGet: - host: "357" + host: "355" httpHeaders: - - name: "358" - value: "359" - path: "355" - port: "356" - scheme: ay - initialDelaySeconds: 628632965 - periodSeconds: -1396197931 - successThreshold: -1114385515 + - name: "356" + value: "357" + path: "353" + port: "354" + scheme: 賞ǧĒzŔ瘍N + initialDelaySeconds: 2073630689 + periodSeconds: -1395144116 + successThreshold: -684167223 tcpSocket: - host: "361" - port: "360" - timeoutSeconds: 552654052 + host: "358" + port: -531787516 + terminationGracePeriodSeconds: -3839813958613977681 + timeoutSeconds: -830875556 + stdin: true stdinOnce: true - targetContainerName: "384" - terminationMessagePath: "375" - terminationMessagePolicy: 挴ʠ + targetContainerName: "381" + terminationMessagePath: "372" + terminationMessagePolicy: ĝ®EĨǔvÄÚ×p鬷 volumeDevices: - devicePath: "338" name: "337" volumeMounts: - mountPath: "334" - mountPropagation: 騎C"6x$1sȣ±p鋄 + mountPropagation: ǹ0 name: "333" - readOnly: true subPath: "335" subPathExpr: "336" workingDir: "317" hostAliases: - hostnames: - - "471" - ip: "470" + - "468" + ip: "467" hostIPC: true + hostNetwork: true hostPID: true - hostname: "401" + hostname: "398" imagePullSecrets: - - name: "400" + - name: "397" initContainers: - args: - "178" @@ -589,36 +591,38 @@ spec: name: "184" optional: false image: "176" + imagePullPolicy: ljʁ揆ɘȌ脾嚏吐ĠL lifecycle: postStart: exec: command: - - "220" + - "222" httpGet: - host: "223" + host: "224" httpHeaders: - - name: "224" - value: "225" - path: "221" - port: "222" + - name: "225" + value: "226" + path: "223" + port: 817152661 + scheme: LJèux榜VƋZ tcpSocket: - host: "227" - port: "226" + host: "228" + port: "227" preStop: exec: command: - - "228" + - "229" httpGet: - host: "230" + host: "231" httpHeaders: - - name: "231" - value: "232" - path: "229" - port: -1589303862 - scheme: ľǎɳ,ǿ飏騀呣ǎ + - name: "232" + value: "233" + path: "230" + port: -2000048581 + scheme: 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę tcpSocket: - host: "234" - port: "233" + host: "235" + port: "234" livenessProbe: exec: command: @@ -638,6 +642,7 @@ spec: tcpSocket: host: "206" port: -270045321 + terminationGracePeriodSeconds: 7695418809915380277 timeoutSeconds: -1188430996 name: "175" ports: @@ -650,75 +655,77 @@ spec: exec: command: - "207" - failureThreshold: 441998152 + failureThreshold: 192146389 httpGet: - host: "209" + host: "210" httpHeaders: - - name: "210" - value: "211" + - name: "211" + value: "212" path: "208" - port: -103588794 - scheme: ',铻OŤǢʭ嵔棂p儼Ƿ裚瓶' - initialDelaySeconds: -1275947865 - periodSeconds: -560140039 - successThreshold: -1933850966 + port: "209" + scheme: 敍0)鈼¬麄 + initialDelaySeconds: 1170649416 + periodSeconds: -1891134534 + successThreshold: -1710454086 tcpSocket: - host: "212" - port: -1549755975 - timeoutSeconds: -2112697830 + host: "213" + port: -648954478 + terminationGracePeriodSeconds: 5519151154130360761 + timeoutSeconds: 893619181 resources: limits: n芞QÄȻȊ+?ƭ峧Y栲茇竛: "118" requests: Ā<é瞾ʀNŬɨǙÄr: "862" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄 + - 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0 drop: - - rʤî萨zvt莭琽§ć\ ïì - privileged: false - procMount: ƖN粕擓Ɩ - readOnlyRootFilesystem: false - runAsGroup: 3195567116206635190 + - Kʝ瘴I\p[ħsĨɆâĺɗ + privileged: true + procMount: A + readOnlyRootFilesystem: true + runAsGroup: 6974050994588811875 runAsNonRoot: true - runAsUser: -5738810661106213940 + runAsUser: -3442119660495017037 seLinuxOptions: - level: "239" - role: "237" - type: "238" - user: "236" + level: "240" + role: "238" + type: "239" + user: "237" seccompProfile: - localhostProfile: "243" - type: Ve + localhostProfile: "244" + type: /ɸɎ R§耶FfBls3! windowsOptions: - gmsaCredentialSpec: "241" - gmsaCredentialSpecName: "240" - runAsUserName: "242" + gmsaCredentialSpec: "242" + gmsaCredentialSpecName: "241" + runAsUserName: "243" startupProbe: exec: command: - - "213" - failureThreshold: 794066396 + - "214" + failureThreshold: 1048864116 httpGet: - host: "216" + host: "217" httpHeaders: - - name: "217" - value: "218" - path: "214" - port: "215" - scheme: 胾^拜Ȍzɟ踡肒Ao/ - initialDelaySeconds: 1801903819 - periodSeconds: 436566830 - successThreshold: 1351748524 + - name: "218" + value: "219" + path: "215" + port: "216" + scheme: 瓧嫭塓烀罁胾^拜 + initialDelaySeconds: -1613115506 + periodSeconds: 1385030458 + successThreshold: 427196286 tcpSocket: - host: "219" - port: -245303037 - timeoutSeconds: -1497057920 - stdinOnce: true - terminationMessagePath: "235" - terminationMessagePolicy: 萭旿@掇lNdǂ>5姣 + host: "221" + port: "220" + terminationGracePeriodSeconds: 1132874952502226901 + timeoutSeconds: -1341523482 + terminationMessagePath: "236" + terminationMessagePolicy: U髷裎$MVȟ@7飣奺Ȋ + tty: true volumeDevices: - devicePath: "200" name: "199" @@ -729,67 +736,65 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "389" + nodeName: "386" nodeSelector: - "385": "386" + "382": "383" overhead: - öZÕW肤 遞Ȼ棉砍: "261" - preemptionPolicy: "" - priority: 338072377 - priorityClassName: "472" + 隅DžbİEMǶɼ`|褞: "229" + preemptionPolicy: n{鳻 + priority: -340583156 + priorityClassName: "469" readinessGates: - - conditionType: ȳ靘ɶ¦9F徵{ɦ!f親ʚ«Ǥ栌Ə - restartPolicy: 鷞焬C - runtimeClassName: "477" - schedulerName: "467" + - conditionType: țc£PAÎǨȨ栋 + restartPolicy: V + runtimeClassName: "474" + schedulerName: "464" securityContext: - fsGroup: 8801451190757707332 - fsGroupChangePolicy: ɋȑoG鄧蜢暳ǽżLj捲 - runAsGroup: 8766190045617353809 - runAsNonRoot: false - runAsUser: 6358118655232240727 + fsGroup: 1086777894996369636 + fsGroupChangePolicy: 嬯t{ + runAsGroup: -3984053182430357055 + runAsNonRoot: true + runAsUser: -8782526851089538175 seLinuxOptions: - level: "393" - role: "391" - type: "392" - user: "390" + level: "390" + role: "388" + type: "389" + user: "387" seccompProfile: - localhostProfile: "399" - type: xƂ9阠 + localhostProfile: "396" + type: ɾ supplementalGroups: - - -2524837786321986358 + - -4848183283725048145 sysctls: - - name: "397" - value: "398" + - name: "394" + value: "395" windowsOptions: - gmsaCredentialSpec: "395" - gmsaCredentialSpecName: "394" - runAsUserName: "396" - serviceAccount: "388" - serviceAccountName: "387" + gmsaCredentialSpec: "392" + gmsaCredentialSpecName: "391" + runAsUserName: "393" + serviceAccount: "385" + serviceAccountName: "384" setHostnameAsFQDN: false - shareProcessNamespace: false - subdomain: "402" - terminationGracePeriodSeconds: 2910487247185363461 + shareProcessNamespace: true + subdomain: "399" + terminationGracePeriodSeconds: 2097799378008387965 tolerations: - - effect: Ȫ - key: "468" - operator: â羃ȄÑNQ梯誠?忹ț慑罪ƐǥĂ/ɼ - tolerationSeconds: -3512872839388697022 - value: "469" + - key: "465" + operator: ŭʔb'?舍ȃʥx臥]å摞 + tolerationSeconds: 3053978290188957517 + value: "466" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Zy + - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b operator: NotIn values: - - 7.._B-ks7dG-9S-6 + - H1z..j_.r3--T matchLabels: - ? 17--f-z336z7---1-i-67-3o--pw8-l0d--7881-v7-j-8-98-9-av.2vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476bt/PT-_Nx__-F_._n.WaY_o.-0-yE-RW - : sfI_2-_20_9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_3H - maxSkew: 1795378781 - topologyKey: "478" - whenUnsatisfiable: 焿熣$ɒ割婻漛Ǒ + H_55..--E3_2D-1DW__o_-.k: "7" + maxSkew: 1486667065 + topologyKey: "475" + whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞 volumes: - awsElasticBlockStore: fsType: "47" @@ -1039,16 +1044,16 @@ spec: storagePolicyID: "104" storagePolicyName: "103" volumePath: "101" - ttlSecondsAfterFinished: -580752105 + ttlSecondsAfterFinished: 1020403419 status: - active: 247437609 - completedIndexes: "487" + active: -882920248 + completedIndexes: "484" conditions: - - lastProbeTime: "2229-03-14T09:15:27Z" - lastTransitionTime: "2386-02-27T08:30:37Z" - message: "486" - reason: "485" - status: ɤȶšɞƵõ禲 - type: ±n{鳻$隅DžbİEMǶɼ`|褞ŒD喼 - failed: 1380690227 - succeeded: 40631908 + - lastProbeTime: "2625-10-20T09:03:25Z" + lastTransitionTime: "2222-01-27T15:06:59Z" + message: "483" + reason: "482" + status: 褅桃| + type: 氮怉ƥ;"薑Ȣ#闬輙 + failed: -758431192 + succeeded: -1163607463 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 01c1d2632fcf..2c05dab5599d 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 @@ -604,7 +604,8 @@ "timeoutSeconds": 1885897314, "periodSeconds": -465677631, "successThreshold": 1054858106, - "failureThreshold": 232569106 + "failureThreshold": 232569106, + "terminationGracePeriodSeconds": -4941250258285962800 }, "readinessProbe": { "exec": { @@ -616,7 +617,7 @@ "path": "227", "port": "228", "host": "229", - "scheme": "癃8鸖", + "scheme": "s3!Zɾģ毋", "httpHeaders": [ { "name": "230", @@ -625,14 +626,15 @@ ] }, "tcpSocket": { - "port": 896430536, + "port": 391562775, "host": "232" }, - "initialDelaySeconds": 1574150975, - "timeoutSeconds": 993144482, - "periodSeconds": 714088955, - "successThreshold": 1033766276, - "failureThreshold": -1745509819 + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101, + "terminationGracePeriodSeconds": 6232238734837754388 }, "startupProbe": { "exec": { @@ -642,38 +644,38 @@ }, "httpGet": { "path": "234", - "port": "235", - "host": "236", - "scheme": "庎D}埽uʎȺ眖R#yV'WKw(ğ儴", + "port": -1140531048, + "host": "235", "httpHeaders": [ { - "name": "237", - "value": "238" + "name": "236", + "value": "237" } ] }, "tcpSocket": { - "port": 965937684, - "host": "239" + "port": 1741405963, + "host": "238" }, - "initialDelaySeconds": -277192536, - "timeoutSeconds": -1588323253, - "periodSeconds": -20130017, - "successThreshold": -1244623134, - "failureThreshold": -1334110502 + "initialDelaySeconds": 1260448044, + "timeoutSeconds": -200461294, + "periodSeconds": -1791206950, + "successThreshold": 1160477220, + "failureThreshold": 1226391571, + "terminationGracePeriodSeconds": 6347577485454457915 }, "lifecycle": { "postStart": { "exec": { "command": [ - "240" + "239" ] }, "httpGet": { - "path": "241", - "port": -1738069460, + "path": "240", + "port": "241", "host": "242", - "scheme": "v+8Ƥ熪军g\u003e郵[+扴", + "scheme": "Opwǩ曬逴褜1ØœȠƬQg鄠", "httpHeaders": [ { "name": "243", @@ -682,381 +684,382 @@ ] }, "tcpSocket": { - "port": "245", - "host": "246" + "port": 1102291854, + "host": "245" } }, "preStop": { "exec": { "command": [ - "247" + "246" ] }, "httpGet": { - "path": "248", - "port": "249", - "host": "250", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "247", + "port": 809006670, + "host": "248", + "scheme": "扴ȨŮ+朷Ǝ膯ljVX1虊谇", "httpHeaders": [ { - "name": "251", - "value": "252" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": "253", - "host": "254" + "port": -1748648882, + "host": "251" } } }, - "terminationMessagePath": "255", - "terminationMessagePolicy": "輦唊#v铿ʩȂ4ē鐭", - "imagePullPolicy": "岼昕ĬÇó藢xɮĵȑ6L*Z", + "terminationMessagePath": "252", + "terminationMessagePolicy": "t叀碧闳ȩr嚧ʣq埄", + "imagePullPolicy": "ē鐭#嬀ơŸ8T 苧yñKJɐ", "securityContext": { "capabilities": { "add": [ - "咡W" + "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" ], "drop": [ - "敄lu|" + "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥" ] }, "privileged": false, "seLinuxOptions": { - "user": "256", - "role": "257", - "type": "258", - "level": "259" + "user": "253", + "role": "254", + "type": "255", + "level": "256" }, "windowsOptions": { - "gmsaCredentialSpecName": "260", - "gmsaCredentialSpec": "261", - "runAsUserName": "262" + "gmsaCredentialSpecName": "257", + "gmsaCredentialSpec": "258", + "runAsUserName": "259" }, - "runAsUser": -230763786643460687, - "runAsGroup": 8175137418799691442, + "runAsUser": -3342656999442156006, + "runAsGroup": -5569844914519516591, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "=E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ", "seccompProfile": { - "type": "硐庰%皧V垾现葢ŵ橨鬶l獕;跣H", - "localhostProfile": "263" + "type": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", + "localhostProfile": "260" } }, + "stdin": true, "tty": true } ], "containers": [ { - "name": "264", - "image": "265", + "name": "261", + "image": "262", "command": [ - "266" + "263" ], "args": [ - "267" + "264" ], - "workingDir": "268", + "workingDir": "265", "ports": [ { - "name": "269", - "hostPort": 1430286749, - "containerPort": -374766088, - "protocol": "翜舞拉Œ", - "hostIP": "270" + "name": "266", + "hostPort": -825277526, + "containerPort": 1157117817, + "hostIP": "267" } ], "envFrom": [ { - "prefix": "271", + "prefix": "268", "configMapRef": { - "name": "272", + "name": "269", "optional": false }, "secretRef": { - "name": "273", - "optional": true + "name": "270", + "optional": false } } ], "env": [ { - "name": "274", - "value": "275", + "name": "271", + "value": "272", "valueFrom": { "fieldRef": { - "apiVersion": "276", - "fieldPath": "277" + "apiVersion": "273", + "fieldPath": "274" }, "resourceFieldRef": { - "containerName": "278", - "resource": "279", - "divisor": "328" + "containerName": "275", + "resource": "276", + "divisor": "107" }, "configMapKeyRef": { - "name": "280", - "key": "281", - "optional": true + "name": "277", + "key": "278", + "optional": false }, "secretKeyRef": { - "name": "282", - "key": "283", - "optional": true + "name": "279", + "key": "280", + "optional": false } } } ], "resources": { "limits": { - "訆ƎżŧL²sNƗ¸gĩ餠籲磣": "340" + "琕鶫:顇ə娯Ȱ囌{": "853" }, "requests": { - "": "771" + "Z龏´DÒȗÔÂɘɢ鬍熖B芭花": "372" } }, "volumeMounts": [ { - "name": "284", + "name": "281", "readOnly": true, - "mountPath": "285", - "subPath": "286", - "mountPropagation": "冓鍓贯", - "subPathExpr": "287" + "mountPath": "282", + "subPath": "283", + "mountPropagation": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻", + "subPathExpr": "284" } ], "volumeDevices": [ { - "name": "288", - "devicePath": "289" + "name": "285", + "devicePath": "286" } ], "livenessProbe": { "exec": { "command": [ - "290" + "287" ] }, "httpGet": { - "path": "291", - "port": 1952458416, - "host": "292", - "scheme": "琕鶫:顇ə娯Ȱ囌{", + "path": "288", + "port": "289", + "host": "290", + "scheme": "C\"6x$1s", "httpHeaders": [ { - "name": "293", - "value": "294" + "name": "291", + "value": "292" } ] }, "tcpSocket": { - "port": -1829146875, - "host": "295" + "port": "293", + "host": "294" }, - "initialDelaySeconds": -205176266, - "timeoutSeconds": 490479437, - "periodSeconds": -116469891, - "successThreshold": 311083651, - "failureThreshold": 353361793 + "initialDelaySeconds": -860435782, + "timeoutSeconds": 1067125211, + "periodSeconds": -2088645849, + "successThreshold": 1900201288, + "failureThreshold": -766915393, + "terminationGracePeriodSeconds": 3557544419897236324 }, "readinessProbe": { "exec": { "command": [ - "296" + "295" ] }, "httpGet": { - "path": "297", - "port": "298", - "host": "299", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "296", + "port": -311014176, + "host": "297", "httpHeaders": [ { - "name": "300", - "value": "301" + "name": "298", + "value": "299" } ] }, "tcpSocket": { - "port": -181601395, - "host": "302" + "port": 1076497581, + "host": "300" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 95144287, + "timeoutSeconds": 363405643, + "periodSeconds": 1635382953, + "successThreshold": -727263154, + "failureThreshold": -1449289597, + "terminationGracePeriodSeconds": 6328236602200940742 }, "startupProbe": { "exec": { "command": [ - "303" + "301" ] }, "httpGet": { - "path": "304", - "port": -305362540, - "host": "305", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "302", + "port": 248533396, + "host": "303", + "scheme": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", "httpHeaders": [ { - "name": "306", - "value": "307" + "name": "304", + "value": "305" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "308" + "port": -674445196, + "host": "306" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1239158543, + "timeoutSeconds": -543432015, + "periodSeconds": -515370067, + "successThreshold": 2073046460, + "failureThreshold": 1692740191, + "terminationGracePeriodSeconds": -1195705267535749940 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "307" ] }, "httpGet": { - "path": "310", - "port": "311", - "host": "312", - "scheme": "WOŭW灬pȭCV擭銆", + "path": "308", + "port": "309", + "host": "310", + "scheme": "Ǣ曣ŋayåe躒訙", "httpHeaders": [ { - "name": "313", - "value": "314" + "name": "311", + "value": "312" } ] }, "tcpSocket": { - "port": "315", - "host": "316" + "port": "313", + "host": "314" } }, "preStop": { "exec": { "command": [ - "317" + "315" ] }, "httpGet": { - "path": "318", - "port": 1540899353, - "host": "319", - "scheme": "| 鞤ɱďW賁Ěɭɪǹ0衷,", + "path": "316", + "port": "317", + "host": "318", + "scheme": "uE增猍ǵ xǨŴ", "httpHeaders": [ { - "name": "320", - "value": "321" + "name": "319", + "value": "320" } ] }, "tcpSocket": { - "port": 1692740191, - "host": "322" + "port": 2112112129, + "host": "321" } } }, - "terminationMessagePath": "323", - "terminationMessagePolicy": "ț譎懚XW疪鑳w", - "imagePullPolicy": "yåe躒訙Ǫʓ)", + "terminationMessagePath": "322", + "terminationMessagePolicy": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗", + "imagePullPolicy": "ĒzŔ瘍Nʊ", "securityContext": { "capabilities": { "add": [ - "嗆u" + "璾ėȜv" ], "drop": [ - "晲T[irȎ3Ĕ\\" + "b繐汚磉反-n覦灲閈誹" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "324", - "role": "325", - "type": "326", - "level": "327" + "user": "323", + "role": "324", + "type": "325", + "level": "326" }, "windowsOptions": { - "gmsaCredentialSpecName": "328", - "gmsaCredentialSpec": "329", - "runAsUserName": "330" + "gmsaCredentialSpecName": "327", + "gmsaCredentialSpec": "328", + "runAsUserName": "329" }, - "runAsUser": 4642510477960813990, - "runAsGroup": -7115468323604305274, + "runAsUser": 8423952810832831481, + "runAsGroup": 7806703309589874498, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "ȲǸ|蕎'佉賞ǧĒzŔ", + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "k(dŊiɢzĮ蛋I滞廬耐", "seccompProfile": { - "type": "", - "localhostProfile": "331" + "type": "焬CQm坊柩", + "localhostProfile": "330" } - }, - "stdin": true + } } ], "ephemeralContainers": [ { - "name": "332", - "image": "333", + "name": "331", + "image": "332", "command": [ - "334" + "333" ], "args": [ - "335" + "334" ], - "workingDir": "336", + "workingDir": "335", "ports": [ { - "name": "337", - "hostPort": 2073630689, - "containerPort": -830875556, - "protocol": "Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ", - "hostIP": "338" + "name": "336", + "hostPort": 1141812777, + "containerPort": -1830926023, + "protocol": "®EĨǔvÄÚ×p", + "hostIP": "337" } ], "envFrom": [ { - "prefix": "339", + "prefix": "338", "configMapRef": { - "name": "340", + "name": "339", "optional": true }, "secretRef": { - "name": "341", + "name": "340", "optional": true } } ], "env": [ { - "name": "342", - "value": "343", + "name": "341", + "value": "342", "valueFrom": { "fieldRef": { - "apiVersion": "344", - "fieldPath": "345" + "apiVersion": "343", + "fieldPath": "344" }, "resourceFieldRef": { - "containerName": "346", - "resource": "347", - "divisor": "678" + "containerName": "345", + "resource": "346", + "divisor": "60" }, "configMapKeyRef": { - "name": "348", - "key": "349", + "name": "347", + "key": "348", "optional": true }, "secretKeyRef": { - "name": "350", - "key": "351", + "name": "349", + "key": "350", "optional": true } } @@ -1064,66 +1067,67 @@ ], "resources": { "limits": { - "zĮ蛋I滞廬耐鷞焬CQ": "712" + "": "262" }, "requests": { - "ý萜Ǖc": "275" + "Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶": "1" } }, "volumeMounts": [ { - "name": "352", - "mountPath": "353", - "subPath": "354", - "mountPropagation": "ĝ®EĨǔvÄÚ×p鬷", - "subPathExpr": "355" + "name": "351", + "mountPath": "352", + "subPath": "353", + "mountPropagation": "TGÒ鵌Ē3Nh×DJ", + "subPathExpr": "354" } ], "volumeDevices": [ { - "name": "356", - "devicePath": "357" + "name": "355", + "devicePath": "356" } ], "livenessProbe": { "exec": { "command": [ - "358" + "357" ] }, "httpGet": { - "path": "359", - "port": -1211577347, - "host": "360", - "scheme": "ǽżLj捲", + "path": "358", + "port": -514169648, + "host": "359", + "scheme": "\u0026疀", "httpHeaders": [ { - "name": "361", - "value": "362" + "name": "360", + "value": "361" } ] }, "tcpSocket": { - "port": "363", - "host": "364" + "port": "362", + "host": "363" }, - "initialDelaySeconds": -1382141042, - "timeoutSeconds": 583526946, - "periodSeconds": 186003226, - "successThreshold": -297065907, - "failureThreshold": 466267060 + "initialDelaySeconds": -39292476, + "timeoutSeconds": 801902541, + "periodSeconds": -1312249623, + "successThreshold": -1089435479, + "failureThreshold": -1031303729, + "terminationGracePeriodSeconds": -7317946572666008364 }, "readinessProbe": { "exec": { "command": [ - "365" + "364" ] }, "httpGet": { - "path": "366", - "port": -708495486, + "path": "365", + "port": "366", "host": "367", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "scheme": "ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "httpHeaders": [ { "name": "368", @@ -1135,11 +1139,12 @@ "port": "370", "host": "371" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": 2102595797, + "timeoutSeconds": -1921957558, + "periodSeconds": 180543684, + "successThreshold": -1050610482, + "failureThreshold": 1191111236, + "terminationGracePeriodSeconds": 5574781452707956333 }, "startupProbe": { "exec": { @@ -1151,7 +1156,7 @@ "path": "373", "port": "374", "host": "375", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "scheme": "餸硷", "httpHeaders": [ { "name": "376", @@ -1160,76 +1165,77 @@ ] }, "tcpSocket": { - "port": "378", - "host": "379" + "port": 731136838, + "host": "378" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 1701169865, + "timeoutSeconds": 685946195, + "periodSeconds": 1871363087, + "successThreshold": -614257963, + "failureThreshold": 1517970305, + "terminationGracePeriodSeconds": -3984053182430357055 }, "lifecycle": { "postStart": { "exec": { "command": [ - "380" + "379" ] }, "httpGet": { - "path": "381", - "port": "382", - "host": "383", - "scheme": "ńČȷǻ.wȏâ磠Ƴ崖S", + "path": "380", + "port": "381", + "host": "382", + "scheme": "ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ", "httpHeaders": [ { - "name": "384", - "value": "385" + "name": "383", + "value": "384" } ] }, "tcpSocket": { - "port": "386", - "host": "387" + "port": "385", + "host": "386" } }, "preStop": { "exec": { "command": [ - "388" + "387" ] }, "httpGet": { - "path": "389", - "port": "390", - "host": "391", - "scheme": "橱9ij\\Ď愝Ű藛b磾s", + "path": "388", + "port": "389", + "host": "390", + "scheme": "cx赮ǒđ\u003e*劶?j", "httpHeaders": [ { - "name": "392", - "value": "393" + "name": "391", + "value": "392" } ] }, "tcpSocket": { - "port": 2060584115, + "port": "393", "host": "394" } } }, "terminationMessagePath": "395", - "terminationMessagePolicy": "敮ǰ詀ǿ忀oɎƺL肄$鬬$", - "imagePullPolicy": "ʫ羶剹ƊF豎穜姰l咑", + "terminationMessagePolicy": "¥", + "imagePullPolicy": "Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃", "securityContext": { "capabilities": { "add": [ - "^鏋蛹Ƚȿ醏g遧" + "ȕW歹s" ], "drop": [ - "飂廤Ƌʙcx" + "ɥʋăƻ遲" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { "user": "396", "role": "397", @@ -1241,26 +1247,25 @@ "gmsaCredentialSpec": "401", "runAsUserName": "402" }, - "runAsUser": 73764735411458498, - "runAsGroup": 650553495487228967, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "ĭ¥#ƱÁR", + "runAsUser": 3805707846751185585, + "runAsGroup": 4820130167691486230, + "runAsNonRoot": false, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", "seccompProfile": { - "type": "淹揀.e鍃G昧牱fsǕT衩kƒK07", + "type": "z鋎", "localhostProfile": "403" } }, - "stdin": true, "tty": true, "targetContainerName": "404" } ], - "restartPolicy": "œj堑ūM鈱ɖ'蠨磼O_h", - "terminationGracePeriodSeconds": 3305070661619041050, - "activeDeadlineSeconds": -8735446882646824517, - "dnsPolicy": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿", + "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", + "terminationGracePeriodSeconds": -8963807447996144781, + "activeDeadlineSeconds": -5539971415578447792, + "dnsPolicy": "6", "nodeSelector": { "405": "406" }, @@ -1269,6 +1274,7 @@ "automountServiceAccountToken": false, "nodeName": "409", "hostNetwork": true, + "hostPID": true, "hostIPC": true, "shareProcessNamespace": true, "securityContext": { @@ -1283,22 +1289,22 @@ "gmsaCredentialSpec": "415", "runAsUserName": "416" }, - "runAsUser": 4444586492552487433, - "runAsGroup": 3185438857926287711, - "runAsNonRoot": true, + "runAsUser": 4290717681745188904, + "runAsGroup": 3355244307027629244, + "runAsNonRoot": false, "supplementalGroups": [ - 3497863229537310760 + -7106117411092125093 ], - "fsGroup": 5195444687005969380, + "fsGroup": -9164240834267238973, "sysctls": [ { "name": "417", "value": "418" } ], - "fsGroupChangePolicy": "ƴɦ燻踸陴Sĕ濦ʓɻ", + "fsGroupChangePolicy": "", "seccompProfile": { - "type": "0蚢鑸鶲Ãqb轫ʓ滨Ė", + "type": "d'呪", "localhostProfile": "419" } }, @@ -1317,7 +1323,7 @@ "matchExpressions": [ { "key": "423", - "operator": "呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG喾", + "operator": "W瀤oɢ嫎¸殚篎3o8[y", "values": [ "424" ] @@ -1326,7 +1332,7 @@ "matchFields": [ { "key": "425", - "operator": "y#t(ȗŜŲ\u0026", + "operator": "ï驿笈", "values": [ "426" ] @@ -1337,12 +1343,12 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1116309226, + "weight": -1009377808, "preference": { "matchExpressions": [ { "key": "427", - "operator": "l", + "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", "values": [ "428" ] @@ -1351,7 +1357,7 @@ "matchFields": [ { "key": "429", - "operator": "", + "operator": "惍EʦŊĊ娮rȧ", "values": [ "430" ] @@ -1366,14 +1372,14 @@ { "labelSelector": { "matchLabels": { - "5_.-miJ4x-_0_5-_.7Fp": "S-_AmD-.0AP.-.C_p" + "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" }, "matchExpressions": [ { - "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", + "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", "operator": "NotIn", "values": [ - "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" + "0..KpiS.oK-.O--5-yp8q_s-L" ] } ] @@ -1384,12 +1390,12 @@ "topologyKey": "438", "namespaceSelector": { "matchLabels": { - "4eq5": "" + "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": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "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" } ] } @@ -1397,19 +1403,16 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 888976270, + "weight": -234140, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n" + "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2" }, "matchExpressions": [ { - "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" - ] + "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s", + "operator": "Exists" } ] }, @@ -1419,15 +1422,12 @@ "topologyKey": "452", "namespaceSelector": { "matchLabels": { - "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" + "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" }, "matchExpressions": [ { - "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" - ] + "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np", + "operator": "DoesNotExist" } ] } @@ -1440,12 +1440,15 @@ { "labelSelector": { "matchLabels": { - "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" + "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8" }, "matchExpressions": [ { - "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8", - "operator": "Exists" + "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" + ] } ] }, @@ -1455,14 +1458,14 @@ "topologyKey": "466", "namespaceSelector": { "matchLabels": { - "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E" + "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" }, "matchExpressions": [ { - "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s", + "key": "N7.81_-._-_8_.._._a9", "operator": "In", "values": [ - "V._qN__A_f_-B3_U__L.KH6K.RwsfI2" + "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh" ] } ] @@ -1471,16 +1474,16 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1668452490, + "weight": 1276377114, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "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" + "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": "6W74-R_Z_Tz.a3_Ho", - "operator": "Exists" + "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h", + "operator": "DoesNotExist" } ] }, @@ -1490,15 +1493,12 @@ "topologyKey": "480", "namespaceSelector": { "matchLabels": { - "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i" + "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": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV", - "operator": "In", - "values": [ - "x3___-..f5-6x-_-o_6O_If-5_-_.F" - ] + "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" } ] } @@ -1511,10 +1511,10 @@ "tolerations": [ { "key": "488", - "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", "value": "489", - "effect": "慰x:", - "tolerationSeconds": 3362400521064014157 + "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", + "tolerationSeconds": 3252034671163905138 } ], "hostAliases": [ @@ -1526,7 +1526,7 @@ } ], "priorityClassName": "492", - "priority": 743241089, + "priority": 347613368, "dnsConfig": { "nameservers": [ "493" @@ -1543,46 +1543,45 @@ }, "readinessGates": [ { - "conditionType": "0yVA嬂刲;牆詒ĸąs" + "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" } ], "runtimeClassName": "497", "enableServiceLinks": false, - "preemptionPolicy": "Iƭij韺ʧ\u003e", + "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "overhead": { - "D傕Ɠ栊闔虝巒瀦ŕ": "124" + "D輷": "792" }, "topologySpreadConstraints": [ { - "maxSkew": -174245111, + "maxSkew": -484382570, "topologyKey": "498", - "whenUnsatisfiable": "", + "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "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" + "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb" }, "matchExpressions": [ { - "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x", - "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": [ - "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe" + "h.v._5.vB-.-7-.6Jv-86___3" ] } ] } } ], - "setHostnameAsFQDN": true + "setHostnameAsFQDN": false } }, - "ttlSecondsAfterFinished": -1166275743, - "completionMode": "\u0026ɃB沅零șPî壣V礆", + "ttlSecondsAfterFinished": -1285029915, "suspend": true } }, - "successfulJobsHistoryLimit": 1171076488, - "failedJobsHistoryLimit": -1190434752 + "successfulJobsHistoryLimit": 1729066291, + "failedJobsHistoryLimit": -908823020 }, "status": { "active": [ @@ -1590,7 +1589,7 @@ "kind": "505", "namespace": "506", "name": "507", - "uid": "圻醆锛[M牍Ƃ氙吐ɝ鶼", + "uid": "`", "apiVersion": "508", "resourceVersion": "509", "fieldPath": "510" 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 b7b173cf4bd3..4b7a537b7b99 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 3030c4eb112b..43dd134ad82a 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 @@ -31,7 +31,7 @@ metadata: uid: "7" spec: concurrencyPolicy: Hr鯹)晿郵[+扴 + path: "240" + port: "241" + scheme: Opwǩ曬逴褜1ØœȠƬQg鄠 tcpSocket: - host: "246" - port: "245" + host: "245" + port: 1102291854 preStop: exec: command: - - "247" + - "246" httpGet: - host: "250" + host: "248" httpHeaders: - - name: "251" - value: "252" - path: "248" - port: "249" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' + - name: "249" + value: "250" + path: "247" + port: 809006670 + scheme: 扴ȨŮ+朷Ǝ膯ljVX1虊谇 tcpSocket: - host: "254" - port: "253" + host: "251" + port: -1748648882 livenessProbe: exec: command: @@ -672,6 +671,7 @@ spec: tcpSocket: host: "225" port: 2060823740 + terminationGracePeriodSeconds: -4941250258285962800 timeoutSeconds: 1885897314 name: "193" ports: @@ -684,7 +684,7 @@ spec: exec: command: - "226" - failureThreshold: -1745509819 + failureThreshold: -1213051101 httpGet: host: "229" httpHeaders: @@ -692,66 +692,68 @@ spec: value: "231" path: "227" port: "228" - scheme: 癃8鸖 - initialDelaySeconds: 1574150975 - periodSeconds: 714088955 - successThreshold: 1033766276 + scheme: s3!Zɾģ毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: host: "232" - port: 896430536 - timeoutSeconds: 993144482 + port: 391562775 + terminationGracePeriodSeconds: 6232238734837754388 + timeoutSeconds: -832805508 resources: limits: 莭琽§ć\ ïì«丯Ƙ枛牐ɺ: "660" requests: I\p[: "853" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 咡W + - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 drop: - - 敄lu| + - 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥 privileged: false - procMount: =E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展 - readOnlyRootFilesystem: false - runAsGroup: 8175137418799691442 + procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ + readOnlyRootFilesystem: true + runAsGroup: -5569844914519516591 runAsNonRoot: true - runAsUser: -230763786643460687 + runAsUser: -3342656999442156006 seLinuxOptions: - level: "259" - role: "257" - type: "258" - user: "256" + level: "256" + role: "254" + type: "255" + user: "253" seccompProfile: - localhostProfile: "263" - type: 硐庰%皧V垾现葢ŵ橨鬶l獕;跣H + localhostProfile: "260" + type: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ windowsOptions: - gmsaCredentialSpec: "261" - gmsaCredentialSpecName: "260" - runAsUserName: "262" + gmsaCredentialSpec: "258" + gmsaCredentialSpecName: "257" + runAsUserName: "259" startupProbe: exec: command: - "233" - failureThreshold: -1334110502 + failureThreshold: 1226391571 httpGet: - host: "236" + host: "235" httpHeaders: - - name: "237" - value: "238" + - name: "236" + value: "237" path: "234" - port: "235" - scheme: 庎D}埽uʎȺ眖R#yV'WKw(ğ儴 - initialDelaySeconds: -277192536 - periodSeconds: -20130017 - successThreshold: -1244623134 + port: -1140531048 + initialDelaySeconds: 1260448044 + periodSeconds: -1791206950 + successThreshold: 1160477220 tcpSocket: - host: "239" - port: 965937684 - timeoutSeconds: -1588323253 - terminationMessagePath: "255" - terminationMessagePolicy: 輦唊#v铿ʩȂ4ē鐭 + host: "238" + port: 1741405963 + terminationGracePeriodSeconds: 6347577485454457915 + timeoutSeconds: -200461294 + stdin: true + terminationMessagePath: "252" + terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄 tty: true volumeDevices: - devicePath: "218" @@ -768,21 +770,21 @@ spec: nodeSelector: "405": "406" overhead: - D傕Ɠ栊闔虝巒瀦ŕ: "124" - preemptionPolicy: Iƭij韺ʧ> - priority: 743241089 + D輷: "792" + preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 + priority: 347613368 priorityClassName: "492" readinessGates: - - conditionType: 0yVA嬂刲;牆詒ĸąs - restartPolicy: œj堑ūM鈱ɖ'蠨磼O_h + - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ + restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 runtimeClassName: "497" schedulerName: "487" securityContext: - fsGroup: 5195444687005969380 - fsGroupChangePolicy: ƴɦ燻踸陴Sĕ濦ʓɻ - runAsGroup: 3185438857926287711 - runAsNonRoot: true - runAsUser: 4444586492552487433 + fsGroup: -9164240834267238973 + fsGroupChangePolicy: "" + runAsGroup: 3355244307027629244 + runAsNonRoot: false + runAsUser: 4290717681745188904 seLinuxOptions: level: "413" role: "411" @@ -790,9 +792,9 @@ spec: user: "410" seccompProfile: localhostProfile: "419" - type: 0蚢鑸鶲Ãqb轫ʓ滨Ė + type: d'呪 supplementalGroups: - - 3497863229537310760 + - -7106117411092125093 sysctls: - name: "417" value: "418" @@ -802,28 +804,28 @@ spec: runAsUserName: "416" serviceAccount: "408" serviceAccountName: "407" - setHostnameAsFQDN: true + setHostnameAsFQDN: false shareProcessNamespace: true subdomain: "422" - terminationGracePeriodSeconds: 3305070661619041050 + terminationGracePeriodSeconds: -8963807447996144781 tolerations: - - effect: '慰x:' + - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ key: "488" - operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ - tolerationSeconds: 3362400521064014157 + operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 + tolerationSeconds: 3252034671163905138 value: "489" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x - 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: - - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe + - h.v._5.vB-.-7-.6Jv-86___3 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 + n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb + maxSkew: -484382570 topologyKey: "498" - whenUnsatisfiable: "" + whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC` volumes: - awsElasticBlockStore: fsType: "65" @@ -1076,10 +1078,10 @@ spec: storagePolicyID: "122" storagePolicyName: "121" volumePath: "119" - ttlSecondsAfterFinished: -1166275743 + ttlSecondsAfterFinished: -1285029915 schedule: "19" startingDeadlineSeconds: -2555947251840004808 - successfulJobsHistoryLimit: 1171076488 + successfulJobsHistoryLimit: 1729066291 suspend: true status: active: @@ -1089,4 +1091,4 @@ status: name: "507" namespace: "506" resourceVersion: "509" - uid: 圻醆锛[M牍Ƃ氙吐ɝ鶼 + 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 701567d01eb7..3ec2d9b44895 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 @@ -601,7 +601,8 @@ "timeoutSeconds": -553100686, "periodSeconds": 44509253, "successThreshold": -1661575965, - "failureThreshold": 183376425 + "failureThreshold": 183376425, + "terminationGracePeriodSeconds": 439010468654957223 }, "readinessProbe": { "exec": { @@ -611,25 +612,26 @@ }, "httpGet": { "path": "226", - "port": "227", - "host": "228", - "scheme": "E剒蔞", + "port": -2133054549, + "host": "227", + "scheme": "遰=E", "httpHeaders": [ { - "name": "229", - "value": "230" + "name": "228", + "value": "229" } ] }, "tcpSocket": { - "port": -1313320434, + "port": "230", "host": "231" }, - "initialDelaySeconds": 14304392, - "timeoutSeconds": 465972736, - "periodSeconds": -1784617397, - "successThreshold": 1941923625, - "failureThreshold": 59244165 + "initialDelaySeconds": -1462219068, + "timeoutSeconds": -370386363, + "periodSeconds": 1714588921, + "successThreshold": -1246371817, + "failureThreshold": 617318981, + "terminationGracePeriodSeconds": 1856677271350902065 }, "startupProbe": { "exec": { @@ -639,250 +641,253 @@ }, "httpGet": { "path": "233", - "port": 676578360, - "host": "234", - "scheme": "跩aŕ翑", + "port": "234", + "host": "235", + "scheme": "ŕ翑0展}", "httpHeaders": [ { - "name": "235", - "value": "236" + "name": "236", + "value": "237" } ] }, "tcpSocket": { - "port": "237", - "host": "238" + "port": "238", + "host": "239" }, - "initialDelaySeconds": 1513425349, - "timeoutSeconds": 1165327504, - "periodSeconds": -2165496, - "successThreshold": -1778952574, - "failureThreshold": 1386255869 + "initialDelaySeconds": -1778952574, + "timeoutSeconds": 1386255869, + "periodSeconds": -778272981, + "successThreshold": 2056774277, + "failureThreshold": -2146674095, + "terminationGracePeriodSeconds": -1117820874616112287 }, "lifecycle": { "postStart": { "exec": { "command": [ - "239" + "240" ] }, "httpGet": { - "path": "240", - "port": -260262954, - "host": "241", - "scheme": "ŵ橨鬶l獕;跣H", + "path": "241", + "port": "242", + "host": "243", + "scheme": "队偯J僳徥淳4揻", "httpHeaders": [ { - "name": "242", - "value": "243" + "name": "244", + "value": "245" } ] }, "tcpSocket": { - "port": -1164530482, - "host": "244" + "port": 878005329, + "host": "246" } }, "preStop": { "exec": { "command": [ - "245" + "247" ] }, "httpGet": { - "path": "246", - "port": 878005329, - "host": "247", - "scheme": "丟×x锏ɟ4Ǒ", + "path": "248", + "port": "249", + "host": "250", + "scheme": "Œɥ颶妧Ö闊 鰔澝qV訆Ǝ", "httpHeaders": [ { - "name": "248", - "value": "249" + "name": "251", + "value": "252" } ] }, "tcpSocket": { - "port": "250", - "host": "251" + "port": 509813083, + "host": "253" } } }, - "terminationMessagePath": "252", - "terminationMessagePolicy": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", - "imagePullPolicy": "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴", + "terminationMessagePath": "254", + "terminationMessagePolicy": "²sNƗ¸g", + "imagePullPolicy": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:", "securityContext": { "capabilities": { "add": [ - "Ǩź'ǵɐ" + "" ], "drop": [ - "Z龏´DÒȗÔÂɘɢ鬍熖B芭花" + "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;" ] }, "privileged": false, "seLinuxOptions": { - "user": "253", - "role": "254", - "type": "255", - "level": "256" + "user": "255", + "role": "256", + "type": "257", + "level": "258" }, "windowsOptions": { - "gmsaCredentialSpecName": "257", - "gmsaCredentialSpec": "258", - "runAsUserName": "259" + "gmsaCredentialSpecName": "259", + "gmsaCredentialSpec": "260", + "runAsUserName": "261" }, - "runAsUser": 2666412258966278206, - "runAsGroup": -8715915045560617563, - "runAsNonRoot": true, + "runAsUser": 5431518803727886665, + "runAsGroup": -545284475172904979, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "²静ƲǦŐnj汰8", + "allowPrivilegeEscalation": true, + "procMount": "丆", "seccompProfile": { - "type": "İ", - "localhostProfile": "260" + "type": "²Ŏ)/灩聋3趐囨", + "localhostProfile": "262" } - }, - "stdinOnce": true + } } ], "containers": [ { - "name": "261", - "image": "262", + "name": "263", + "image": "264", "command": [ - "263" + "265" ], "args": [ - "264" + "266" ], - "workingDir": "265", + "workingDir": "267", "ports": [ { - "name": "266", - "hostPort": -522215271, - "containerPort": 1374479082, - "protocol": "$1sȣ", - "hostIP": "267" + "name": "268", + "hostPort": -1733181402, + "containerPort": -1365158918, + "protocol": "OǨ繫ʎǑyZ", + "hostIP": "269" } ], "envFrom": [ { - "prefix": "268", + "prefix": "270", "configMapRef": { - "name": "269", + "name": "271", "optional": false }, "secretRef": { - "name": "270", + "name": "272", "optional": true } } ], "env": [ { - "name": "271", - "value": "272", + "name": "273", + "value": "274", "valueFrom": { "fieldRef": { - "apiVersion": "273", - "fieldPath": "274" + "apiVersion": "275", + "fieldPath": "276" }, "resourceFieldRef": { - "containerName": "275", - "resource": "276", - "divisor": "946" + "containerName": "277", + "resource": "278", + "divisor": "516" }, "configMapKeyRef": { - "name": "277", - "key": "278", - "optional": false - }, - "secretKeyRef": { "name": "279", "key": "280", "optional": true + }, + "secretKeyRef": { + "name": "281", + "key": "282", + "optional": true } } } ], "resources": { "limits": { - "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮": "253" + "": "991" }, "requests": { - "擭銆jʒǚ鍰\\縑": "992" + "斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ": "850" } }, "volumeMounts": [ { - "name": "281", - "mountPath": "282", - "subPath": "283", - "mountPropagation": "ɱďW賁Ě", - "subPathExpr": "284" + "name": "283", + "readOnly": true, + "mountPath": "284", + "subPath": "285", + "mountPropagation": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ", + "subPathExpr": "286" } ], "volumeDevices": [ { - "name": "285", - "devicePath": "286" + "name": "287", + "devicePath": "288" } ], "livenessProbe": { "exec": { "command": [ - "287" + "289" ] }, "httpGet": { - "path": "288", - "port": "289", - "host": "290", - "scheme": ")DŽ髐njʉBn(fǂ", + "path": "290", + "port": -543432015, + "host": "291", + "scheme": "ƷƣMț", "httpHeaders": [ { - "name": "291", - "value": "292" + "name": "292", + "value": "293" } ] }, "tcpSocket": { - "port": 872525702, - "host": "293" + "port": "294", + "host": "295" }, - "initialDelaySeconds": 310594543, - "timeoutSeconds": -115381263, - "periodSeconds": -2110435664, - "successThreshold": -426022413, - "failureThreshold": 628632965 + "initialDelaySeconds": -211480108, + "timeoutSeconds": -200074798, + "periodSeconds": 556036216, + "successThreshold": -1838917931, + "failureThreshold": -1563928252, + "terminationGracePeriodSeconds": -1301089041686500367 }, "readinessProbe": { "exec": { "command": [ - "294" + "296" ] }, "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "趭(娕uE增猍ǵ x", + "path": "297", + "port": 455919108, + "host": "298", + "scheme": "崍h趭(娕u", "httpHeaders": [ { - "name": "298", - "value": "299" + "name": "299", + "value": "300" } ] }, "tcpSocket": { - "port": "300", + "port": 805162379, "host": "301" }, - "initialDelaySeconds": -1320027474, - "timeoutSeconds": -1750169306, - "periodSeconds": 2112112129, - "successThreshold": 528603974, - "failureThreshold": -342387625 + "initialDelaySeconds": 1486914884, + "timeoutSeconds": -641001381, + "periodSeconds": -977348956, + "successThreshold": -637630736, + "failureThreshold": 601942575, + "terminationGracePeriodSeconds": -5669474827175536499 }, "startupProbe": { "exec": { @@ -894,7 +899,7 @@ "path": "303", "port": "304", "host": "305", - "scheme": "/Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ", + "scheme": "Ã茓pȓɻ", "httpHeaders": [ { "name": "306", @@ -906,11 +911,12 @@ "port": "308", "host": "309" }, - "initialDelaySeconds": 2036955392, - "timeoutSeconds": 626243488, - "periodSeconds": -1920304485, - "successThreshold": -1842062977, - "failureThreshold": 1424401373 + "initialDelaySeconds": 1737172479, + "timeoutSeconds": -767058113, + "periodSeconds": 1223564938, + "successThreshold": 1241693652, + "failureThreshold": 1803882645, + "terminationGracePeriodSeconds": 8011596308221389971 }, "lifecycle": { "postStart": { @@ -921,18 +927,18 @@ }, "httpGet": { "path": "311", - "port": -1395144116, - "host": "312", - "scheme": "v1b繐汚磉", + "port": "312", + "host": "313", + "scheme": "ĒzŔ瘍Nʊ", "httpHeaders": [ { - "name": "313", - "value": "314" + "name": "314", + "value": "315" } ] }, "tcpSocket": { - "port": "315", + "port": 2073630689, "host": "316" } }, @@ -944,23 +950,23 @@ }, "httpGet": { "path": "318", - "port": 1388874570, - "host": "319", - "scheme": "輅9ɛ棕ƈ", + "port": "319", + "host": "320", + "scheme": "泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ", "httpHeaders": [ { - "name": "320", - "value": "321" + "name": "321", + "value": "322" } ] }, "tcpSocket": { - "port": "322", - "host": "323" + "port": "323", + "host": "324" } } }, - "terminationMessagePath": "324", + "terminationMessagePath": "325", "terminationMessagePolicy": "礫Ƽ¨Ix糂腂ǂǚŜEu", "imagePullPolicy": "I滞廬耐鷞焬CQm坊柩劄奼[", "securityContext": { @@ -974,15 +980,15 @@ }, "privileged": true, "seLinuxOptions": { - "user": "325", - "role": "326", - "type": "327", - "level": "328" + "user": "326", + "role": "327", + "type": "328", + "level": "329" }, "windowsOptions": { - "gmsaCredentialSpecName": "329", - "gmsaCredentialSpec": "330", - "runAsUserName": "331" + "gmsaCredentialSpecName": "330", + "gmsaCredentialSpec": "331", + "runAsUserName": "332" }, "runAsUser": 2803095162614904173, "runAsGroup": -1207159809527615562, @@ -992,7 +998,7 @@ "procMount": "-紑浘牬釼aTGÒ鵌", "seccompProfile": { "type": "3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶", - "localhostProfile": "332" + "localhostProfile": "333" } }, "stdin": true @@ -1000,59 +1006,59 @@ ], "ephemeralContainers": [ { - "name": "333", - "image": "334", + "name": "334", + "image": "335", "command": [ - "335" + "336" ], "args": [ - "336" + "337" ], - "workingDir": "337", + "workingDir": "338", "ports": [ { - "name": "338", + "name": "339", "hostPort": -257245030, "containerPort": -166419777, "protocol": "a殆诵H玲", - "hostIP": "339" + "hostIP": "340" } ], "envFrom": [ { - "prefix": "340", + "prefix": "341", "configMapRef": { - "name": "341", + "name": "342", "optional": false }, "secretRef": { - "name": "342", + "name": "343", "optional": false } } ], "env": [ { - "name": "343", - "value": "344", + "name": "344", + "value": "345", "valueFrom": { "fieldRef": { - "apiVersion": "345", - "fieldPath": "346" + "apiVersion": "346", + "fieldPath": "347" }, "resourceFieldRef": { - "containerName": "347", - "resource": "348", + "containerName": "348", + "resource": "349", "divisor": "274" }, "configMapKeyRef": { - "name": "349", - "key": "350", + "name": "350", + "key": "351", "optional": false }, "secretKeyRef": { - "name": "351", - "key": "352", + "name": "352", + "key": "353", "optional": true } } @@ -1068,59 +1074,60 @@ }, "volumeMounts": [ { - "name": "353", + "name": "354", "readOnly": true, - "mountPath": "354", - "subPath": "355", + "mountPath": "355", + "subPath": "356", "mountPropagation": "{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬɸ", - "subPathExpr": "356" + "subPathExpr": "357" } ], "volumeDevices": [ { - "name": "357", - "devicePath": "358" + "name": "358", + "devicePath": "359" } ], "livenessProbe": { "exec": { "command": [ - "359" + "360" ] }, "httpGet": { - "path": "360", - "port": "361", - "host": "362", + "path": "361", + "port": "362", + "host": "363", "scheme": "cx赮ǒđ\u003e*劶?j", "httpHeaders": [ { - "name": "363", - "value": "364" + "name": "364", + "value": "365" } ] }, "tcpSocket": { - "port": "365", - "host": "366" + "port": "366", + "host": "367" }, "initialDelaySeconds": 1008425444, "timeoutSeconds": -821592382, "periodSeconds": 1678953375, "successThreshold": 1045190247, - "failureThreshold": 1805682547 + "failureThreshold": 1805682547, + "terminationGracePeriodSeconds": -2797767251501326723 }, "readinessProbe": { "exec": { "command": [ - "367" + "368" ] }, "httpGet": { - "path": "368", - "port": "369", + "path": "369", + "port": 2032588794, "host": "370", - "scheme": "ʨ|ǓÓ敆OɈÏ 瞍髃#", + "scheme": "鍃G昧牱", "httpHeaders": [ { "name": "371", @@ -1129,55 +1136,57 @@ ] }, "tcpSocket": { - "port": -839925309, - "host": "373" + "port": "373", + "host": "374" }, - "initialDelaySeconds": -526099499, - "timeoutSeconds": -1014296961, - "periodSeconds": 1708011112, - "successThreshold": -603097910, - "failureThreshold": 1776174141 + "initialDelaySeconds": -215316554, + "timeoutSeconds": -2141869576, + "periodSeconds": 1521292403, + "successThreshold": -283400620, + "failureThreshold": -394464008, + "terminationGracePeriodSeconds": 911858222236680643 }, "startupProbe": { "exec": { "command": [ - "374" + "375" ] }, "httpGet": { - "path": "375", - "port": 240154501, - "host": "376", - "scheme": "鈱ɖ'蠨磼O_h盌3+Œ9两@8", + "path": "376", + "port": -629974246, + "host": "377", + "scheme": "œj堑ūM鈱ɖ'蠨磼O_h", "httpHeaders": [ { - "name": "377", - "value": "378" + "name": "378", + "value": "379" } ] }, "tcpSocket": { - "port": -130408357, - "host": "379" + "port": -2033879721, + "host": "380" }, - "initialDelaySeconds": 1239250019, - "timeoutSeconds": 1041627045, - "periodSeconds": 800533897, - "successThreshold": 701103233, - "failureThreshold": 1995848794 + "initialDelaySeconds": -1026606578, + "timeoutSeconds": -25232164, + "periodSeconds": -645536124, + "successThreshold": 896697276, + "failureThreshold": 279062028, + "terminationGracePeriodSeconds": 4458982675949227932 }, "lifecycle": { "postStart": { "exec": { "command": [ - "380" + "381" ] }, "httpGet": { - "path": "381", - "port": "382", + "path": "382", + "port": -1289510276, "host": "383", - "scheme": "迾娙ƴ4虵p蓋沥7uPƒw©", + "scheme": "ŒGm¨z鋎靀G", "httpHeaders": [ { "name": "384", @@ -1198,9 +1207,9 @@ }, "httpGet": { "path": "389", - "port": 1782790310, + "port": 1289969734, "host": "390", - "scheme": "燻", + "scheme": "7uPƒw©ɴĶ烷Ľ", "httpHeaders": [ { "name": "391", @@ -1209,100 +1218,100 @@ ] }, "tcpSocket": { - "port": "393", - "host": "394" + "port": 1468940509, + "host": "393" } } }, - "terminationMessagePath": "395", - "terminationMessagePolicy": "Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh", - "imagePullPolicy": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG", + "terminationMessagePath": "394", + "terminationMessagePolicy": "像-觗裓6Ř", "securityContext": { "capabilities": { "add": [ - "潷ƹ8" + "蚢鑸鶲Ãq" ], "drop": [ - "驿笈¯rƈa餖Ľƛ淴ɑ?¶ȲƪE1º轪" + "轫ʓ滨ĖRh}颉" ] }, "privileged": false, "seLinuxOptions": { - "user": "396", - "role": "397", - "type": "398", - "level": "399" + "user": "395", + "role": "396", + "type": "397", + "level": "398" }, "windowsOptions": { - "gmsaCredentialSpecName": "400", - "gmsaCredentialSpec": "401", - "runAsUserName": "402" + "gmsaCredentialSpecName": "399", + "gmsaCredentialSpec": "400", + "runAsUserName": "401" }, - "runAsUser": -6276111079389958404, - "runAsGroup": 2598196603659411991, + "runAsUser": -7492598848400758567, + "runAsGroup": -4328915352766545090, "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "朘ZDŽʤ搤ȃ$|gɳ礬.", + "allowPrivilegeEscalation": true, + "procMount": "¸殚篎3", "seccompProfile": { - "type": "屏ɧeʫį淓¯Ą0", - "localhostProfile": "403" + "type": "8[y#t(ȗŜŲ", + "localhostProfile": "402" } }, - "targetContainerName": "404" + "tty": true, + "targetContainerName": "403" } ], - "restartPolicy": "z委\u003e,趐V曡88 ", - "terminationGracePeriodSeconds": 7262077834269164809, - "activeDeadlineSeconds": 5057463609793482770, - "dnsPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉", + "restartPolicy": "y", + "terminationGracePeriodSeconds": -1357828024706138776, + "activeDeadlineSeconds": -3501425899000054955, "nodeSelector": { - "405": "406" + "404": "405" }, - "serviceAccountName": "407", - "serviceAccount": "408", - "automountServiceAccountToken": false, - "nodeName": "409", - "hostPID": true, - "shareProcessNamespace": false, + "serviceAccountName": "406", + "serviceAccount": "407", + "automountServiceAccountToken": true, + "nodeName": "408", + "hostNetwork": true, + "hostIPC": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "410", - "role": "411", - "type": "412", - "level": "413" + "user": "409", + "role": "410", + "type": "411", + "level": "412" }, "windowsOptions": { - "gmsaCredentialSpecName": "414", - "gmsaCredentialSpec": "415", - "runAsUserName": "416" + "gmsaCredentialSpecName": "413", + "gmsaCredentialSpec": "414", + "runAsUserName": "415" }, - "runAsUser": -66255511088094923, - "runAsGroup": 7326115313877449072, + "runAsUser": -4962946920772050319, + "runAsGroup": 5200080507234099655, "runAsNonRoot": true, "supplementalGroups": [ - -6970600339447394194 + -4548866432246561416 ], - "fsGroup": -5220408729438381350, + "fsGroup": -6276111079389958404, "sysctls": [ { - "name": "417", - "value": "418" + "name": "416", + "value": "417" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ", "seccompProfile": { - "type": "稨氙'[", - "localhostProfile": "419" + "type": "ʫį淓¯Ą0ƛ忀z委\u003e,趐V曡88 ", + "localhostProfile": "418" } }, "imagePullSecrets": [ { - "name": "420" + "name": "419" } ], - "hostname": "421", - "subdomain": "422", + "hostname": "420", + "subdomain": "421", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1310,19 +1319,19 @@ { "matchExpressions": [ { - "key": "423", - "operator": "阫Ƈʥ椹ý", + "key": "422", + "operator": "刪q塨Ý-扚聧扈4ƫZɀȩ愉", "values": [ - "424" + "423" ] } ], "matchFields": [ { - "key": "425", - "operator": "Ơ9oÕęȄ怈ƴȃű/ś錏嬮#ʐ裥d[", + "key": "424", + "operator": "m嵘厶sȰÖ埡ÆɰŞ襵樞", "values": [ - "426" + "425" ] } ] @@ -1331,23 +1340,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1354397536, + "weight": 2082229073, "preference": { "matchExpressions": [ { - "key": "427", - "operator": "ƷK*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗȦɆ悼j", + "key": "426", + "operator": "ƨɤ血x柱栦阫Ƈʥ椹", "values": [ - "428" + "427" ] } ], "matchFields": [ { - "key": "429", - "operator": "%ɀ蓧睔", + "key": "428", + "operator": "_", "values": [ - "430" + "429" ] } ] @@ -1360,29 +1369,32 @@ { "labelSelector": { "matchLabels": { - "4eq5": "" + "3--51": "h-K5y_AzOBW.9oE9_6.-v" }, "matchExpressions": [ { - "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z", - "operator": "Exists" + "key": "064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4", + "operator": "In", + "values": [ + "S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7" + ] } ] }, "namespaces": [ - "437" + "436" ], - "topologyKey": "438", + "topologyKey": "437", "namespaceSelector": { "matchLabels": { - "t4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-ye2": "Qh7.6.-y-s4483Po_3" + "j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp": "H_.39g_.--_-_ve5.m_2_--XZ-x.__.M" }, "matchExpressions": [ { - "key": "kbr75gp-c-coa--yh.ca7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj/O4.nw_-_x18mtxb__-ex-_1_O", - "operator": "In", + "key": "Pw_-r75--_-A-oQ", + "operator": "NotIn", "values": [ - "O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----p" + "3i__a.O2G_-_K-.03.mp.-10k" ] } ] @@ -1391,37 +1403,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1599461218, + "weight": 256213209, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "y2qg--4-03a68u7-l---8x7-l--b-9-u--12/T_3wc.q.8_00.0_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--F": "kU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWO" + "fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z": "i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ" }, "matchExpressions": [ { - "key": "4-AQ._r.-_Rw1k8KLu..ly--J-_.ZCRT.0z-oe.G79.3bU7", - "operator": "NotIn", - "values": [ - "2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_A1" - ] + "key": "7Pn-W23-_.z_.._s--_F-BR-.h_-2-s", + "operator": "Exists" } ] }, "namespaces": [ - "451" + "450" ], - "topologyKey": "452", + "topologyKey": "451", "namespaceSelector": { "matchLabels": { - "q0o.0C_gV.9_G-.-z1YH": "b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA" + "2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t": "V._nV34GH" }, "matchExpressions": [ { - "key": "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp", - "operator": "NotIn", - "values": [ - "MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg" - ] + "key": "9105-4_ed-0-i_zZsY_o8t5Vl6_..C", + "operator": "DoesNotExist" } ] } @@ -1434,29 +1440,32 @@ { "labelSelector": { "matchLabels": { - "PLq-.5-s_-_5_D7RufV": "7u0--_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1i" + "q0o.0C_gV.9_G-.-z1YH": "b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA" }, "matchExpressions": [ { - "key": "a-x--b--1-n4-a--o2h0fy-j-55/3wc..Q", - "operator": "DoesNotExist" + "key": "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp", + "operator": "NotIn", + "values": [ + "MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg" + ] } ] }, "namespaces": [ - "465" + "464" ], - "topologyKey": "466", + "topologyKey": "465", "namespaceSelector": { "matchLabels": { - "8-w.ln-9ei-vi9g-dn---6-81-ssml3/cr_-oPd-.2_Z__.-_U-.60-o": "qN__A_f_-B3_U__L.KH6K.RwsfI_2-_20_9._5-..Bi_0" + "4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T": "P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8" }, "matchExpressions": [ { - "key": "6b77-f8--tf---7r88-1--p61d/S._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gb", - "operator": "NotIn", + "key": "0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP", + "operator": "In", "values": [ - "O-Ynu.7.._B-ks7G" + "396h8.G__B3" ] } ] @@ -1465,37 +1474,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1282227712, + "weight": 1856144088, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "J_Yb_58.p-06jVZ-uP.t_.O937u-h---dY7_M_-._M5..-P": "A55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.Wxc" + "Q-.-.g-_Z_-nSLq": "4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3" }, "matchExpressions": [ { - "key": "Y4-0.67hP-lX-_-..59", - "operator": "In", - "values": [ - "1z..j_.r3--mT8vu1" - ] + "key": "3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5", + "operator": "Exists" } ] }, "namespaces": [ - "479" + "478" ], - "topologyKey": "480", + "topologyKey": "479", "namespaceSelector": { "matchLabels": { - "0-f/px_0-.mJe__.B-cd2_84M": "1s._K9-.AJ-_8--___b____03_6.K8l.YlG7" + "2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6": "px_0-.mJe__.B-cd2_4" }, "matchExpressions": [ { - "key": "1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.l", - "operator": "In", - "values": [ - "P23L_J49t-X..j1Q1.A-N.--_63N" - ] + "key": "1s._K9-.AJ-_8--___b____03_6.K8lY", + "operator": "Exists" } ] } @@ -1504,67 +1507,64 @@ ] } }, - "schedulerName": "487", + "schedulerName": "486", "tolerations": [ { - "key": "488", - "operator": "TaI楅©Ǫ壿/š^劶äɲ泒", - "value": "489", - "effect": "ēÖ釐駆Ŕƿe魛ĩ驋=Ŏġ宿受", - "tolerationSeconds": 3154660829779897160 + "key": "487", + "operator": "0yVA嬂刲;牆詒ĸąs", + "value": "488", + "effect": "kx-餌勀奷Ŏ", + "tolerationSeconds": -9038755672632113093 } ], "hostAliases": [ { - "ip": "490", + "ip": "489", "hostnames": [ - "491" + "490" ] } ], - "priorityClassName": "492", - "priority": -217059496, + "priorityClassName": "491", + "priority": -1133320634, "dnsConfig": { "nameservers": [ - "493" + "492" ], "searches": [ - "494" + "493" ], "options": [ { - "name": "495", - "value": "496" + "name": "494", + "value": "495" } ] }, "readinessGates": [ { - "conditionType": "ƣɴ矘ɉ\"姭ɜǨ呖ď急藼Ƚ^槬焂à¯" + "conditionType": "į" } ], - "runtimeClassName": "497", - "enableServiceLinks": false, - "preemptionPolicy": "ǀ肇ȣ", + "runtimeClassName": "496", + "enableServiceLinks": true, + "preemptionPolicy": "Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ", "overhead": { - "倓扸涥莥": "729" + "k_": "725" }, "topologySpreadConstraints": [ { - "maxSkew": -1416531993, - "topologyKey": "498", - "whenUnsatisfiable": "_Gȱ恛穒挤ţ#你顫#b°", + "maxSkew": -2046521037, + "topologyKey": "497", + "whenUnsatisfiable": "\"T#sM網m", "labelSelector": { "matchLabels": { - "q-z--4847u0s66mmo-8--y64-40l8cytm18--0.6-wdcje8k--41---hi5e--7m-368--f-z---4-n03-2ip--6--2d-6-h/bm9I.-..q-F-.__c.k7__f--_br..1.l": "dE-.1-V...t27-4.._7l" + "3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5": "019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6" }, "matchExpressions": [ { - "key": "3-hh9-z8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-z/iJ--p-7f3-2_Z_V_-q-L34-_D86W", - "operator": "NotIn", - "values": [ - "S---6_.0.m.--.-dh.v.5" - ] + "key": "B.rTt7bm9I.-..q-F-.__ck", + "operator": "DoesNotExist" } ] } @@ -1573,9 +1573,9 @@ "setHostnameAsFQDN": false } }, - "ttlSecondsAfterFinished": 1315299341, - "completionMode": "ſZɐYɋsx羳ıȦj", - "suspend": false + "ttlSecondsAfterFinished": -2143422853, + "completionMode": "Ŀř岈ǎǏ]S5:œƌ嵃ǁǞŢm珢\\%", + "suspend": true } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb index 695c3f24588c..c105b3e43dce 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 7a828222febd..8d25f2809144 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 @@ -62,7 +62,7 @@ template: spec: activeDeadlineSeconds: -9086179100394185427 backoffLimit: -1796008812 - completionMode: ſZɐYɋsx羳ıȦj + completionMode: Ŀř岈ǎǏ]S5:œƌ嵃ǁǞŢm珢\% completions: -1771909905 manualSelector: false parallelism: -443114323 @@ -74,7 +74,7 @@ template: - Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8 matchLabels: g5i9/l-Y._.-444: c2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am64 - suspend: false + suspend: true template: metadata: annotations: @@ -106,150 +106,147 @@ template: selfLink: "45" uid: Ȗ脵鴈Ō spec: - activeDeadlineSeconds: 5057463609793482770 + activeDeadlineSeconds: -3501425899000054955 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "427" - operator: ƷK*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗȦɆ悼j + - key: "426" + operator: ƨɤ血x柱栦阫Ƈʥ椹 values: - - "428" + - "427" matchFields: - - key: "429" - operator: '%ɀ蓧睔' + - key: "428" + operator: _ values: - - "430" - weight: 1354397536 + - "429" + weight: 2082229073 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "423" - operator: 阫Ƈʥ椹ý + - key: "422" + operator: 刪q塨Ý-扚聧扈4ƫZɀȩ愉 values: - - "424" + - "423" matchFields: - - key: "425" - operator: Ơ9oÕęȄ怈ƴȃű/ś錏嬮#ʐ裥d[ + - key: "424" + operator: m嵘厶sȰÖ埡ÆɰŞ襵樞 values: - - "426" + - "425" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 4-AQ._r.-_Rw1k8KLu..ly--J-_.ZCRT.0z-oe.G79.3bU7 - operator: NotIn - values: - - 2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_A1 + - key: 7Pn-W23-_.z_.._s--_F-BR-.h_-2-s + operator: Exists matchLabels: - y2qg--4-03a68u7-l---8x7-l--b-9-u--12/T_3wc.q.8_00.0_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--F: kU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWO + fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z: i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ namespaceSelector: matchExpressions: - - key: s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp - operator: NotIn - values: - - MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg + - key: 9105-4_ed-0-i_zZsY_o8t5Vl6_..C + operator: DoesNotExist matchLabels: - q0o.0C_gV.9_G-.-z1YH: b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA + 2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t: V._nV34GH namespaces: - - "451" - topologyKey: "452" - weight: 1599461218 + - "450" + topologyKey: "451" + weight: 256213209 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z - operator: Exists + - key: 064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4 + operator: In + values: + - S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7 matchLabels: - 4eq5: "" + 3--51: h-K5y_AzOBW.9oE9_6.-v namespaceSelector: matchExpressions: - - key: kbr75gp-c-coa--yh.ca7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj/O4.nw_-_x18mtxb__-ex-_1_O - operator: In + - key: Pw_-r75--_-A-oQ + operator: NotIn values: - - O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----p + - 3i__a.O2G_-_K-.03.mp.-10k matchLabels: - t4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-ye2: Qh7.6.-y-s4483Po_3 + j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp: H_.39g_.--_-_ve5.m_2_--XZ-x.__.M namespaces: - - "437" - topologyKey: "438" + - "436" + topologyKey: "437" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: Y4-0.67hP-lX-_-..59 - operator: In - values: - - 1z..j_.r3--mT8vu1 + - key: 3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5 + operator: Exists matchLabels: - J_Yb_58.p-06jVZ-uP.t_.O937u-h---dY7_M_-._M5..-P: A55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.Wxc + Q-.-.g-_Z_-nSLq: 4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3 namespaceSelector: matchExpressions: - - key: 1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.l - operator: In - values: - - P23L_J49t-X..j1Q1.A-N.--_63N + - key: 1s._K9-.AJ-_8--___b____03_6.K8lY + operator: Exists matchLabels: - 0-f/px_0-.mJe__.B-cd2_84M: 1s._K9-.AJ-_8--___b____03_6.K8l.YlG7 + 2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6: px_0-.mJe__.B-cd2_4 namespaces: - - "479" - topologyKey: "480" - weight: -1282227712 + - "478" + topologyKey: "479" + weight: 1856144088 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: a-x--b--1-n4-a--o2h0fy-j-55/3wc..Q - operator: DoesNotExist + - key: s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp + operator: NotIn + values: + - MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg matchLabels: - PLq-.5-s_-_5_D7RufV: 7u0--_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1i + q0o.0C_gV.9_G-.-z1YH: b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA namespaceSelector: matchExpressions: - - key: 6b77-f8--tf---7r88-1--p61d/S._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gb - operator: NotIn + - key: 0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP + operator: In values: - - O-Ynu.7.._B-ks7G + - 396h8.G__B3 matchLabels: - 8-w.ln-9ei-vi9g-dn---6-81-ssml3/cr_-oPd-.2_Z__.-_U-.60-o: qN__A_f_-B3_U__L.KH6K.RwsfI_2-_20_9._5-..Bi_0 + ? 4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T + : P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8 namespaces: - - "465" - topologyKey: "466" - automountServiceAccountToken: false + - "464" + topologyKey: "465" + automountServiceAccountToken: true containers: - args: - - "264" + - "266" command: - - "263" + - "265" env: - - name: "271" - value: "272" + - name: "273" + value: "274" valueFrom: configMapKeyRef: - key: "278" - name: "277" - optional: false + key: "280" + name: "279" + optional: true fieldRef: - apiVersion: "273" - fieldPath: "274" + apiVersion: "275" + fieldPath: "276" resourceFieldRef: - containerName: "275" - divisor: "946" - resource: "276" + containerName: "277" + divisor: "516" + resource: "278" secretKeyRef: - key: "280" - name: "279" + key: "282" + name: "281" optional: true envFrom: - configMapRef: - name: "269" + name: "271" optional: false - prefix: "268" + prefix: "270" secretRef: - name: "270" + name: "272" optional: true - image: "262" + image: "264" imagePullPolicy: I滞廬耐鷞焬CQm坊柩劄奼[ lifecycle: postStart: @@ -257,83 +254,85 @@ template: command: - "310" httpGet: - host: "312" + host: "313" httpHeaders: - - name: "313" - value: "314" + - name: "314" + value: "315" path: "311" - port: -1395144116 - scheme: v1b繐汚磉 + port: "312" + scheme: ĒzŔ瘍Nʊ tcpSocket: host: "316" - port: "315" + port: 2073630689 preStop: exec: command: - "317" httpGet: - host: "319" + host: "320" httpHeaders: - - name: "320" - value: "321" + - name: "321" + value: "322" path: "318" - port: 1388874570 - scheme: 輅9ɛ棕ƈ + port: "319" + scheme: 泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ tcpSocket: - host: "323" - port: "322" + host: "324" + port: "323" livenessProbe: exec: command: - - "287" - failureThreshold: 628632965 + - "289" + failureThreshold: -1563928252 httpGet: - host: "290" + host: "291" httpHeaders: - - name: "291" - value: "292" - path: "288" - port: "289" - scheme: )DŽ髐njʉBn(fǂ - initialDelaySeconds: 310594543 - periodSeconds: -2110435664 - successThreshold: -426022413 + - name: "292" + value: "293" + path: "290" + port: -543432015 + scheme: ƷƣMț + initialDelaySeconds: -211480108 + periodSeconds: 556036216 + successThreshold: -1838917931 tcpSocket: - host: "293" - port: 872525702 - timeoutSeconds: -115381263 - name: "261" + host: "295" + port: "294" + terminationGracePeriodSeconds: -1301089041686500367 + timeoutSeconds: -200074798 + name: "263" ports: - - containerPort: 1374479082 - hostIP: "267" - hostPort: -522215271 - name: "266" - protocol: $1sȣ + - containerPort: -1365158918 + hostIP: "269" + hostPort: -1733181402 + name: "268" + protocol: OǨ繫ʎǑyZ readinessProbe: exec: command: - - "294" - failureThreshold: -342387625 + - "296" + failureThreshold: 601942575 httpGet: - host: "297" + host: "298" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 趭(娕uE增猍ǵ x - initialDelaySeconds: -1320027474 - periodSeconds: 2112112129 - successThreshold: 528603974 + - name: "299" + value: "300" + path: "297" + port: 455919108 + scheme: 崍h趭(娕u + initialDelaySeconds: 1486914884 + periodSeconds: -977348956 + successThreshold: -637630736 tcpSocket: host: "301" - port: "300" - timeoutSeconds: -1750169306 + port: 805162379 + terminationGracePeriodSeconds: -5669474827175536499 + timeoutSeconds: -641001381 resources: limits: - 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮: "253" + "": "991" requests: - 擭銆jʒǚ鍰\縑: "992" + 斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ: "850" securityContext: allowPrivilegeEscalation: false capabilities: @@ -348,22 +347,22 @@ template: runAsNonRoot: true runAsUser: 2803095162614904173 seLinuxOptions: - level: "328" - role: "326" - type: "327" - user: "325" + level: "329" + role: "327" + type: "328" + user: "326" seccompProfile: - localhostProfile: "332" + localhostProfile: "333" type: 3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶 windowsOptions: - gmsaCredentialSpec: "330" - gmsaCredentialSpecName: "329" - runAsUserName: "331" + gmsaCredentialSpec: "331" + gmsaCredentialSpecName: "330" + runAsUserName: "332" startupProbe: exec: command: - "302" - failureThreshold: 1424401373 + failureThreshold: 1803882645 httpGet: host: "305" httpHeaders: @@ -371,84 +370,84 @@ template: value: "307" path: "303" port: "304" - scheme: /Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ - initialDelaySeconds: 2036955392 - periodSeconds: -1920304485 - successThreshold: -1842062977 + scheme: Ã茓pȓɻ + initialDelaySeconds: 1737172479 + periodSeconds: 1223564938 + successThreshold: 1241693652 tcpSocket: host: "309" port: "308" - timeoutSeconds: 626243488 + terminationGracePeriodSeconds: 8011596308221389971 + timeoutSeconds: -767058113 stdin: true - terminationMessagePath: "324" + terminationMessagePath: "325" terminationMessagePolicy: 礫Ƽ¨Ix糂腂ǂǚŜEu volumeDevices: - - devicePath: "286" - name: "285" + - devicePath: "288" + name: "287" volumeMounts: - - mountPath: "282" - mountPropagation: ɱďW賁Ě - name: "281" - subPath: "283" - subPathExpr: "284" - workingDir: "265" + - mountPath: "284" + mountPropagation: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ + name: "283" + readOnly: true + subPath: "285" + subPathExpr: "286" + workingDir: "267" dnsConfig: nameservers: - - "493" + - "492" options: - - name: "495" - value: "496" + - name: "494" + value: "495" searches: - - "494" - dnsPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉 - enableServiceLinks: false + - "493" + enableServiceLinks: true ephemeralContainers: - args: - - "336" + - "337" command: - - "335" + - "336" env: - - name: "343" - value: "344" + - name: "344" + value: "345" valueFrom: configMapKeyRef: - key: "350" - name: "349" + key: "351" + name: "350" optional: false fieldRef: - apiVersion: "345" - fieldPath: "346" + apiVersion: "346" + fieldPath: "347" resourceFieldRef: - containerName: "347" + containerName: "348" divisor: "274" - resource: "348" + resource: "349" secretKeyRef: - key: "352" - name: "351" + key: "353" + name: "352" optional: true envFrom: - configMapRef: - name: "341" + name: "342" optional: false - prefix: "340" + prefix: "341" secretRef: - name: "342" + name: "343" optional: false - image: "334" - imagePullPolicy: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG' + image: "335" lifecycle: postStart: exec: command: - - "380" + - "381" httpGet: host: "383" httpHeaders: - name: "384" value: "385" - path: "381" - port: "382" - scheme: 迾娙ƴ4虵p蓋沥7uPƒw© + path: "382" + port: -1289510276 + scheme: ŒGm¨z鋎靀G tcpSocket: host: "387" port: "386" @@ -462,130 +461,135 @@ template: - name: "391" value: "392" path: "389" - port: 1782790310 - scheme: 燻 + port: 1289969734 + scheme: 7uPƒw©ɴĶ烷Ľ tcpSocket: - host: "394" - port: "393" + host: "393" + port: 1468940509 livenessProbe: exec: command: - - "359" + - "360" failureThreshold: 1805682547 httpGet: - host: "362" + host: "363" httpHeaders: - - name: "363" - value: "364" - path: "360" - port: "361" + - name: "364" + value: "365" + path: "361" + port: "362" scheme: cx赮ǒđ>*劶?j initialDelaySeconds: 1008425444 periodSeconds: 1678953375 successThreshold: 1045190247 tcpSocket: - host: "366" - port: "365" + host: "367" + port: "366" + terminationGracePeriodSeconds: -2797767251501326723 timeoutSeconds: -821592382 - name: "333" + name: "334" ports: - containerPort: -166419777 - hostIP: "339" + hostIP: "340" hostPort: -257245030 - name: "338" + name: "339" protocol: a殆诵H玲 readinessProbe: exec: command: - - "367" - failureThreshold: 1776174141 + - "368" + failureThreshold: -394464008 httpGet: host: "370" httpHeaders: - name: "371" value: "372" - path: "368" - port: "369" - scheme: ʨ|ǓÓ敆OɈÏ 瞍髃# - initialDelaySeconds: -526099499 - periodSeconds: 1708011112 - successThreshold: -603097910 + path: "369" + port: 2032588794 + scheme: 鍃G昧牱 + initialDelaySeconds: -215316554 + periodSeconds: 1521292403 + successThreshold: -283400620 tcpSocket: - host: "373" - port: -839925309 - timeoutSeconds: -1014296961 + host: "374" + port: "373" + terminationGracePeriodSeconds: 911858222236680643 + timeoutSeconds: -2141869576 resources: limits: 9ij\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ: "895" requests: 櫞繡旹翃ɾ氒ĺʈʫ羶剹Ɗ: "151" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 潷ƹ8 + - 蚢鑸鶲Ãq drop: - - 驿笈¯rƈa餖Ľƛ淴ɑ?¶ȲƪE1º轪 + - 轫ʓ滨ĖRh}颉 privileged: false - procMount: 朘ZDŽʤ搤ȃ$|gɳ礬. + procMount: ¸殚篎3 readOnlyRootFilesystem: true - runAsGroup: 2598196603659411991 + runAsGroup: -4328915352766545090 runAsNonRoot: true - runAsUser: -6276111079389958404 + runAsUser: -7492598848400758567 seLinuxOptions: - level: "399" - role: "397" - type: "398" - user: "396" + level: "398" + role: "396" + type: "397" + user: "395" seccompProfile: - localhostProfile: "403" - type: 屏ɧeʫį淓¯Ą0 + localhostProfile: "402" + type: 8[y#t(ȗŜŲ windowsOptions: - gmsaCredentialSpec: "401" - gmsaCredentialSpecName: "400" - runAsUserName: "402" + gmsaCredentialSpec: "400" + gmsaCredentialSpecName: "399" + runAsUserName: "401" startupProbe: exec: command: - - "374" - failureThreshold: 1995848794 + - "375" + failureThreshold: 279062028 httpGet: - host: "376" + host: "377" httpHeaders: - - name: "377" - value: "378" - path: "375" - port: 240154501 - scheme: 鈱ɖ'蠨磼O_h盌3+Œ9两@8 - initialDelaySeconds: 1239250019 - periodSeconds: 800533897 - successThreshold: 701103233 + - name: "378" + value: "379" + path: "376" + port: -629974246 + scheme: œj堑ūM鈱ɖ'蠨磼O_h + initialDelaySeconds: -1026606578 + periodSeconds: -645536124 + successThreshold: 896697276 tcpSocket: - host: "379" - port: -130408357 - timeoutSeconds: 1041627045 - targetContainerName: "404" - terminationMessagePath: "395" - terminationMessagePolicy: Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh + host: "380" + port: -2033879721 + terminationGracePeriodSeconds: 4458982675949227932 + timeoutSeconds: -25232164 + targetContainerName: "403" + terminationMessagePath: "394" + terminationMessagePolicy: 像-觗裓6Ř + tty: true volumeDevices: - - devicePath: "358" - name: "357" + - devicePath: "359" + name: "358" volumeMounts: - - mountPath: "354" + - mountPath: "355" mountPropagation: '{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬɸ' - name: "353" + name: "354" readOnly: true - subPath: "355" - subPathExpr: "356" - workingDir: "337" + subPath: "356" + subPathExpr: "357" + workingDir: "338" hostAliases: - hostnames: - - "491" - ip: "490" - hostPID: true - hostname: "421" + - "490" + ip: "489" + hostIPC: true + hostNetwork: true + hostname: "420" imagePullSecrets: - - name: "420" + - name: "419" initContainers: - args: - "195" @@ -619,38 +623,38 @@ template: name: "201" optional: false image: "193" - imagePullPolicy: ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴 + imagePullPolicy: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' lifecycle: postStart: exec: command: - - "239" + - "240" httpGet: - host: "241" + host: "243" httpHeaders: - - name: "242" - value: "243" - path: "240" - port: -260262954 - scheme: ŵ橨鬶l獕;跣H + - name: "244" + value: "245" + path: "241" + port: "242" + scheme: 队偯J僳徥淳4揻 tcpSocket: - host: "244" - port: -1164530482 + host: "246" + port: 878005329 preStop: exec: command: - - "245" + - "247" httpGet: - host: "247" + host: "250" httpHeaders: - - name: "248" - value: "249" - path: "246" - port: 878005329 - scheme: 丟×x锏ɟ4Ǒ + - name: "251" + value: "252" + path: "248" + port: "249" + scheme: Œɥ颶妧Ö闊 鰔澝qV訆Ǝ tcpSocket: - host: "251" - port: "250" + host: "253" + port: 509813083 livenessProbe: exec: command: @@ -670,6 +674,7 @@ template: tcpSocket: host: "224" port: 888935190 + terminationGracePeriodSeconds: 439010468654957223 timeoutSeconds: -553100686 name: "192" ports: @@ -682,75 +687,76 @@ template: exec: command: - "225" - failureThreshold: 59244165 + failureThreshold: 617318981 httpGet: - host: "228" + host: "227" httpHeaders: - - name: "229" - value: "230" + - name: "228" + value: "229" path: "226" - port: "227" - scheme: E剒蔞 - initialDelaySeconds: 14304392 - periodSeconds: -1784617397 - successThreshold: 1941923625 + port: -2133054549 + scheme: 遰=E + initialDelaySeconds: -1462219068 + periodSeconds: 1714588921 + successThreshold: -1246371817 tcpSocket: host: "231" - port: -1313320434 - timeoutSeconds: 465972736 + port: "230" + terminationGracePeriodSeconds: 1856677271350902065 + timeoutSeconds: -370386363 resources: limits: 輦唊#v铿ʩȂ4ē鐭: "879" requests: 昕Ĭ: "524" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - Ǩź'ǵɐ + - "" drop: - - Z龏´DÒȗÔÂɘɢ鬍熖B芭花 + - Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; privileged: false - procMount: ²静ƲǦŐnj汰8 + procMount: 丆 readOnlyRootFilesystem: true - runAsGroup: -8715915045560617563 - runAsNonRoot: true - runAsUser: 2666412258966278206 + runAsGroup: -545284475172904979 + runAsNonRoot: false + runAsUser: 5431518803727886665 seLinuxOptions: - level: "256" - role: "254" - type: "255" - user: "253" + level: "258" + role: "256" + type: "257" + user: "255" seccompProfile: - localhostProfile: "260" - type: İ + localhostProfile: "262" + type: ²Ŏ)/灩聋3趐囨 windowsOptions: - gmsaCredentialSpec: "258" - gmsaCredentialSpecName: "257" - runAsUserName: "259" + gmsaCredentialSpec: "260" + gmsaCredentialSpecName: "259" + runAsUserName: "261" startupProbe: exec: command: - "232" - failureThreshold: 1386255869 + failureThreshold: -2146674095 httpGet: - host: "234" + host: "235" httpHeaders: - - name: "235" - value: "236" + - name: "236" + value: "237" path: "233" - port: 676578360 - scheme: 跩aŕ翑 - initialDelaySeconds: 1513425349 - periodSeconds: -2165496 - successThreshold: -1778952574 + port: "234" + scheme: ŕ翑0展} + initialDelaySeconds: -1778952574 + periodSeconds: -778272981 + successThreshold: 2056774277 tcpSocket: - host: "238" - port: "237" - timeoutSeconds: 1165327504 - stdinOnce: true - terminationMessagePath: "252" - terminationMessagePolicy: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ + host: "239" + port: "238" + terminationGracePeriodSeconds: -1117820874616112287 + timeoutSeconds: 1386255869 + terminationMessagePath: "254" + terminationMessagePolicy: ²sNƗ¸g volumeDevices: - devicePath: "217" name: "216" @@ -761,66 +767,64 @@ template: subPath: "214" subPathExpr: "215" workingDir: "196" - nodeName: "409" + nodeName: "408" nodeSelector: - "405": "406" + "404": "405" overhead: - 倓扸涥莥: "729" - preemptionPolicy: ǀ肇ȣ - priority: -217059496 - priorityClassName: "492" + k_: "725" + preemptionPolicy: Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ + priority: -1133320634 + priorityClassName: "491" readinessGates: - - conditionType: ƣɴ矘ɉ"姭ɜǨ呖ď急藼Ƚ^槬焂௠- restartPolicy: 'z委>,趐V曡88 ' - runtimeClassName: "497" - schedulerName: "487" + - conditionType: į + restartPolicy: "y" + runtimeClassName: "496" + schedulerName: "486" securityContext: - fsGroup: -5220408729438381350 - fsGroupChangePolicy: "" - runAsGroup: 7326115313877449072 + fsGroup: -6276111079389958404 + fsGroupChangePolicy: œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ + runAsGroup: 5200080507234099655 runAsNonRoot: true - runAsUser: -66255511088094923 + runAsUser: -4962946920772050319 seLinuxOptions: - level: "413" - role: "411" - type: "412" - user: "410" + level: "412" + role: "410" + type: "411" + user: "409" seccompProfile: - localhostProfile: "419" - type: 稨氙'[ + localhostProfile: "418" + type: 'ʫį淓¯Ą0ƛ忀z委>,趐V曡88 ' supplementalGroups: - - -6970600339447394194 + - -4548866432246561416 sysctls: - - name: "417" - value: "418" + - name: "416" + value: "417" windowsOptions: - gmsaCredentialSpec: "415" - gmsaCredentialSpecName: "414" - runAsUserName: "416" - serviceAccount: "408" - serviceAccountName: "407" + gmsaCredentialSpec: "414" + gmsaCredentialSpecName: "413" + runAsUserName: "415" + serviceAccount: "407" + serviceAccountName: "406" setHostnameAsFQDN: false - shareProcessNamespace: false - subdomain: "422" - terminationGracePeriodSeconds: 7262077834269164809 + shareProcessNamespace: true + subdomain: "421" + terminationGracePeriodSeconds: -1357828024706138776 tolerations: - - effect: ēÖ釐駆Ŕƿe魛ĩ驋=Ŏġ宿受 - key: "488" - operator: TaI楅©Ǫ壿/š^劶äɲ泒 - tolerationSeconds: 3154660829779897160 - value: "489" + - effect: kx-餌勀奷Ŏ + key: "487" + operator: 0yVA嬂刲;牆詒ĸąs + tolerationSeconds: -9038755672632113093 + value: "488" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 3-hh9-z8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-z/iJ--p-7f3-2_Z_V_-q-L34-_D86W - operator: NotIn - values: - - S---6_.0.m.--.-dh.v.5 + - key: B.rTt7bm9I.-..q-F-.__ck + operator: DoesNotExist matchLabels: - q-z--4847u0s66mmo-8--y64-40l8cytm18--0.6-wdcje8k--41---hi5e--7m-368--f-z---4-n03-2ip--6--2d-6-h/bm9I.-..q-F-.__c.k7__f--_br..1.l: dE-.1-V...t27-4.._7l - maxSkew: -1416531993 - topologyKey: "498" - whenUnsatisfiable: _Gȱ恛穒挤ţ#你顫#b° + 3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5: 019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6 + maxSkew: -2046521037 + topologyKey: "497" + whenUnsatisfiable: '"T#sM網m' volumes: - awsElasticBlockStore: fsType: "64" @@ -1074,4 +1078,4 @@ template: storagePolicyID: "121" storagePolicyName: "120" volumePath: "118" - ttlSecondsAfterFinished: 1315299341 + ttlSecondsAfterFinished: -2143422853 diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json index e28631ecd5bd..417936124e1d 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.json @@ -148,7 +148,8 @@ "timeoutSeconds": 1563658126, "periodSeconds": -1771047449, "successThreshold": -1280107919, - "failureThreshold": -54954325 + "failureThreshold": -54954325, + "terminationGracePeriodSeconds": 8559948711650432497 }, "readinessProbe": { "exec": { @@ -158,138 +159,141 @@ }, "httpGet": { "path": "53", - "port": "54", - "host": "55", - "scheme": "OŖ樅尷", + "port": -1395989138, + "host": "54", + "scheme": "斎AO6ĴC浔Ű壝ž", "httpHeaders": [ { - "name": "56", - "value": "57" + "name": "55", + "value": "56" } ] }, "tcpSocket": { - "port": 2136826132, - "host": "58" + "port": 180803110, + "host": "57" }, - "initialDelaySeconds": 819364842, - "timeoutSeconds": 933484239, - "periodSeconds": -983896210, - "successThreshold": 552512122, - "failureThreshold": -833209928 + "initialDelaySeconds": -2014231015, + "timeoutSeconds": 1488277679, + "periodSeconds": -1679907303, + "successThreshold": -1051545416, + "failureThreshold": 1305372099, + "terminationGracePeriodSeconds": -1220632347188845753 }, "startupProbe": { "exec": { "command": [ - "59" + "58" ] }, "httpGet": { - "path": "60", - "port": 180803110, - "host": "61", - "scheme": "ņ錕?øēƺ", + "path": "59", + "port": 1229400382, + "host": "60", + "scheme": "3ƆìQ喞艋涽託仭", "httpHeaders": [ { - "name": "62", - "value": "63" + "name": "61", + "value": "62" } ] }, "tcpSocket": { - "port": "64", - "host": "65" + "port": "63", + "host": "64" }, - "initialDelaySeconds": -816398166, - "timeoutSeconds": 1229400382, - "periodSeconds": -1583208879, - "successThreshold": 1088264954, - "failureThreshold": 13573196 + "initialDelaySeconds": 2076966617, + "timeoutSeconds": 202362764, + "periodSeconds": -560446848, + "successThreshold": -1098992377, + "failureThreshold": -1009864962, + "terminationGracePeriodSeconds": 2618170937706035036 }, "lifecycle": { "postStart": { "exec": { "command": [ - "66" + "65" ] }, "httpGet": { - "path": "67", - "port": -1293912096, - "host": "68", - "scheme": "託仭", + "path": "66", + "port": -503563033, + "host": "67", + "scheme": "趕ã/鈱$-议}ȧ外ĺ稥氹Ç|¶鎚¡ ", "httpHeaders": [ { - "name": "69", - "value": "70" + "name": "68", + "value": "69" } ] }, "tcpSocket": { - "port": "71", - "host": "72" + "port": "70", + "host": "71" } }, "preStop": { "exec": { "command": [ - "73" + "72" ] }, "httpGet": { - "path": "74", - "port": "75", - "host": "76", - "scheme": "鴜Ł%Ũ", + "path": "73", + "port": 991085362, + "host": "74", + "scheme": "磩窮秳ķ蟒苾h^樅燴壩卄", "httpHeaders": [ { - "name": "77", - "value": "78" + "name": "75", + "value": "76" } ] }, "tcpSocket": { - "port": "79", - "host": "80" + "port": -479087071, + "host": "77" } } }, - "terminationMessagePath": "81", - "terminationMessagePolicy": "Ņ£", + "terminationMessagePath": "78", + "terminationMessagePolicy": "?讦ĭÐ", + "imagePullPolicy": "/C龷ȪÆl殛瓷雼浢Ü礽绅", "securityContext": { "capabilities": { "add": [ - "2Ō¾\\ĒP鄸靇杧ž" + "\"ŵw^Ü郀叚Fi皬择,Q" ], "drop": [ - "娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^" + "ȸ{+" ] }, "privileged": false, "seLinuxOptions": { - "user": "82", - "role": "83", - "type": "84", - "level": "85" + "user": "79", + "role": "80", + "type": "81", + "level": "82" }, "windowsOptions": { - "gmsaCredentialSpecName": "86", - "gmsaCredentialSpec": "87", - "runAsUserName": "88" + "gmsaCredentialSpecName": "83", + "gmsaCredentialSpec": "84", + "runAsUserName": "85" }, - "runAsUser": 4491726672505793472, - "runAsGroup": -5441351197948631872, - "runAsNonRoot": true, + "runAsUser": -1466062763730980131, + "runAsGroup": 8360795821384820753, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ĭÐl恕ɍȇ廄裭4懙", + "procMount": "Ƙq/", "seccompProfile": { - "type": "嵒ƫS捕ɷD¡轫n", - "localhostProfile": "89" + "type": " u衲\u003c¿燥", + "localhostProfile": "86" } }, - "stdin": true, - "targetContainerName": "90" + "tty": true, + "targetContainerName": "87" } ] } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.pb index 4cc4e0f2790c..3e3828fbfe31 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.yaml index 2e6a963894ff..7840447eff35 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.EphemeralContainers.yaml @@ -32,37 +32,38 @@ ephemeralContainers: name: "28" optional: false image: "20" + imagePullPolicy: /C龷ȪÆl殛瓷雼浢Ü礽绅 lifecycle: postStart: exec: command: - - "66" + - "65" httpGet: - host: "68" + host: "67" httpHeaders: - - name: "69" - value: "70" - path: "67" - port: -1293912096 - scheme: 託仭 + - name: "68" + value: "69" + path: "66" + port: -503563033 + scheme: '趕ã/鈱$-议}ȧ外ĺ稥氹Ç|¶鎚¡ ' tcpSocket: - host: "72" - port: "71" + host: "71" + port: "70" preStop: exec: command: - - "73" + - "72" httpGet: - host: "76" + host: "74" httpHeaders: - - name: "77" - value: "78" - path: "74" - port: "75" - scheme: 鴜Ł%Ũ + - name: "75" + value: "76" + path: "73" + port: 991085362 + scheme: 磩窮秳ķ蟒苾h^樅燴壩卄 tcpSocket: - host: "80" - port: "79" + host: "77" + port: -479087071 livenessProbe: exec: command: @@ -82,6 +83,7 @@ ephemeralContainers: tcpSocket: host: "51" port: 1366345526 + terminationGracePeriodSeconds: 8559948711650432497 timeoutSeconds: 1563658126 name: "19" ports: @@ -93,22 +95,23 @@ ephemeralContainers: exec: command: - "52" - failureThreshold: -833209928 + failureThreshold: 1305372099 httpGet: - host: "55" + host: "54" httpHeaders: - - name: "56" - value: "57" + - name: "55" + value: "56" path: "53" - port: "54" - scheme: OŖ樅尷 - initialDelaySeconds: 819364842 - periodSeconds: -983896210 - successThreshold: 552512122 + port: -1395989138 + scheme: 斎AO6ĴC浔Ű壝ž + initialDelaySeconds: -2014231015 + periodSeconds: -1679907303 + successThreshold: -1051545416 tcpSocket: - host: "58" - port: 2136826132 - timeoutSeconds: 933484239 + host: "57" + port: 180803110 + terminationGracePeriodSeconds: -1220632347188845753 + timeoutSeconds: 1488277679 resources: limits: V夸eɑeʤ: "420" @@ -118,51 +121,52 @@ ephemeralContainers: allowPrivilegeEscalation: true capabilities: add: - - 2Ō¾\ĒP鄸靇杧ž + - '"ŵw^Ü郀叚Fi皬择,Q' drop: - - 娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^ + - ȸ{+ privileged: false - procMount: ĭÐl恕ɍȇ廄裭4懙 + procMount: Ƙq/ readOnlyRootFilesystem: true - runAsGroup: -5441351197948631872 - runAsNonRoot: true - runAsUser: 4491726672505793472 + runAsGroup: 8360795821384820753 + runAsNonRoot: false + runAsUser: -1466062763730980131 seLinuxOptions: - level: "85" - role: "83" - type: "84" - user: "82" + level: "82" + role: "80" + type: "81" + user: "79" seccompProfile: - localhostProfile: "89" - type: 嵒ƫS捕ɷD¡轫n + localhostProfile: "86" + type: ' u衲<¿燥' windowsOptions: - gmsaCredentialSpec: "87" - gmsaCredentialSpecName: "86" - runAsUserName: "88" + gmsaCredentialSpec: "84" + gmsaCredentialSpecName: "83" + runAsUserName: "85" startupProbe: exec: command: - - "59" - failureThreshold: 13573196 + - "58" + failureThreshold: -1009864962 httpGet: - host: "61" + host: "60" httpHeaders: - - name: "62" - value: "63" - path: "60" - port: 180803110 - scheme: ņ錕?øēƺ - initialDelaySeconds: -816398166 - periodSeconds: -1583208879 - successThreshold: 1088264954 + - name: "61" + value: "62" + path: "59" + port: 1229400382 + scheme: 3ƆìQ喞艋涽託仭 + initialDelaySeconds: 2076966617 + periodSeconds: -560446848 + successThreshold: -1098992377 tcpSocket: - host: "65" - port: "64" - timeoutSeconds: 1229400382 - stdin: true - targetContainerName: "90" - terminationMessagePath: "81" - terminationMessagePolicy: Ņ£ + host: "64" + port: "63" + terminationGracePeriodSeconds: 2618170937706035036 + timeoutSeconds: 202362764 + targetContainerName: "87" + terminationMessagePath: "78" + terminationMessagePolicy: ?讦ĭÐ + tty: true volumeDevices: - devicePath: "44" name: "43" 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 33093431a7c4..244027910b78 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 @@ -499,7 +499,8 @@ "timeoutSeconds": -427769948, "periodSeconds": 912004803, "successThreshold": -2098817064, - "failureThreshold": 1231820696 + "failureThreshold": 1231820696, + "terminationGracePeriodSeconds": 5366407347694307113 }, "readinessProbe": { "exec": { @@ -509,65 +510,68 @@ }, "httpGet": { "path": "186", - "port": "187", - "host": "188", + "port": 1322581021, + "host": "187", + "scheme": "坩O`涁İ而踪鄌eÞ", "httpHeaders": [ { - "name": "189", - "value": "190" + "name": "188", + "value": "189" } ] }, "tcpSocket": { - "port": 675406340, - "host": "191" + "port": -1319491110, + "host": "190" }, - "initialDelaySeconds": 994527057, - "timeoutSeconds": -1482763519, - "periodSeconds": -1346458591, - "successThreshold": 1234551517, - "failureThreshold": -1618937335 + "initialDelaySeconds": 565789036, + "timeoutSeconds": -1572269414, + "periodSeconds": -582473401, + "successThreshold": -1252931244, + "failureThreshold": 1569992019, + "terminationGracePeriodSeconds": 4559267523176571 }, "startupProbe": { "exec": { "command": [ - "192" + "191" ] }, "httpGet": { - "path": "193", - "port": "194", - "host": "195", - "scheme": "eÞȦY籎顒", + "path": "192", + "port": "193", + "host": "194", + "scheme": "鹎ğ#咻痗ȡmƴy綸_Ú8參遼", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "197", + "host": "198" }, - "initialDelaySeconds": -1252931244, - "timeoutSeconds": 1569992019, - "periodSeconds": 1061537, - "successThreshold": 322666556, - "failureThreshold": -814446577 + "initialDelaySeconds": -997191789, + "timeoutSeconds": -935589762, + "periodSeconds": -918862259, + "successThreshold": 655980302, + "failureThreshold": 741871873, + "terminationGracePeriodSeconds": 1919118248821998564 }, "lifecycle": { "postStart": { "exec": { "command": [ - "200" + "199" ] }, "httpGet": { - "path": "201", - "port": -1171060347, + "path": "200", + "port": "201", "host": "202", - "scheme": "咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°", + "scheme": "銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", "httpHeaders": [ { "name": "203", @@ -576,21 +580,21 @@ ] }, "tcpSocket": { - "port": "205", - "host": "206" + "port": 1180382332, + "host": "205" } }, "preStop": { "exec": { "command": [ - "207" + "206" ] }, "httpGet": { - "path": "208", - "port": -1319998825, + "path": "207", + "port": "208", "host": "209", - "scheme": "銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", + "scheme": "蕵ɢ", "httpHeaders": [ { "name": "210", @@ -599,104 +603,105 @@ ] }, "tcpSocket": { - "port": 1180382332, - "host": "212" + "port": "212", + "host": "213" } } }, - "terminationMessagePath": "213", - "terminationMessagePolicy": "H韹寬娬ï瓼猀2:öY鶪5w垁", - "imagePullPolicy": "儣廡ɑ龫`劳\u0026¼傭", + "terminationMessagePath": "214", + "terminationMessagePolicy": "ńMǰ溟ɴ扵閝", + "imagePullPolicy": "垁鷌辪", "securityContext": { "capabilities": { "add": [ - "酃=6}ɡŇƉ立hdz緄Ú|dk_瀹鞎" + "珝Żwʮ馜ü" ], "drop": [ - "n芞QÄȻȊ+?ƭ峧Y栲茇竛" + "șƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧" ] }, "privileged": true, "seLinuxOptions": { - "user": "214", - "role": "215", - "type": "216", - "level": "217" + "user": "215", + "role": "216", + "type": "217", + "level": "218" }, "windowsOptions": { - "gmsaCredentialSpecName": "218", - "gmsaCredentialSpec": "219", - "runAsUserName": "220" + "gmsaCredentialSpecName": "219", + "gmsaCredentialSpec": "220", + "runAsUserName": "221" }, - "runAsUser": 4875570291212151521, - "runAsGroup": -593458796014416333, - "runAsNonRoot": true, - "readOnlyRootFilesystem": false, + "runAsUser": -2402724957580114162, + "runAsGroup": -6738846580626183558, + "runAsNonRoot": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "軶ǃ*ʙ嫙\u0026蒒5靇", + "procMount": "鲡:", "seccompProfile": { - "type": "'ɵK.Q貇£ȹ嫰ƹǔw÷", - "localhostProfile": "221" + "type": "wE@Ȗs", + "localhostProfile": "222" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "222", - "image": "223", + "name": "223", + "image": "224", "command": [ - "224" + "225" ], "args": [ - "225" + "226" ], - "workingDir": "226", + "workingDir": "227", "ports": [ { - "name": "227", - "hostPort": -162264011, - "containerPort": 800220849, - "protocol": "ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ", - "hostIP": "228" + "name": "228", + "hostPort": 1135182169, + "containerPort": 1843758068, + "protocol": "瞾ʀNŬɨǙÄr蛏豈Ƀ", + "hostIP": "229" } ], "envFrom": [ { - "prefix": "229", + "prefix": "230", "configMapRef": { - "name": "230", - "optional": true - }, - "secretRef": { "name": "231", "optional": false + }, + "secretRef": { + "name": "232", + "optional": true } } ], "env": [ { - "name": "232", - "value": "233", + "name": "233", + "value": "234", "valueFrom": { "fieldRef": { - "apiVersion": "234", - "fieldPath": "235" + "apiVersion": "235", + "fieldPath": "236" }, "resourceFieldRef": { - "containerName": "236", - "resource": "237", - "divisor": "255" + "containerName": "237", + "resource": "238", + "divisor": "193" }, "configMapKeyRef": { - "name": "238", - "key": "239", + "name": "239", + "key": "240", "optional": false }, "secretKeyRef": { - "name": "240", - "key": "241", + "name": "241", + "key": "242", "optional": false } } @@ -704,38 +709,38 @@ ], "resources": { "limits": { - "j忊Ŗȫ焗捏ĨFħ": "634" + "Ŵ廷s{Ⱦdz@": "12" }, "requests": { - "Ȍzɟ踡": "128" + "粛E煹": "508" } }, "volumeMounts": [ { - "name": "242", - "mountPath": "243", - "subPath": "244", - "mountPropagation": "1ſ盷褎weLJèux榜VƋZ1Ůđ眊", - "subPathExpr": "245" + "name": "243", + "readOnly": true, + "mountPath": "244", + "subPath": "245", + "mountPropagation": "渟", + "subPathExpr": "246" } ], "volumeDevices": [ { - "name": "246", - "devicePath": "247" + "name": "247", + "devicePath": "248" } ], "livenessProbe": { "exec": { "command": [ - "248" + "249" ] }, "httpGet": { - "path": "249", - "port": "250", + "path": "250", + "port": 1762266578, "host": "251", - "scheme": "LLȊɞ-uƻ悖ȩ0Ƹ[Ęİ榌", "httpHeaders": [ { "name": "252", @@ -747,11 +752,12 @@ "port": "254", "host": "255" }, - "initialDelaySeconds": 878491792, - "timeoutSeconds": -187060941, - "periodSeconds": -442393168, - "successThreshold": -307373517, - "failureThreshold": 1109079597 + "initialDelaySeconds": -1294101963, + "timeoutSeconds": -1961863213, + "periodSeconds": -103588794, + "successThreshold": -1045704964, + "failureThreshold": 1089147958, + "terminationGracePeriodSeconds": -5467651408314215291 }, "readinessProbe": { "exec": { @@ -761,9 +767,9 @@ }, "httpGet": { "path": "257", - "port": 1599076900, + "port": 747521320, "host": "258", - "scheme": "ɰ", + "scheme": "棂p儼Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { "name": "259", @@ -772,434 +778,441 @@ ] }, "tcpSocket": { - "port": -1675041613, - "host": "261" + "port": "261", + "host": "262" }, - "initialDelaySeconds": 963670270, - "timeoutSeconds": -1180080716, - "periodSeconds": -1409668172, - "successThreshold": 1356213425, - "failureThreshold": 417821861 + "initialDelaySeconds": 441998152, + "timeoutSeconds": 747802823, + "periodSeconds": -1453848697, + "successThreshold": -321513994, + "failureThreshold": 1024248645, + "terminationGracePeriodSeconds": 866094339485091956 }, "startupProbe": { "exec": { "command": [ - "262" + "263" ] }, "httpGet": { - "path": "263", - "port": 270599701, - "host": "264", - "scheme": "ʤî萨zvt莭", + "path": "264", + "port": "265", + "host": "266", + "scheme": "ʒ刽ʼn掏1ſ盷褎weLJèux榜", "httpHeaders": [ { - "name": "265", - "value": "266" + "name": "267", + "value": "268" } ] }, "tcpSocket": { - "port": "267", - "host": "268" + "port": 486195690, + "host": "269" }, - "initialDelaySeconds": -503805926, - "timeoutSeconds": 77312514, - "periodSeconds": -763687725, - "successThreshold": -246563990, - "failureThreshold": 10098903 + "initialDelaySeconds": 1157241180, + "timeoutSeconds": -1810997540, + "periodSeconds": -1681029343, + "successThreshold": -1589303862, + "failureThreshold": -1586756233, + "terminationGracePeriodSeconds": 8197254455293781725 }, "lifecycle": { "postStart": { "exec": { "command": [ - "269" + "270" ] }, "httpGet": { - "path": "270", - "port": -141943860, - "host": "271", - "scheme": "牐ɺ皚|懥", + "path": "271", + "port": "272", + "host": "273", + "scheme": "Ȋɞ-uƻ悖ȩ0Ƹ", "httpHeaders": [ { - "name": "272", - "value": "273" + "name": "274", + "value": "275" } ] }, "tcpSocket": { - "port": "274", - "host": "275" + "port": "276", + "host": "277" } }, "preStop": { "exec": { "command": [ - "276" + "278" ] }, "httpGet": { - "path": "277", - "port": -407545915, - "host": "278", - "scheme": "ɆâĺɗŹ倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "path": "279", + "port": "280", + "host": "281", + "scheme": "\u003e5姣\u003e懔%熷谟", "httpHeaders": [ { - "name": "279", - "value": "280" + "name": "282", + "value": "283" } ] }, "tcpSocket": { - "port": "281", - "host": "282" + "port": -1920661051, + "host": "284" } } }, - "terminationMessagePath": "283", - "terminationMessagePolicy": "耶FfBls3!Zɾģ毋Ó6dz", - "imagePullPolicy": "$矡ȶ", + "terminationMessagePath": "285", + "terminationMessagePolicy": "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3", + "imagePullPolicy": "vt莭琽§ć\\ ïì«", "securityContext": { "capabilities": { "add": [ - "ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦O" + "枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F" ], "drop": [ - "" + "剂讼ɓȌʟni酛3Ɓ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "284", - "role": "285", - "type": "286", - "level": "287" + "user": "286", + "role": "287", + "type": "288", + "level": "289" }, "windowsOptions": { - "gmsaCredentialSpecName": "288", - "gmsaCredentialSpec": "289", - "runAsUserName": "290" + "gmsaCredentialSpecName": "290", + "gmsaCredentialSpec": "291", + "runAsUserName": "292" }, - "runAsUser": -5345615652360879044, - "runAsGroup": 1616645369356252673, - "runAsNonRoot": true, + "runAsUser": -2000070193364862971, + "runAsGroup": -636584014972667630, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ƬQg鄠[颐o啛更偢ɇ卷荙JL", + "procMount": "8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ", "seccompProfile": { - "type": "]佱¿\u003e犵殇ŕ-Ɂ圯W", - "localhostProfile": "291" + "type": "w", + "localhostProfile": "293" } - } + }, + "stdin": true, + "stdinOnce": true, + "tty": true } ], "ephemeralContainers": [ { - "name": "292", - "image": "293", + "name": "294", + "image": "295", "command": [ - "294" + "296" ], "args": [ - "295" + "297" ], - "workingDir": "296", + "workingDir": "298", "ports": [ { - "name": "297", - "hostPort": 415947324, - "containerPort": 18113448, - "protocol": "铿ʩȂ4ē鐭#嬀ơŸ8T", - "hostIP": "298" + "name": "299", + "hostPort": 1752155096, + "containerPort": -1962065705, + "protocol": "¿", + "hostIP": "300" } ], "envFrom": [ { - "prefix": "299", + "prefix": "301", "configMapRef": { - "name": "300", + "name": "302", "optional": false }, "secretRef": { - "name": "301", - "optional": true + "name": "303", + "optional": false } } ], "env": [ { - "name": "302", - "value": "303", + "name": "304", + "value": "305", "valueFrom": { "fieldRef": { - "apiVersion": "304", - "fieldPath": "305" + "apiVersion": "306", + "fieldPath": "307" }, "resourceFieldRef": { - "containerName": "306", - "resource": "307", - "divisor": "160" + "containerName": "308", + "resource": "309", + "divisor": "142" }, "configMapKeyRef": { - "name": "308", - "key": "309", + "name": "310", + "key": "311", "optional": false }, "secretKeyRef": { - "name": "310", - "key": "311", - "optional": true + "name": "312", + "key": "313", + "optional": false } } } ], "resources": { "limits": { - "绤fʀļ腩墺Ò媁荭g": "378" + "ǩ": "957" }, "requests": { - "Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ": "294" + "Ɔȓ蹣ɐǛv+8Ƥ熪": "951" } }, "volumeMounts": [ { - "name": "312", - "readOnly": true, - "mountPath": "313", - "subPath": "314", - "mountPropagation": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳", - "subPathExpr": "315" + "name": "314", + "mountPath": "315", + "subPath": "316", + "mountPropagation": "啛更", + "subPathExpr": "317" } ], "volumeDevices": [ { - "name": "316", - "devicePath": "317" + "name": "318", + "devicePath": "319" } ], "livenessProbe": { "exec": { "command": [ - "318" + "320" ] }, "httpGet": { - "path": "319", - "port": -374766088, - "host": "320", - "scheme": "翜舞拉Œ", + "path": "321", + "port": "322", + "host": "323", + "scheme": "Ů+朷Ǝ膯ljVX1虊", "httpHeaders": [ { - "name": "321", - "value": "322" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": "323", - "host": "324" + "port": -979584143, + "host": "326" }, - "initialDelaySeconds": -190183379, - "timeoutSeconds": -940334911, - "periodSeconds": -341287812, - "successThreshold": 2030115750, - "failureThreshold": 1847163341 + "initialDelaySeconds": -1748648882, + "timeoutSeconds": -239843014, + "periodSeconds": 1381579966, + "successThreshold": -1418092595, + "failureThreshold": -1538905728, + "terminationGracePeriodSeconds": -1867540518204155332 }, "readinessProbe": { "exec": { "command": [ - "325" + "327" ] }, "httpGet": { - "path": "326", - "port": 567263590, - "host": "327", - "scheme": "KŅ/", + "path": "328", + "port": "329", + "host": "330", + "scheme": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*", "httpHeaders": [ { - "name": "328", - "value": "329" + "name": "331", + "value": "332" } ] }, "tcpSocket": { - "port": "330", - "host": "331" + "port": 1574967021, + "host": "333" }, - "initialDelaySeconds": -1894250541, - "timeoutSeconds": 1962818731, - "periodSeconds": 1315054653, - "successThreshold": 711020087, - "failureThreshold": 1103049140 + "initialDelaySeconds": -244758593, + "timeoutSeconds": 591440053, + "periodSeconds": 104069700, + "successThreshold": -331594625, + "failureThreshold": 888935190, + "terminationGracePeriodSeconds": 7193904584276385338 }, "startupProbe": { "exec": { "command": [ - "332" + "334" ] }, "httpGet": { - "path": "333", - "port": -1468297794, - "host": "334", - "scheme": "磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ", + "path": "335", + "port": "336", + "host": "337", + "scheme": "î.Ȏ蝪ʜ5遰=", "httpHeaders": [ { - "name": "335", - "value": "336" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": "337", - "host": "338" + "port": 834105836, + "host": "340" }, - "initialDelaySeconds": 1308698792, - "timeoutSeconds": 1401790459, - "periodSeconds": -934378634, - "successThreshold": -1453143878, - "failureThreshold": -1129218498 + "initialDelaySeconds": -1462219068, + "timeoutSeconds": -370386363, + "periodSeconds": 1714588921, + "successThreshold": -1246371817, + "failureThreshold": 617318981, + "terminationGracePeriodSeconds": 1856677271350902065 }, "lifecycle": { "postStart": { "exec": { "command": [ - "339" + "341" ] }, "httpGet": { - "path": "340", - "port": -1103045151, - "host": "341", - "scheme": "Òȗ", + "path": "342", + "port": -282193676, + "host": "343", + "scheme": "Ļǟi\u0026", "httpHeaders": [ { - "name": "342", - "value": "343" + "name": "344", + "value": "345" } ] }, "tcpSocket": { - "port": 1843491416, - "host": "344" + "port": "346", + "host": "347" } }, "preStop": { "exec": { "command": [ - "345" + "348" ] }, "httpGet": { - "path": "346", - "port": -414121491, - "host": "347", - "scheme": "ŕ璻Jih亏yƕ丆", + "path": "349", + "port": "350", + "host": "351", + "scheme": "垾现葢ŵ橨", "httpHeaders": [ { - "name": "348", - "value": "349" + "name": "352", + "value": "353" } ] }, "tcpSocket": { - "port": "350", - "host": "351" + "port": -1312425203, + "host": "354" } } }, - "terminationMessagePath": "352", - "terminationMessagePolicy": "Ŏ)/灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "355", + "terminationMessagePolicy": ";跣Hǝcw媀瓄\u0026", + "imagePullPolicy": "丟×x锏ɟ4Ǒ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:" ] }, "privileged": false, "seLinuxOptions": { - "user": "353", - "role": "354", - "type": "355", - "level": "356" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "357", - "gmsaCredentialSpec": "358", - "runAsUserName": "359" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW", + "runAsUser": 5620818514944490121, + "runAsGroup": -499179336506637450, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻", "seccompProfile": { - "type": "鑳w妕眵笭/9崍h趭", - "localhostProfile": "360" + "type": "ih亏yƕ丆録²", + "localhostProfile": "363" } }, "stdin": true, - "targetContainerName": "361" + "tty": true, + "targetContainerName": "364" } ], - "restartPolicy": "uE增猍ǵ xǨŴ", - "terminationGracePeriodSeconds": -3517636156282992346, - "activeDeadlineSeconds": 9071452520778858299, - "dnsPolicy": "ɢX鰨松/Ȁĵ", + "restartPolicy": "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫", + "terminationGracePeriodSeconds": -247950237984551522, + "activeDeadlineSeconds": -7299434051955863644, + "dnsPolicy": "±p鋄5弢ȹ均i绝5哇芆", "nodeSelector": { - "362": "363" + "365": "366" }, - "serviceAccountName": "364", - "serviceAccount": "365", + "serviceAccountName": "367", + "serviceAccount": "368", "automountServiceAccountToken": false, - "nodeName": "366", - "hostNetwork": true, + "nodeName": "369", "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "367", - "role": "368", - "type": "369", - "level": "370" + "user": "370", + "role": "371", + "type": "372", + "level": "373" }, "windowsOptions": { - "gmsaCredentialSpecName": "371", - "gmsaCredentialSpec": "372", - "runAsUserName": "373" + "gmsaCredentialSpecName": "374", + "gmsaCredentialSpec": "375", + "runAsUserName": "376" }, - "runAsUser": 2548453080315983269, - "runAsGroup": -8236071895143008294, - "runAsNonRoot": false, + "runAsUser": -6224651420440742974, + "runAsGroup": 5246659233493169699, + "runAsNonRoot": true, "supplementalGroups": [ - -7117039988160665426 + -7305004673396184610 ], - "fsGroup": 3055252978348423424, + "fsGroup": 2556747128430250366, "sysctls": [ { - "name": "374", - "value": "375" + "name": "377", + "value": "378" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "IJ嘢4ʗ", "seccompProfile": { - "type": "", - "localhostProfile": "376" + "type": ",丽饾| 鞤ɱďW", + "localhostProfile": "379" } }, "imagePullSecrets": [ { - "name": "377" + "name": "380" } ], - "hostname": "378", - "subdomain": "379", + "hostname": "381", + "subdomain": "382", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1207,19 +1220,19 @@ { "matchExpressions": [ { - "key": "380", - "operator": "{æ盪泙", + "key": "383", + "operator": "ņ", "values": [ - "381" + "384" ] } ], "matchFields": [ { - "key": "382", - "operator": "繐汚磉反-n覦", + "key": "385", + "operator": "衷,ƷƣMț譎懚", "values": [ - "383" + "386" ] } ] @@ -1228,23 +1241,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1618861163, + "weight": 257855378, "preference": { "matchExpressions": [ { - "key": "384", - "operator": "ʅ蕉ɼ搳ǭ濑箨ʨIk(dŊiɢzĮ蛋I", + "key": "387", + "operator": "鑳w妕眵笭/9崍h趭", "values": [ - "385" + "388" ] } ], "matchFields": [ { - "key": "386", - "operator": "ʆɞȥ}礤铟怖ý萜Ǖc8", + "key": "389", + "operator": "ť嗆u8晲T", "values": [ - "387" + "390" ] } ] @@ -1257,27 +1270,33 @@ { "labelSelector": { "matchLabels": { - "z.T-V_D_0-K_A-_9_Z_C..7o_x3..-.8-Jp-9-4-Tm.Y": "k8...__.Q_c8.G.b_9_1o.w_aI._31-_I-A-_3bz._8M01" + "x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2": "Ns-o779._-k5" }, "matchExpressions": [ { - "key": "w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo", - "operator": "DoesNotExist" + "key": "9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D", + "operator": "NotIn", + "values": [ + "G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X" + ] } ] }, "namespaces": [ - "394" + "397" ], - "topologyKey": "395", + "topologyKey": "398", "namespaceSelector": { "matchLabels": { - "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v": "0j._g-G-7--p9.-_0R.-_-3_S" + "70u-1ml.711k9-8609a-e0--1----v8-4--558n1asz-re/OMop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.9_.-M": "ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--0" }, "matchExpressions": [ { - "key": "g_-b8a_W", - "operator": "Exists" + "key": "2ga-v205p-26-u5wg-gb8a-6-80-4-6849--w-0-24u9.44rm-0uma6-p--d-17-o--776n15-b-3-b/5", + "operator": "In", + "values": [ + "c" + ] } ] } @@ -1285,30 +1304,33 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 673385237, + "weight": -1097269124, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5": "bB3_.b17ca-p" + "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a": "n9" }, "matchExpressions": [ { - "key": "1rhm-5y--z-0/5eQ9", - "operator": "DoesNotExist" + "key": "xv-5-e-m78o-6-6211-7p--3zm-lx300w-tj-35840-4.x5----0g-q-22r4wye5y/8q_s-1__gw_-z_659GE.l_.23--_6l.-5B", + "operator": "In", + "values": [ + "h7.6.-y-s4483Po_L3f1-7_O4.w" + ] } ] }, "namespaces": [ - "408" + "411" ], - "topologyKey": "409", + "topologyKey": "412", "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" + "n_5023Xl-3Pw_-r75--_-A-o-__y_4": "12..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr" }, "matchExpressions": [ { - "key": "8mtxb__-ex-_1_-ODgC_1-_8__3", + "key": "0n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--.k47My", "operator": "DoesNotExist" } ] @@ -1322,26 +1344,29 @@ { "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" + "E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e" }, "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": "3--_9QW2JkU27_.-4T-I.-..K.2", + "operator": "In", + "values": [ + "6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8" + ] } ] }, "namespaces": [ - "422" + "425" ], - "topologyKey": "423", + "topologyKey": "426", "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" + "7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz" }, "matchExpressions": [ { - "key": "P6j.u--.K--g__..b", + "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" } ] @@ -1350,34 +1375,31 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -616061040, + "weight": -176177167, "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" + "8_t..-Ww2q.zK-p5": "8Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._28" }, "matchExpressions": [ { - "key": "b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X", + "key": "x.._-x_4..u2-__3uM77U7._pT-___-_r", "operator": "Exists" } ] }, "namespaces": [ - "436" + "439" ], - "topologyKey": "437", + "topologyKey": "440", "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" + "46-48e-9-h4-w-qp25--7-n--kfk3x-j9133es/T-_Lq-.5s": "M-k5.C.e.._d-Y" }, "matchExpressions": [ { - "key": "vi.Z", - "operator": "NotIn", - "values": [ - "03l-_86_u2-7_._qN__A_f_-B3_U__L.H" - ] + "key": "N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-16", + "operator": "DoesNotExist" } ] } @@ -1386,64 +1408,67 @@ ] } }, - "schedulerName": "444", + "schedulerName": "447", "tolerations": [ { - "key": "445", - "operator": "瘂S淫íŶƭ鬯富Nú顏*z犔kU", - "value": "446", - "effect": "甬Ʈ岢r臣鐐qwïźU痤ȵ", - "tolerationSeconds": -4322909565451750640 + "key": "448", + "operator": "5谠vÐ仆dždĄ跞肞=ɴC}怢", + "value": "449", + "effect": "D?/nēɅĀ埰ʀł!U詨nj1ýǝ", + "tolerationSeconds": -7090833765995091747 } ], "hostAliases": [ { - "ip": "447", + "ip": "450", "hostnames": [ - "448" + "451" ] } ], - "priorityClassName": "449", - "priority": 780753434, + "priorityClassName": "452", + "priority": -1623129882, "dnsConfig": { "nameservers": [ - "450" + "453" ], "searches": [ - "451" + "454" ], "options": [ { - "name": "452", - "value": "453" + "name": "455", + "value": "456" } ] }, "readinessGates": [ { - "conditionType": "¤趜磕绘翁揌p:oŇE" + "conditionType": "d楗鱶镖喗vȥ倉螆ȨX" } ], - "runtimeClassName": "454", + "runtimeClassName": "457", "enableServiceLinks": false, - "preemptionPolicy": "ħ\\", + "preemptionPolicy": "«ɒó\u003c碡4鏽喡孨ʚé薘-­ɞ逭ɋ¡", "overhead": { - "kƱ": "313" + "": "846" }, "topologySpreadConstraints": [ { - "maxSkew": 1674267790, - "topologyKey": "455", - "whenUnsatisfiable": "G峣搒R谱ʜ篲\u0026ZǘtnjʣǕV", + "maxSkew": 1688294622, + "topologyKey": "458", + "whenUnsatisfiable": "矵\u00267Ʃɩ", "labelSelector": { "matchLabels": { - "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i": "Wq-...Oai.D7-_9..8-8yw..__Yb_8" + "t-nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qc/2-7_._qN__A_f_-B3_U__L.KHK": "35H__.B_6_-U..u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4Po" }, "matchExpressions": [ { - "key": "h---dY7_M_-._M5..-N_H_55..--E3_2D1", - "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" + ] } ] } @@ -1452,167 +1477,167 @@ "setHostnameAsFQDN": false }, "status": { - "phase": "VǢɾ纤ą", + "phase": "å譥a", "conditions": [ { - "type": "?ɣ蔫椁Ȕ蝬KȴǃmŁȒ|'从", - "status": "{煰", - "lastProbeTime": "2761-08-29T15:09:53Z", - "lastTransitionTime": "2608-03-08T03:06:33Z", - "reason": "462", - "message": "463" + "type": "H诹ɼ#趶毎卸値å镮ó\"壽ȱǒ鉚", + "status": "Ȕ蝬Kȴ", + "lastProbeTime": "2122-07-22T00:15:32Z", + "lastTransitionTime": "2116-05-26T10:14:24Z", + "reason": "465", + "message": "466" } ], - "message": "464", - "reason": "465", - "nominatedNodeName": "466", - "hostIP": "467", - "podIP": "468", + "message": "467", + "reason": "468", + "nominatedNodeName": "469", + "hostIP": "470", + "podIP": "471", "podIPs": [ { - "ip": "469" + "ip": "472" } ], "initContainerStatuses": [ { - "name": "470", + "name": "473", "state": { "waiting": { - "reason": "471", - "message": "472" + "reason": "474", + "message": "475" }, "running": { - "startedAt": "2207-07-09T15:21:43Z" + "startedAt": "2838-07-20T19:58:45Z" }, "terminated": { - "exitCode": 1874682186, - "signal": -768346969, - "reason": "473", - "message": "474", - "startedAt": "2757-03-25T09:04:49Z", - "finishedAt": "2465-03-18T23:55:27Z", - "containerID": "475" + "exitCode": 537567999, + "signal": 2082930716, + "reason": "476", + "message": "477", + "startedAt": "2738-06-23T15:55:19Z", + "finishedAt": "2233-02-01T14:10:47Z", + "containerID": "478" } }, "lastState": { "waiting": { - "reason": "476", - "message": "477" + "reason": "479", + "message": "480" }, "running": { - "startedAt": "2687-07-04T15:23:41Z" + "startedAt": "2413-05-17T07:07:15Z" }, "terminated": { - "exitCode": 1892596557, - "signal": -1952419528, - "reason": "478", - "message": "479", - "startedAt": "2135-06-21T01:04:43Z", - "finishedAt": "2719-07-17T22:00:10Z", - "containerID": "480" + "exitCode": -416338651, + "signal": 1820564266, + "reason": "481", + "message": "482", + "startedAt": "2855-03-01T08:57:00Z", + "finishedAt": "2486-05-12T14:50:32Z", + "containerID": "483" } }, - "ready": false, - "restartCount": -391574961, - "image": "481", - "imageID": "482", - "containerID": "483", + "ready": true, + "restartCount": -1399651668, + "image": "484", + "imageID": "485", + "containerID": "486", "started": true } ], "containerStatuses": [ { - "name": "484", + "name": "487", "state": { "waiting": { - "reason": "485", - "message": "486" + "reason": "488", + "message": "489" }, "running": { - "startedAt": "2760-10-14T11:51:24Z" + "startedAt": "2465-03-18T23:55:27Z" }, "terminated": { - "exitCode": 165747350, - "signal": 470888375, - "reason": "487", - "message": "488", - "startedAt": "2942-12-12T07:01:06Z", - "finishedAt": "2699-11-10T05:45:30Z", - "containerID": "489" + "exitCode": 1254193769, + "signal": -1393376760, + "reason": "490", + "message": "491", + "startedAt": "2799-10-17T21:43:53Z", + "finishedAt": "2007-08-17T02:42:37Z", + "containerID": "492" } }, "lastState": { "waiting": { - "reason": "490", - "message": "491" + "reason": "493", + "message": "494" }, "running": { - "startedAt": "2127-06-24T09:29:52Z" + "startedAt": "2719-07-17T22:00:10Z" }, "terminated": { - "exitCode": 1574959758, - "signal": 1657812021, - "reason": "492", - "message": "493", - "startedAt": "2153-04-02T23:06:37Z", - "finishedAt": "2299-04-20T19:57:50Z", - "containerID": "494" + "exitCode": -391574961, + "signal": -933017112, + "reason": "495", + "message": "496", + "startedAt": "2454-01-24T20:04:32Z", + "finishedAt": "2045-05-04T00:27:18Z", + "containerID": "497" } }, "ready": true, - "restartCount": 2015720150, - "image": "495", - "imageID": "496", - "containerID": "497", + "restartCount": 840157370, + "image": "498", + "imageID": "499", + "containerID": "500", "started": false } ], - "qosClass": "澵貛香\"砻B", + "qosClass": "哶ɓŖybÑW紋旣Ülɳ涟Ð", "ephemeralContainerStatuses": [ { - "name": "498", + "name": "501", "state": { "waiting": { - "reason": "499", - "message": "500" + "reason": "502", + "message": "503" }, "running": { - "startedAt": "2513-06-23T10:07:34Z" + "startedAt": "2269-01-04T20:21:46Z" }, "terminated": { - "exitCode": -1155216843, - "signal": 839330574, - "reason": "501", - "message": "502", - "startedAt": "2296-08-29T04:36:22Z", - "finishedAt": "2685-03-12T10:07:19Z", - "containerID": "503" + "exitCode": -419737006, + "signal": 1267525999, + "reason": "504", + "message": "505", + "startedAt": "2479-09-29T08:36:44Z", + "finishedAt": "2107-05-30T03:08:00Z", + "containerID": "506" } }, "lastState": { "waiting": { - "reason": "504", - "message": "505" + "reason": "507", + "message": "508" }, "running": { - "startedAt": "2100-10-03T01:21:07Z" + "startedAt": "2685-03-12T10:07:19Z" }, "terminated": { - "exitCode": -1308926448, - "signal": 1208014329, - "reason": "506", - "message": "507", - "startedAt": "2915-11-30T10:57:55Z", - "finishedAt": "2358-12-25T12:18:48Z", - "containerID": "508" + "exitCode": 2005043090, + "signal": 728551686, + "reason": "509", + "message": "510", + "startedAt": "2283-08-08T02:13:39Z", + "finishedAt": "2594-07-18T02:53:59Z", + "containerID": "511" } }, "ready": true, - "restartCount": 1093414706, - "image": "509", - "imageID": "510", - "containerID": "511", - "started": true + "restartCount": 692446142, + "image": "512", + "imageID": "513", + "containerID": "514", + "started": false } ] } 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 a09b73ceeda4..dc8f48d9428d 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 152f75b3a3f6..1ff75c2a0492 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 @@ -30,477 +30,490 @@ metadata: selfLink: "5" uid: "7" spec: - activeDeadlineSeconds: 9071452520778858299 + activeDeadlineSeconds: -7299434051955863644 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "384" - operator: ʅ蕉ɼ搳ǭ濑箨ʨIk(dŊiɢzĮ蛋I + - key: "387" + operator: 鑳w妕眵笭/9崍h趭 values: - - "385" + - "388" matchFields: - - key: "386" - operator: ʆɞȥ}礤铟怖ý萜Ǖc8 + - key: "389" + operator: ť嗆u8晲T values: - - "387" - weight: 1618861163 + - "390" + weight: 257855378 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "380" - operator: '{æ盪泙' + - key: "383" + operator: ņ values: - - "381" + - "384" matchFields: - - key: "382" - operator: 繐汚磉反-n覦 + - key: "385" + operator: 衷,ƷƣMț譎懚 values: - - "383" + - "386" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 1rhm-5y--z-0/5eQ9 - operator: DoesNotExist + - key: xv-5-e-m78o-6-6211-7p--3zm-lx300w-tj-35840-4.x5----0g-q-22r4wye5y/8q_s-1__gw_-z_659GE.l_.23--_6l.-5B + operator: In + values: + - h7.6.-y-s4483Po_L3f1-7_O4.w matchLabels: - x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5: bB3_.b17ca-p + w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a: n9 namespaceSelector: matchExpressions: - - key: 8mtxb__-ex-_1_-ODgC_1-_8__3 + - key: 0n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--.k47My operator: DoesNotExist 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 + n_5023Xl-3Pw_-r75--_-A-o-__y_4: 12..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr namespaces: - - "408" - topologyKey: "409" - weight: 673385237 + - "411" + topologyKey: "412" + weight: -1097269124 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo - operator: DoesNotExist + - key: 9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D + operator: NotIn + values: + - G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X matchLabels: - z.T-V_D_0-K_A-_9_Z_C..7o_x3..-.8-Jp-9-4-Tm.Y: k8...__.Q_c8.G.b_9_1o.w_aI._31-_I-A-_3bz._8M01 + x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2: Ns-o779._-k5 namespaceSelector: matchExpressions: - - key: g_-b8a_W - operator: Exists + - key: 2ga-v205p-26-u5wg-gb8a-6-80-4-6849--w-0-24u9.44rm-0uma6-p--d-17-o--776n15-b-3-b/5 + operator: In + values: + - c matchLabels: - 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v: 0j._g-G-7--p9.-_0R.-_-3_S + 70u-1ml.711k9-8609a-e0--1----v8-4--558n1asz-re/OMop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.9_.-M: ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--0 namespaces: - - "394" - topologyKey: "395" + - "397" + topologyKey: "398" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X + - key: x.._-x_4..u2-__3uM77U7._pT-___-_r 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 + 8_t..-Ww2q.zK-p5: 8Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._28 namespaceSelector: matchExpressions: - - key: vi.Z - operator: NotIn - values: - - 03l-_86_u2-7_._qN__A_f_-B3_U__L.H + - key: N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-16 + operator: DoesNotExist 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 + 46-48e-9-h4-w-qp25--7-n--kfk3x-j9133es/T-_Lq-.5s: M-k5.C.e.._d-Y namespaces: - - "436" - topologyKey: "437" - weight: -616061040 + - "439" + topologyKey: "440" + weight: -176177167 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: 3--_9QW2JkU27_.-4T-I.-..K.2 + operator: In + values: + - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8 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 + E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e namespaceSelector: matchExpressions: - - key: P6j.u--.K--g__..b + - 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 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 + 7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz namespaces: - - "422" - topologyKey: "423" + - "425" + topologyKey: "426" automountServiceAccountToken: false containers: - args: - - "225" + - "226" command: - - "224" + - "225" env: - - name: "232" - value: "233" + - name: "233" + value: "234" valueFrom: configMapKeyRef: - key: "239" - name: "238" + key: "240" + name: "239" optional: false fieldRef: - apiVersion: "234" - fieldPath: "235" + apiVersion: "235" + fieldPath: "236" resourceFieldRef: - containerName: "236" - divisor: "255" - resource: "237" + containerName: "237" + divisor: "193" + resource: "238" secretKeyRef: - key: "241" - name: "240" + key: "242" + name: "241" optional: false envFrom: - configMapRef: - name: "230" - optional: true - prefix: "229" - secretRef: name: "231" optional: false - image: "223" - imagePullPolicy: $矡ȶ + prefix: "230" + secretRef: + name: "232" + optional: true + image: "224" + imagePullPolicy: vt莭琽§ć\ ïì« lifecycle: postStart: exec: command: - - "269" + - "270" httpGet: - host: "271" + host: "273" httpHeaders: - - name: "272" - value: "273" - path: "270" - port: -141943860 - scheme: 牐ɺ皚|懥 + - name: "274" + value: "275" + path: "271" + port: "272" + scheme: Ȋɞ-uƻ悖ȩ0Ƹ tcpSocket: - host: "275" - port: "274" + host: "277" + port: "276" preStop: exec: command: - - "276" + - "278" httpGet: - host: "278" + host: "281" httpHeaders: - - name: "279" - value: "280" - path: "277" - port: -407545915 - scheme: 'ɆâĺɗŹ倗S晒嶗UÐ_ƮA攤/ɸɎ ' + - name: "282" + value: "283" + path: "279" + port: "280" + scheme: '>5姣>懔%熷谟' tcpSocket: - host: "282" - port: "281" + host: "284" + port: -1920661051 livenessProbe: exec: command: - - "248" - failureThreshold: 1109079597 + - "249" + failureThreshold: 1089147958 httpGet: host: "251" httpHeaders: - name: "252" value: "253" - path: "249" - port: "250" - scheme: LLȊɞ-uƻ悖ȩ0Ƹ[Ęİ榌 - initialDelaySeconds: 878491792 - periodSeconds: -442393168 - successThreshold: -307373517 + path: "250" + port: 1762266578 + initialDelaySeconds: -1294101963 + periodSeconds: -103588794 + successThreshold: -1045704964 tcpSocket: host: "255" port: "254" - timeoutSeconds: -187060941 - name: "222" + terminationGracePeriodSeconds: -5467651408314215291 + timeoutSeconds: -1961863213 + name: "223" ports: - - containerPort: 800220849 - hostIP: "228" - hostPort: -162264011 - name: "227" - protocol: ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ + - containerPort: 1843758068 + hostIP: "229" + hostPort: 1135182169 + name: "228" + protocol: 瞾ʀNŬɨǙÄr蛏豈Ƀ readinessProbe: exec: command: - "256" - failureThreshold: 417821861 + failureThreshold: 1024248645 httpGet: host: "258" httpHeaders: - name: "259" value: "260" path: "257" - port: 1599076900 - scheme: ɰ - initialDelaySeconds: 963670270 - periodSeconds: -1409668172 - successThreshold: 1356213425 + port: 747521320 + scheme: 棂p儼Ƿ裚瓶釆Ɗ+j忊 + initialDelaySeconds: 441998152 + periodSeconds: -1453848697 + successThreshold: -321513994 tcpSocket: - host: "261" - port: -1675041613 - timeoutSeconds: -1180080716 + host: "262" + port: "261" + terminationGracePeriodSeconds: 866094339485091956 + timeoutSeconds: 747802823 resources: limits: - j忊Ŗȫ焗捏ĨFħ: "634" + Ŵ廷s{Ⱦdz@: "12" requests: - Ȍzɟ踡: "128" + 粛E煹: "508" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦O + - 枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F drop: - - "" - privileged: true - procMount: ƬQg鄠[颐o啛更偢ɇ卷荙JL + - 剂讼ɓȌʟni酛3Ɓ + privileged: false + procMount: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ readOnlyRootFilesystem: true - runAsGroup: 1616645369356252673 - runAsNonRoot: true - runAsUser: -5345615652360879044 + runAsGroup: -636584014972667630 + runAsNonRoot: false + runAsUser: -2000070193364862971 seLinuxOptions: - level: "287" - role: "285" - type: "286" - user: "284" + level: "289" + role: "287" + type: "288" + user: "286" seccompProfile: - localhostProfile: "291" - type: ']佱¿>犵殇ŕ-Ɂ圯W' + localhostProfile: "293" + type: w windowsOptions: - gmsaCredentialSpec: "289" - gmsaCredentialSpecName: "288" - runAsUserName: "290" + gmsaCredentialSpec: "291" + gmsaCredentialSpecName: "290" + runAsUserName: "292" startupProbe: exec: command: - - "262" - failureThreshold: 10098903 + - "263" + failureThreshold: -1586756233 httpGet: - host: "264" + host: "266" httpHeaders: - - name: "265" - value: "266" - path: "263" - port: 270599701 - scheme: ʤî萨zvt莭 - initialDelaySeconds: -503805926 - periodSeconds: -763687725 - successThreshold: -246563990 + - name: "267" + value: "268" + path: "264" + port: "265" + scheme: ʒ刽ʼn掏1ſ盷褎weLJèux榜 + initialDelaySeconds: 1157241180 + periodSeconds: -1681029343 + successThreshold: -1589303862 tcpSocket: - host: "268" - port: "267" - timeoutSeconds: 77312514 - terminationMessagePath: "283" - terminationMessagePolicy: 耶FfBls3!Zɾģ毋Ó6dz + host: "269" + port: 486195690 + terminationGracePeriodSeconds: 8197254455293781725 + timeoutSeconds: -1810997540 + stdin: true + stdinOnce: true + terminationMessagePath: "285" + terminationMessagePolicy: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3 + tty: true volumeDevices: - - devicePath: "247" - name: "246" + - devicePath: "248" + name: "247" volumeMounts: - - mountPath: "243" - mountPropagation: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 - name: "242" - subPath: "244" - subPathExpr: "245" - workingDir: "226" + - mountPath: "244" + mountPropagation: 渟 + name: "243" + readOnly: true + subPath: "245" + subPathExpr: "246" + workingDir: "227" dnsConfig: nameservers: - - "450" + - "453" options: - - name: "452" - value: "453" + - name: "455" + value: "456" searches: - - "451" - dnsPolicy: ɢX鰨松/Ȁĵ + - "454" + dnsPolicy: ±p鋄5弢ȹ均i绝5哇芆 enableServiceLinks: false ephemeralContainers: - args: - - "295" + - "297" command: - - "294" + - "296" env: - - name: "302" - value: "303" + - name: "304" + value: "305" valueFrom: configMapKeyRef: - key: "309" - name: "308" + key: "311" + name: "310" optional: false fieldRef: - apiVersion: "304" - fieldPath: "305" + apiVersion: "306" + fieldPath: "307" resourceFieldRef: - containerName: "306" - divisor: "160" - resource: "307" + containerName: "308" + divisor: "142" + resource: "309" secretKeyRef: - key: "311" - name: "310" - optional: true + key: "313" + name: "312" + optional: false envFrom: - configMapRef: - name: "300" + name: "302" optional: false - prefix: "299" + prefix: "301" secretRef: - name: "301" - optional: true - image: "293" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "303" + optional: false + image: "295" + imagePullPolicy: 丟×x锏ɟ4Ǒ lifecycle: postStart: exec: command: - - "339" + - "341" httpGet: - host: "341" + host: "343" httpHeaders: - - name: "342" - value: "343" - path: "340" - port: -1103045151 - scheme: Òȗ + - name: "344" + value: "345" + path: "342" + port: -282193676 + scheme: Ļǟi& tcpSocket: - host: "344" - port: 1843491416 + host: "347" + port: "346" preStop: exec: command: - - "345" + - "348" httpGet: - host: "347" - httpHeaders: - - name: "348" - value: "349" - path: "346" - port: -414121491 - scheme: ŕ璻Jih亏yƕ丆 - tcpSocket: host: "351" + httpHeaders: + - name: "352" + value: "353" + path: "349" port: "350" + scheme: 垾现葢ŵ橨 + tcpSocket: + host: "354" + port: -1312425203 livenessProbe: exec: command: - - "318" - failureThreshold: 1847163341 + - "320" + failureThreshold: -1538905728 httpGet: - host: "320" + host: "323" httpHeaders: - - name: "321" - value: "322" - path: "319" - port: -374766088 - scheme: 翜舞拉Œ - initialDelaySeconds: -190183379 - periodSeconds: -341287812 - successThreshold: 2030115750 + - name: "324" + value: "325" + path: "321" + port: "322" + scheme: Ů+朷Ǝ膯ljVX1虊 + initialDelaySeconds: -1748648882 + periodSeconds: 1381579966 + successThreshold: -1418092595 tcpSocket: - host: "324" - port: "323" - timeoutSeconds: -940334911 - name: "292" + host: "326" + port: -979584143 + terminationGracePeriodSeconds: -1867540518204155332 + timeoutSeconds: -239843014 + name: "294" ports: - - containerPort: 18113448 - hostIP: "298" - hostPort: 415947324 - name: "297" - protocol: 铿ʩȂ4ē鐭#嬀ơŸ8T + - containerPort: -1962065705 + hostIP: "300" + hostPort: 1752155096 + name: "299" + protocol: ¿ readinessProbe: exec: command: - - "325" - failureThreshold: 1103049140 + - "327" + failureThreshold: 888935190 httpGet: - host: "327" + host: "330" httpHeaders: - - name: "328" - value: "329" - path: "326" - port: 567263590 - scheme: KŅ/ - initialDelaySeconds: -1894250541 - periodSeconds: 1315054653 - successThreshold: 711020087 + - name: "331" + value: "332" + path: "328" + port: "329" + scheme: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L* + initialDelaySeconds: -244758593 + periodSeconds: 104069700 + successThreshold: -331594625 tcpSocket: - host: "331" - port: "330" - timeoutSeconds: 1962818731 + host: "333" + port: 1574967021 + terminationGracePeriodSeconds: 7193904584276385338 + timeoutSeconds: 591440053 resources: limits: - 绤fʀļ腩墺Ò媁荭g: "378" + ǩ: "957" requests: - Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ: "294" + Ɔȓ蹣ɐǛv+8Ƥ熪: "951" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 - runAsNonRoot: false - runAsUser: 4288903380102217677 + procMount: ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻 + readOnlyRootFilesystem: true + runAsGroup: -499179336506637450 + runAsNonRoot: true + runAsUser: 5620818514944490121 seLinuxOptions: - level: "356" - role: "354" - type: "355" - user: "353" + level: "359" + role: "357" + type: "358" + user: "356" seccompProfile: - localhostProfile: "360" - type: 鑳w妕眵笭/9崍h趭 + localhostProfile: "363" + type: ih亏yƕ丆録² windowsOptions: - gmsaCredentialSpec: "358" - gmsaCredentialSpecName: "357" - runAsUserName: "359" + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" startupProbe: exec: command: - - "332" - failureThreshold: -1129218498 + - "334" + failureThreshold: 617318981 httpGet: - host: "334" + host: "337" httpHeaders: - - name: "335" - value: "336" - path: "333" - port: -1468297794 - scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ - initialDelaySeconds: 1308698792 - periodSeconds: -934378634 - successThreshold: -1453143878 + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: î.Ȏ蝪ʜ5遰= + initialDelaySeconds: -1462219068 + periodSeconds: 1714588921 + successThreshold: -1246371817 tcpSocket: - host: "338" - port: "337" - timeoutSeconds: 1401790459 + host: "340" + port: 834105836 + terminationGracePeriodSeconds: 1856677271350902065 + timeoutSeconds: -370386363 stdin: true - targetContainerName: "361" - terminationMessagePath: "352" - terminationMessagePolicy: Ŏ)/灩聋3趐囨鏻砅邻 + targetContainerName: "364" + terminationMessagePath: "355" + terminationMessagePolicy: ;跣Hǝcw媀瓄& + tty: true volumeDevices: - - devicePath: "317" - name: "316" + - devicePath: "319" + name: "318" volumeMounts: - - mountPath: "313" - mountPropagation: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳 - name: "312" - readOnly: true - subPath: "314" - subPathExpr: "315" - workingDir: "296" + - mountPath: "315" + mountPropagation: 啛更 + name: "314" + subPath: "316" + subPathExpr: "317" + workingDir: "298" hostAliases: - hostnames: - - "448" - ip: "447" - hostNetwork: true - hostname: "378" + - "451" + ip: "450" + hostname: "381" imagePullSecrets: - - name: "377" + - name: "380" initContainers: - args: - "155" @@ -534,38 +547,38 @@ spec: name: "161" optional: true image: "153" - imagePullPolicy: 儣廡ɑ龫`劳&¼傭 + imagePullPolicy: 垁鷌辪 lifecycle: postStart: exec: command: - - "200" + - "199" httpGet: host: "202" httpHeaders: - name: "203" value: "204" - path: "201" - port: -1171060347 - scheme: 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊° + path: "200" + port: "201" + scheme: 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ tcpSocket: - host: "206" - port: "205" + host: "205" + port: 1180382332 preStop: exec: command: - - "207" + - "206" httpGet: host: "209" httpHeaders: - name: "210" value: "211" - path: "208" - port: -1319998825 - scheme: 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ + path: "207" + port: "208" + scheme: 蕵ɢ tcpSocket: - host: "212" - port: 1180382332 + host: "213" + port: "212" livenessProbe: exec: command: @@ -585,6 +598,7 @@ spec: tcpSocket: host: "184" port: -2049272966 + terminationGracePeriodSeconds: 5366407347694307113 timeoutSeconds: -427769948 name: "152" ports: @@ -597,21 +611,23 @@ spec: exec: command: - "185" - failureThreshold: -1618937335 + failureThreshold: 1569992019 httpGet: - host: "188" + host: "187" httpHeaders: - - name: "189" - value: "190" + - name: "188" + value: "189" path: "186" - port: "187" - initialDelaySeconds: 994527057 - periodSeconds: -1346458591 - successThreshold: 1234551517 + port: 1322581021 + scheme: 坩O`涁İ而踪鄌eÞ + initialDelaySeconds: 565789036 + periodSeconds: -582473401 + successThreshold: -1252931244 tcpSocket: - host: "191" - port: 675406340 - timeoutSeconds: -1482763519 + host: "190" + port: -1319491110 + terminationGracePeriodSeconds: 4559267523176571 + timeoutSeconds: -1572269414 resources: limits: ǝ鿟ldg滠鼍ƭt?QȫşŇɜ: "211" @@ -621,49 +637,51 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - 酃=6}ɡŇƉ立hdz緄Ú|dk_瀹鞎 + - 珝Żwʮ馜ü drop: - - n芞QÄȻȊ+?ƭ峧Y栲茇竛 + - șƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧 privileged: true - procMount: 軶ǃ*ʙ嫙&蒒5靇 - readOnlyRootFilesystem: false - runAsGroup: -593458796014416333 - runAsNonRoot: true - runAsUser: 4875570291212151521 + procMount: '鲡:' + readOnlyRootFilesystem: true + runAsGroup: -6738846580626183558 + runAsNonRoot: false + runAsUser: -2402724957580114162 seLinuxOptions: - level: "217" - role: "215" - type: "216" - user: "214" + level: "218" + role: "216" + type: "217" + user: "215" seccompProfile: - localhostProfile: "221" - type: '''ɵK.Q貇£ȹ嫰ƹǔw÷' + localhostProfile: "222" + type: wE@Ȗs windowsOptions: - gmsaCredentialSpec: "219" - gmsaCredentialSpecName: "218" - runAsUserName: "220" + gmsaCredentialSpec: "220" + gmsaCredentialSpecName: "219" + runAsUserName: "221" startupProbe: exec: command: - - "192" - failureThreshold: -814446577 + - "191" + failureThreshold: 741871873 httpGet: - host: "195" + host: "194" httpHeaders: - - name: "196" - value: "197" - path: "193" - port: "194" - scheme: eÞȦY籎顒 - initialDelaySeconds: -1252931244 - periodSeconds: 1061537 - successThreshold: 322666556 + - name: "195" + value: "196" + path: "192" + port: "193" + scheme: 鹎ğ#咻痗ȡmƴy綸_Ú8參遼 + initialDelaySeconds: -997191789 + periodSeconds: -918862259 + successThreshold: 655980302 tcpSocket: - host: "199" - port: "198" - timeoutSeconds: 1569992019 - terminationMessagePath: "213" - terminationMessagePolicy: H韹寬娬ï瓼猀2:öY鶪5w垁 + host: "198" + port: "197" + terminationGracePeriodSeconds: 1919118248821998564 + timeoutSeconds: -935589762 + stdinOnce: true + terminationMessagePath: "214" + terminationMessagePolicy: ńMǰ溟ɴ扵閝 tty: true volumeDevices: - devicePath: "177" @@ -676,64 +694,66 @@ spec: subPath: "174" subPathExpr: "175" workingDir: "156" - nodeName: "366" + nodeName: "369" nodeSelector: - "362": "363" + "365": "366" overhead: - kƱ: "313" - preemptionPolicy: ħ\ - priority: 780753434 - priorityClassName: "449" + "": "846" + preemptionPolicy: «ɒó<碡4鏽喡孨ʚé薘-­ɞ逭ɋ¡ + priority: -1623129882 + priorityClassName: "452" readinessGates: - - conditionType: ¤趜磕绘翁揌p:oŇE - restartPolicy: uE增猍ǵ xǨŴ - runtimeClassName: "454" - schedulerName: "444" + - conditionType: d楗鱶镖喗vȥ倉螆ȨX + restartPolicy: /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫 + runtimeClassName: "457" + schedulerName: "447" securityContext: - fsGroup: 3055252978348423424 - fsGroupChangePolicy: "" - runAsGroup: -8236071895143008294 - runAsNonRoot: false - runAsUser: 2548453080315983269 + fsGroup: 2556747128430250366 + fsGroupChangePolicy: IJ嘢4ʗ + runAsGroup: 5246659233493169699 + runAsNonRoot: true + runAsUser: -6224651420440742974 seLinuxOptions: - level: "370" - role: "368" - type: "369" - user: "367" + level: "373" + role: "371" + type: "372" + user: "370" seccompProfile: - localhostProfile: "376" - type: "" + localhostProfile: "379" + type: ',丽饾| 鞤ɱďW' supplementalGroups: - - -7117039988160665426 + - -7305004673396184610 sysctls: - - name: "374" - value: "375" + - name: "377" + value: "378" windowsOptions: - gmsaCredentialSpec: "372" - gmsaCredentialSpecName: "371" - runAsUserName: "373" - serviceAccount: "365" - serviceAccountName: "364" + gmsaCredentialSpec: "375" + gmsaCredentialSpecName: "374" + runAsUserName: "376" + serviceAccount: "368" + serviceAccountName: "367" setHostnameAsFQDN: false shareProcessNamespace: false - subdomain: "379" - terminationGracePeriodSeconds: -3517636156282992346 + subdomain: "382" + terminationGracePeriodSeconds: -247950237984551522 tolerations: - - effect: 甬Ʈ岢r臣鐐qwïźU痤ȵ - key: "445" - operator: 瘂S淫íŶƭ鬯富Nú顏*z犔kU - tolerationSeconds: -4322909565451750640 - value: "446" + - effect: D?/nēɅĀ埰ʀł!U詨nj1ýǝ + key: "448" + operator: 5谠vÐ仆dždĄ跞肞=ɴC}怢 + tolerationSeconds: -7090833765995091747 + value: "449" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: h---dY7_M_-._M5..-N_H_55..--E3_2D1 - 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 matchLabels: - Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i: Wq-...Oai.D7-_9..8-8yw..__Yb_8 - maxSkew: 1674267790 - topologyKey: "455" - whenUnsatisfiable: G峣搒R谱ʜ篲&ZǘtnjʣǕV + t-nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qc/2-7_._qN__A_f_-B3_U__L.KHK: 35H__.B_6_-U..u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4Po + maxSkew: 1688294622 + topologyKey: "458" + whenUnsatisfiable: 矵&7Ʃɩ volumes: - awsElasticBlockStore: fsType: "24" @@ -985,126 +1005,126 @@ spec: volumePath: "78" status: conditions: - - lastProbeTime: "2761-08-29T15:09:53Z" - lastTransitionTime: "2608-03-08T03:06:33Z" - message: "463" - reason: "462" - status: '{煰' - type: ?ɣ蔫椁Ȕ蝬KȴǃmŁȒ|'从 + - lastProbeTime: "2122-07-22T00:15:32Z" + lastTransitionTime: "2116-05-26T10:14:24Z" + message: "466" + reason: "465" + status: Ȕ蝬Kȴ + type: H诹ɼ#趶毎卸値å镮ó"壽ȱǒ鉚 containerStatuses: - - containerID: "497" - image: "495" - imageID: "496" + - containerID: "500" + image: "498" + imageID: "499" lastState: running: - startedAt: "2127-06-24T09:29:52Z" + startedAt: "2719-07-17T22:00:10Z" terminated: - containerID: "494" - exitCode: 1574959758 - finishedAt: "2299-04-20T19:57:50Z" - message: "493" - reason: "492" - signal: 1657812021 - startedAt: "2153-04-02T23:06:37Z" + containerID: "497" + exitCode: -391574961 + finishedAt: "2045-05-04T00:27:18Z" + message: "496" + reason: "495" + signal: -933017112 + startedAt: "2454-01-24T20:04:32Z" waiting: - message: "491" - reason: "490" - name: "484" + message: "494" + reason: "493" + name: "487" ready: true - restartCount: 2015720150 + restartCount: 840157370 started: false state: running: - startedAt: "2760-10-14T11:51:24Z" + startedAt: "2465-03-18T23:55:27Z" terminated: - containerID: "489" - exitCode: 165747350 - finishedAt: "2699-11-10T05:45:30Z" - message: "488" - reason: "487" - signal: 470888375 - startedAt: "2942-12-12T07:01:06Z" + containerID: "492" + exitCode: 1254193769 + finishedAt: "2007-08-17T02:42:37Z" + message: "491" + reason: "490" + signal: -1393376760 + startedAt: "2799-10-17T21:43:53Z" waiting: - message: "486" - reason: "485" + message: "489" + reason: "488" ephemeralContainerStatuses: - - containerID: "511" - image: "509" - imageID: "510" + - containerID: "514" + image: "512" + imageID: "513" lastState: running: - startedAt: "2100-10-03T01:21:07Z" + startedAt: "2685-03-12T10:07:19Z" terminated: - containerID: "508" - exitCode: -1308926448 - finishedAt: "2358-12-25T12:18:48Z" - message: "507" - reason: "506" - signal: 1208014329 - startedAt: "2915-11-30T10:57:55Z" + containerID: "511" + exitCode: 2005043090 + finishedAt: "2594-07-18T02:53:59Z" + message: "510" + reason: "509" + signal: 728551686 + startedAt: "2283-08-08T02:13:39Z" waiting: - message: "505" - reason: "504" - name: "498" + message: "508" + reason: "507" + name: "501" ready: true - restartCount: 1093414706 - started: true + restartCount: 692446142 + started: false state: running: - startedAt: "2513-06-23T10:07:34Z" + startedAt: "2269-01-04T20:21:46Z" terminated: - containerID: "503" - exitCode: -1155216843 - finishedAt: "2685-03-12T10:07:19Z" - message: "502" - reason: "501" - signal: 839330574 - startedAt: "2296-08-29T04:36:22Z" + containerID: "506" + exitCode: -419737006 + finishedAt: "2107-05-30T03:08:00Z" + message: "505" + reason: "504" + signal: 1267525999 + startedAt: "2479-09-29T08:36:44Z" waiting: - message: "500" - reason: "499" - hostIP: "467" + message: "503" + reason: "502" + hostIP: "470" initContainerStatuses: - - containerID: "483" - image: "481" - imageID: "482" + - containerID: "486" + image: "484" + imageID: "485" lastState: running: - startedAt: "2687-07-04T15:23:41Z" + startedAt: "2413-05-17T07:07:15Z" terminated: - containerID: "480" - exitCode: 1892596557 - finishedAt: "2719-07-17T22:00:10Z" - message: "479" - reason: "478" - signal: -1952419528 - startedAt: "2135-06-21T01:04:43Z" + containerID: "483" + exitCode: -416338651 + finishedAt: "2486-05-12T14:50:32Z" + message: "482" + reason: "481" + signal: 1820564266 + startedAt: "2855-03-01T08:57:00Z" waiting: - message: "477" - reason: "476" - name: "470" - ready: false - restartCount: -391574961 + message: "480" + reason: "479" + name: "473" + ready: true + restartCount: -1399651668 started: true state: running: - startedAt: "2207-07-09T15:21:43Z" + startedAt: "2838-07-20T19:58:45Z" terminated: - containerID: "475" - exitCode: 1874682186 - finishedAt: "2465-03-18T23:55:27Z" - message: "474" - reason: "473" - signal: -768346969 - startedAt: "2757-03-25T09:04:49Z" + containerID: "478" + exitCode: 537567999 + finishedAt: "2233-02-01T14:10:47Z" + message: "477" + reason: "476" + signal: 2082930716 + startedAt: "2738-06-23T15:55:19Z" waiting: - message: "472" - reason: "471" - message: "464" - nominatedNodeName: "466" - phase: VǢɾ纤ą - podIP: "468" + message: "475" + reason: "474" + message: "467" + nominatedNodeName: "469" + phase: å譥a + podIP: "471" podIPs: - - ip: "469" - qosClass: 澵貛香"砻B - reason: "465" + - ip: "472" + qosClass: 哶ɓŖybÑW紋旣Ülɳ涟Ð + reason: "468" 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 95ed4a2d8b1c..16bf82d75caf 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 @@ -540,7 +540,8 @@ "timeoutSeconds": 1676588692, "periodSeconds": -254454655, "successThreshold": -1925916855, - "failureThreshold": -1553779100 + "failureThreshold": -1553779100, + "terminationGracePeriodSeconds": 8334895174951990407 }, "readinessProbe": { "exec": { @@ -550,88 +551,91 @@ }, "httpGet": { "path": "203", - "port": "204", - "host": "205", - "scheme": "}", + "port": 1463207240, + "host": "204", + "scheme": "蝿", "httpHeaders": [ { - "name": "206", - "value": "207" + "name": "205", + "value": "206" } ] }, "tcpSocket": { - "port": "208", - "host": "209" + "port": "207", + "host": "208" }, - "initialDelaySeconds": 1030243869, - "timeoutSeconds": -1080853187, - "periodSeconds": -185042403, - "successThreshold": -374922344, - "failureThreshold": -31530684 + "initialDelaySeconds": 1435507444, + "timeoutSeconds": -1430577593, + "periodSeconds": 524249411, + "successThreshold": -1617359505, + "failureThreshold": -1801400049, + "terminationGracePeriodSeconds": -5734988028820567880 }, "startupProbe": { "exec": { "command": [ - "210" + "209" ] }, "httpGet": { - "path": "211", - "port": "212", - "host": "213", + "path": "210", + "port": "211", + "host": "212", + "scheme": "十Oɢǵʭd鲡:", "httpHeaders": [ { - "name": "214", - "value": "215" + "name": "213", + "value": "214" } ] }, "tcpSocket": { - "port": -289900366, - "host": "216" + "port": -2037320199, + "host": "215" }, - "initialDelaySeconds": 559781916, - "timeoutSeconds": -1703360754, - "periodSeconds": -1569009987, - "successThreshold": -1053603859, - "failureThreshold": 1471432155 + "initialDelaySeconds": 185639167, + "timeoutSeconds": 1487007476, + "periodSeconds": 393169267, + "successThreshold": 1381010768, + "failureThreshold": -722355061, + "terminationGracePeriodSeconds": 6388225771169951791 }, "lifecycle": { "postStart": { "exec": { "command": [ - "217" + "216" ] }, "httpGet": { - "path": "218", - "port": "219", - "host": "220", - "scheme": ":贅wE@Ȗs«öʮĀ\u003cé瞾", + "path": "217", + "port": "218", + "host": "219", + "scheme": "Ĭ4y£軶", "httpHeaders": [ { - "name": "221", - "value": "222" + "name": "220", + "value": "221" } ] }, "tcpSocket": { - "port": "223", - "host": "224" + "port": "222", + "host": "223" } }, "preStop": { "exec": { "command": [ - "225" + "224" ] }, "httpGet": { - "path": "226", - "port": -1718681455, + "path": "225", + "port": "226", "host": "227", - "scheme": "*ʙ嫙\u0026蒒5靇C'ɵK.", + "scheme": "ɃHŠơŴĿǹ_Áȉ彂Ŵ廷", "httpHeaders": [ { "name": "228", @@ -646,18 +650,18 @@ } }, "terminationMessagePath": "232", - "terminationMessagePolicy": "£ȹ嫰ƹǔw÷nI粛E煹", - "imagePullPolicy": "ȃv渟7", + "terminationMessagePolicy": "Ⱦdz@ùƸʋŀ", + "imagePullPolicy": "ǐƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ", "securityContext": { "capabilities": { "add": [ - "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪" + "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF" ], "drop": [ - "mɩC[ó瓧" + "籘Àǒɿʒ刽ʼn" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { "user": "233", "role": "234", @@ -669,17 +673,19 @@ "gmsaCredentialSpec": "238", "runAsUserName": "239" }, - "runAsUser": -6244232606031635964, - "runAsGroup": -2537458620093904059, - "runAsNonRoot": false, + "runAsUser": -1471909806757355977, + "runAsGroup": 2673502285499267331, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "ɟ踡肒Ao/樝fw[Řż丩Ž", + "procMount": "ux", "seccompProfile": { - "type": "", + "type": "VƋZ1Ůđ眊ľǎɳ,ǿ飏", "localhostProfile": "240" } - } + }, + "stdin": true, + "stdinOnce": true } ], "containers": [ @@ -696,9 +702,9 @@ "ports": [ { "name": "246", - "hostPort": 105707873, - "containerPort": -188803670, - "protocol": "鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ", + "hostPort": 474119379, + "containerPort": 1923334396, + "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", "hostIP": "247" } ], @@ -711,7 +717,7 @@ }, "secretRef": { "name": "250", - "optional": false + "optional": true } } ], @@ -727,12 +733,12 @@ "resourceFieldRef": { "containerName": "255", "resource": "256", - "divisor": "44" + "divisor": "771" }, "configMapKeyRef": { "name": "257", "key": "258", - "optional": true + "optional": false }, "secretKeyRef": { "name": "259", @@ -744,18 +750,19 @@ ], "resources": { "limits": { - "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄": "409" + "吐": "777" }, "requests": { - "ƐȤ藠3.v-鿧悮坮": "593" + "rʤî萨zvt莭琽§ć\\ ïì": "80" } }, "volumeMounts": [ { "name": "261", + "readOnly": true, "mountPath": "262", "subPath": "263", - "mountPropagation": "ïì«丯Ƙ枛牐ɺ皚|懥ƖN粕擓ƖHV", + "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", "subPathExpr": "264" } ], @@ -773,9 +780,9 @@ }, "httpGet": { "path": "268", - "port": -1196874390, + "port": -1285424066, "host": "269", - "scheme": "S晒嶗UÐ_ƮA攤", + "scheme": "ni酛3ƁÀ", "httpHeaders": [ { "name": "270", @@ -784,26 +791,27 @@ ] }, "tcpSocket": { - "port": -498930176, - "host": "272" + "port": "272", + "host": "273" }, - "initialDelaySeconds": 1885897314, - "timeoutSeconds": -465677631, - "periodSeconds": 1054858106, - "successThreshold": 232569106, - "failureThreshold": -1150474479 + "initialDelaySeconds": -2036074491, + "timeoutSeconds": -148216266, + "periodSeconds": 165047920, + "successThreshold": -393291312, + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { "command": [ - "273" + "274" ] }, "httpGet": { - "path": "274", - "port": "275", + "path": "275", + "port": -331283026, "host": "276", - "scheme": "8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ", + "scheme": "ȉ", "httpHeaders": [ { "name": "277", @@ -812,183 +820,187 @@ ] }, "tcpSocket": { - "port": "279", - "host": "280" + "port": 714088955, + "host": "279" }, - "initialDelaySeconds": -2717401, - "timeoutSeconds": -1492565335, - "periodSeconds": -1099429189, - "successThreshold": 994072122, - "failureThreshold": 1752155096 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "281" + "280" ] }, "httpGet": { - "path": "282", - "port": "283", - "host": "284", - "scheme": "Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", + "path": "281", + "port": -361442565, + "host": "282", + "scheme": "w", "httpHeaders": [ { - "name": "285", - "value": "286" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": -36782737, - "host": "287" + "port": -1099429189, + "host": "285" }, - "initialDelaySeconds": -1738069460, - "timeoutSeconds": -1643733106, - "periodSeconds": -805795167, - "successThreshold": 1791615594, - "failureThreshold": 785984384 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "288" + "286" ] }, "httpGet": { - "path": "289", - "port": "290", - "host": "291", - "scheme": "\u003e郵[+扴ȨŮ", + "path": "287", + "port": -1109619518, + "host": "288", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "292", - "value": "293" + "name": "289", + "value": "290" } ] }, "tcpSocket": { - "port": "294", - "host": "295" + "port": "291", + "host": "292" } }, "preStop": { "exec": { "command": [ - "296" + "293" ] }, "httpGet": { - "path": "297", - "port": -743369977, - "host": "298", - "scheme": "\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4", + "path": "294", + "port": 461585849, + "host": "295", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "299", - "value": "300" + "name": "296", + "value": "297" } ] }, "tcpSocket": { - "port": -1224991707, - "host": "301" + "port": 467291328, + "host": "298" } } }, - "terminationMessagePath": "302", - "imagePullPolicy": "昕Ĭ", + "terminationMessagePath": "299", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "藢xɮĵȑ6L*Z鐫û咡W\u003c" + "埄趛" ], "drop": [ - "lu|榝$î." + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "303", - "role": "304", - "type": "305", - "level": "306" + "user": "300", + "role": "301", + "type": "302", + "level": "303" }, "windowsOptions": { - "gmsaCredentialSpecName": "307", - "gmsaCredentialSpec": "308", - "runAsUserName": "309" + "gmsaCredentialSpecName": "304", + "gmsaCredentialSpec": "305", + "runAsUserName": "306" }, - "runAsUser": -7565148469525206101, - "runAsGroup": 8949541422887578058, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "朦 wƯ貾坢'跩", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "ŕ翑0展}", - "localhostProfile": "310" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "307" } }, - "stdinOnce": true + "stdinOnce": true, + "tty": true } ], "ephemeralContainers": [ { - "name": "311", - "image": "312", + "name": "308", + "image": "309", "command": [ - "313" + "310" ], "args": [ - "314" + "311" ], - "workingDir": "315", + "workingDir": "312", "ports": [ { - "name": "316", - "hostPort": -778272981, - "containerPort": 2056774277, - "protocol": "现葢ŵ橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉", - "hostIP": "317" + "name": "313", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "314" } ], "envFrom": [ { - "prefix": "318", + "prefix": "315", "configMapRef": { - "name": "319", - "optional": true + "name": "316", + "optional": false }, "secretRef": { - "name": "320", + "name": "317", "optional": false } } ], "env": [ { - "name": "321", - "value": "322", + "name": "318", + "value": "319", "valueFrom": { "fieldRef": { - "apiVersion": "323", - "fieldPath": "324" + "apiVersion": "320", + "fieldPath": "321" }, "resourceFieldRef": { - "containerName": "325", - "resource": "326", - "divisor": "124" + "containerName": "322", + "resource": "323", + "divisor": "185" }, "configMapKeyRef": { - "name": "327", - "key": "328", - "optional": false + "name": "324", + "key": "325", + "optional": true }, "secretKeyRef": { - "name": "329", - "key": "330", + "name": "326", + "key": "327", "optional": false } } @@ -996,248 +1008,254 @@ ], "resources": { "limits": { - "V訆Ǝżŧ": "915" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "+SÄ蚃ɣľ)酊龨Î": "787" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "331", - "readOnly": true, - "mountPath": "332", - "subPath": "333", - "mountPropagation": "\"冓鍓贯澔 ƺ蛜6", - "subPathExpr": "334" + "name": "328", + "mountPath": "329", + "subPath": "330", + "mountPropagation": "", + "subPathExpr": "331" } ], "volumeDevices": [ { - "name": "335", - "devicePath": "336" + "name": "332", + "devicePath": "333" } ], "livenessProbe": { "exec": { "command": [ - "337" + "334" ] }, "httpGet": { - "path": "338", - "port": 465486290, - "host": "339", + "path": "335", + "port": "336", + "host": "337", + "scheme": "頸", "httpHeaders": [ { - "name": "340", - "value": "341" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": -116224247, - "host": "342" + "port": 1315054653, + "host": "340" }, - "initialDelaySeconds": -2097329452, - "timeoutSeconds": 1504385614, - "periodSeconds": 865289071, - "successThreshold": -1829146875, - "failureThreshold": -205176266 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "343" + "341" ] }, "httpGet": { - "path": "344", - "port": 234253676, - "host": "345", - "scheme": "ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏", + "path": "342", + "port": -1315487077, + "host": "343", + "scheme": "ğ_", "httpHeaders": [ { - "name": "346", - "value": "347" + "name": "344", + "value": "345" } ] }, "tcpSocket": { - "port": "348", - "host": "349" + "port": "346", + "host": "347" }, - "initialDelaySeconds": -2062708879, - "timeoutSeconds": 215186711, - "periodSeconds": -141401239, - "successThreshold": -1187301925, - "failureThreshold": -402384013 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "350" + "348" ] }, "httpGet": { - "path": "351", - "port": "352", - "host": "353", - "scheme": "鏻砅邻爥", + "path": "349", + "port": 1332783160, + "host": "350", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "354", - "value": "355" + "name": "351", + "value": "352" } ] }, "tcpSocket": { - "port": -305362540, - "host": "356" + "port": "353", + "host": "354" }, - "initialDelaySeconds": 601198286, - "timeoutSeconds": 409029209, - "periodSeconds": 405193215, - "successThreshold": 2129989022, - "failureThreshold": -1699531929 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "357" + "355" ] }, "httpGet": { - "path": "358", - "port": "359", - "host": "360", - "scheme": "­蜷ɔ幩š", + "path": "356", + "port": "357", + "host": "358", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "361", - "value": "362" + "name": "359", + "value": "360" } ] }, "tcpSocket": { - "port": 455833230, - "host": "363" + "port": -402384013, + "host": "361" } }, "preStop": { "exec": { "command": [ - "364" + "362" ] }, "httpGet": { - "path": "365", - "port": 1076497581, - "host": "366", - "scheme": "h4ɊHȖ|ʐ", + "path": "363", + "port": "364", + "host": "365", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "367", - "value": "368" + "name": "366", + "value": "367" } ] }, "tcpSocket": { - "port": 248533396, - "host": "369" + "port": -305362540, + "host": "368" } } }, - "terminationMessagePath": "370", - "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", - "imagePullPolicy": "ņ", + "terminationMessagePath": "369", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "DŽ髐njʉBn(fǂǢ曣" + "" ], "drop": [ - "ay" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, "privileged": false, "seLinuxOptions": { - "user": "371", - "role": "372", - "type": "373", - "level": "374" + "user": "370", + "role": "371", + "type": "372", + "level": "373" }, "windowsOptions": { - "gmsaCredentialSpecName": "375", - "gmsaCredentialSpec": "376", - "runAsUserName": "377" + "gmsaCredentialSpecName": "374", + "gmsaCredentialSpec": "375", + "runAsUserName": "376" }, - "runAsUser": 1958157659034146020, - "runAsGroup": -5996624450771474158, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "嗆u", + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "晲T[irȎ3Ĕ\\", - "localhostProfile": "378" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "377" } }, + "stdin": true, + "stdinOnce": true, "tty": true, - "targetContainerName": "379" + "targetContainerName": "378" } ], - "restartPolicy": "鰨松/Ȁĵ鴁ĩ", - "terminationGracePeriodSeconds": 5255171395073905944, - "activeDeadlineSeconds": 760480547754807445, - "dnsPolicy": " Ņ#耗", + "restartPolicy": "眵笭/9崍h趭(娕uE增猍ǵ x", + "terminationGracePeriodSeconds": 5164725064832182831, + "activeDeadlineSeconds": -5669474827175536499, + "dnsPolicy": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎", "nodeSelector": { - "380": "381" + "379": "380" }, - "serviceAccountName": "382", - "serviceAccount": "383", + "serviceAccountName": "381", + "serviceAccount": "382", "automountServiceAccountToken": false, - "nodeName": "384", - "shareProcessNamespace": true, + "nodeName": "383", + "hostPID": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "385", - "role": "386", - "type": "387", - "level": "388" + "user": "384", + "role": "385", + "type": "386", + "level": "387" }, "windowsOptions": { - "gmsaCredentialSpecName": "389", - "gmsaCredentialSpec": "390", - "runAsUserName": "391" + "gmsaCredentialSpecName": "388", + "gmsaCredentialSpec": "389", + "runAsUserName": "390" }, - "runAsUser": -2814749701257649187, - "runAsGroup": -2284009989479738687, + "runAsUser": 8748656795747647539, + "runAsGroup": 1362411221198469787, "runAsNonRoot": false, "supplementalGroups": [ - -6831592407095063988 + 6117757314288468928 ], - "fsGroup": -2938475845623062804, + "fsGroup": 692941646129076193, "sysctls": [ { - "name": "392", - "value": "393" + "name": "391", + "value": "392" } ], - "fsGroupChangePolicy": "`l}Ñ蠂Ü[ƛ^輅", + "fsGroupChangePolicy": "Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ", "seccompProfile": { - "type": "ɛ棕ƈ眽炊礫Ƽ¨Ix糂", - "localhostProfile": "394" + "type": "箨ʨIk(dŊiɢ", + "localhostProfile": "393" } }, "imagePullSecrets": [ { - "name": "395" + "name": "394" } ], - "hostname": "396", - "subdomain": "397", + "hostname": "395", + "subdomain": "396", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1245,19 +1263,19 @@ { "matchExpressions": [ { - "key": "398", - "operator": "zĮ蛋I滞廬耐鷞焬CQ", + "key": "397", + "operator": "y竬ʆɞȥ}礤铟怖ý萜Ǖc8", "values": [ - "399" + "398" ] } ], "matchFields": [ { - "key": "400", - "operator": "ý萜Ǖc", + "key": "399", + "operator": "ĝ®EĨǔvÄÚ×p鬷", "values": [ - "401" + "400" ] } ] @@ -1266,23 +1284,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1141812777, + "weight": -843639240, "preference": { "matchExpressions": [ { - "key": "402", - "operator": "Ƶŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽ", + "key": "401", + "operator": "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$", "values": [ - "403" + "402" ] } ], "matchFields": [ { - "key": "404", - "operator": "乳'ȘUɻ;襕ċ桉桃喕", + "key": "403", + "operator": "Z漤ŗ坟Ů\u003cy鯶縆ł", "values": [ - "405" + "404" ] } ] @@ -1295,29 +1313,32 @@ { "labelSelector": { "matchLabels": { - "7o-x382m88w-pz94.g-c2---2etfh41ca-z-5g2wco8/3Og": "8w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k.1" + "a--g.u-2/p-9-4-Tm.__G-8...__.Q_c8.G.b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-_2": "1Ys_Mop34_-y.H" }, "matchExpressions": [ { - "key": "a2/H9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.D7", - "operator": "DoesNotExist" + "key": "4.B.__6m", + "operator": "In", + "values": [ + "3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn" + ] } ] }, "namespaces": [ - "412" + "411" ], - "topologyKey": "413", + "topologyKey": "412", "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" + "x-3/6-.7D.3_KPgL": "d._.Um.-__k.5" }, "matchExpressions": [ { - "key": "C0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b17ca-p", + "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", "operator": "In", "values": [ - "3-3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ_K" + "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw" ] } ] @@ -1326,31 +1347,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1357609391, + "weight": 1036096141, "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" + "3-8o1-x-1wl----f31-0-2t3zw.il-023bm-6l2e5---k5v38/E9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiSo": "X-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2" }, "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": "Y.39g_.--_-_ve5.m_U", + "operator": "NotIn", + "values": [ + "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1" + ] } ] }, "namespaces": [ - "426" + "425" ], - "topologyKey": "427", + "topologyKey": "426", "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" + "0--385h---0-u73phjo--8kb6--ut---p6.t5--9-4-d2-22-0/jcz.-Y6T4gz": "p_.----cp__ac8u.._-__BM.6-.Y7" }, "matchExpressions": [ { - "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", - "operator": "DoesNotExist" + "key": "1x--i--7-nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w-ke5p-3.nu--17---u7-gl7814ei-07shtq-6---g----9s39z-5/wv3UDf.-4D-5", + "operator": "NotIn", + "values": [ + "l67Q.-_t--O.3L.z2-y.-...C4_-_2G8" + ] } ] } @@ -1363,26 +1390,29 @@ { "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" + "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" }, "matchExpressions": [ { - "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1", - "operator": "DoesNotExist" + "key": "4b699/B9n.2", + "operator": "In", + "values": [ + "MM7-.e.x" + ] } ] }, "namespaces": [ - "440" + "439" ], - "topologyKey": "441", + "topologyKey": "440", "namespaceSelector": { "matchLabels": { - "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR" + "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" }, "matchExpressions": [ { - "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7", + "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", "operator": "DoesNotExist" } ] @@ -1391,31 +1421,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 339079271, + "weight": 1131487788, "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" + "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" }, "matchExpressions": [ { - "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5", - "operator": "Exists" + "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" + ] } ] }, "namespaces": [ - "454" + "453" ], - "topologyKey": "455", + "topologyKey": "454", "namespaceSelector": { "matchLabels": { - "E35H__.B_E": "U..u8gwbk" + "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" }, "matchExpressions": [ { - "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i", - "operator": "Exists" + "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", + "operator": "DoesNotExist" } ] } @@ -1424,65 +1457,66 @@ ] } }, - "schedulerName": "462", + "schedulerName": "461", "tolerations": [ { - "key": "463", - "operator": "ŭʔb'?舍ȃʥx臥]å摞", - "value": "464", - "tolerationSeconds": 3053978290188957517 + "key": "462", + "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", + "value": "463", + "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", + "tolerationSeconds": -3147305732428645642 } ], "hostAliases": [ { - "ip": "465", + "ip": "464", "hostnames": [ - "466" + "465" ] } ], - "priorityClassName": "467", - "priority": -340583156, + "priorityClassName": "466", + "priority": -1756088332, "dnsConfig": { "nameservers": [ - "468" + "467" ], "searches": [ - "469" + "468" ], "options": [ { - "name": "470", - "value": "471" + "name": "469", + "value": "470" } ] }, "readinessGates": [ { - "conditionType": "țc£PAÎǨȨ栋" + "conditionType": "#sM網" } ], - "runtimeClassName": "472", - "enableServiceLinks": false, - "preemptionPolicy": "n{鳻", + "runtimeClassName": "471", + "enableServiceLinks": true, + "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", "overhead": { - "隅DžbİEMǶɼ`|褞": "229" + "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" }, "topologySpreadConstraints": [ { - "maxSkew": 1486667065, - "topologyKey": "473", - "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞", + "maxSkew": -447559705, + "topologyKey": "472", + "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", "labelSelector": { "matchLabels": { - "H_55..--E3_2D-1DW__o_-.k": "7" + "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" }, "matchExpressions": [ { - "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b", - "operator": "NotIn", + "key": "KTlO.__0PX", + "operator": "In", "values": [ - "H1z..j_.r3--T" + "V6K_.3_583-6.f-.9-.V..Q-K_6_3" ] } ] 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 e9044ff54e21..a3b1426b0b62 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 d3038506733c..c55a8adecb7b 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 @@ -60,106 +60,116 @@ template: selfLink: "22" uid: SǡƏ spec: - activeDeadlineSeconds: 760480547754807445 + activeDeadlineSeconds: -5669474827175536499 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "402" - operator: Ƶŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽ + - key: "401" + operator: 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$ values: - - "403" + - "402" matchFields: - - key: "404" - operator: 乳'ȘUɻ;襕ċ桉桃喕 + - key: "403" + operator: Z漤ŗ坟Ů郵[+扴ȨŮ' + - name: "289" + value: "290" + path: "287" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "295" - port: "294" + host: "292" + port: "291" preStop: exec: command: - - "296" + - "293" httpGet: - host: "298" + host: "295" httpHeaders: - - name: "299" - value: "300" - path: "297" - port: -743369977 - scheme: '>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4' + - name: "296" + value: "297" + path: "294" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "301" - port: -1224991707 + host: "298" + port: 467291328 livenessProbe: exec: command: - "267" - failureThreshold: -1150474479 + failureThreshold: -93157681 httpGet: host: "269" httpHeaders: - name: "270" value: "271" path: "268" - port: -1196874390 - scheme: S晒嶗UÐ_ƮA攤 - initialDelaySeconds: 1885897314 - periodSeconds: 1054858106 - successThreshold: 232569106 + port: -1285424066 + scheme: ni酛3ƁÀ + initialDelaySeconds: -2036074491 + periodSeconds: 165047920 + successThreshold: -393291312 tcpSocket: - host: "272" - port: -498930176 - timeoutSeconds: -465677631 + host: "273" + port: "272" + terminationGracePeriodSeconds: -4856573944864548413 + timeoutSeconds: -148216266 name: "241" ports: - - containerPort: -188803670 + - containerPort: 1923334396 hostIP: "247" - hostPort: 105707873 + hostPort: 474119379 name: "246" - protocol: 鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ + protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ readinessProbe: exec: command: - - "273" - failureThreshold: 1752155096 + - "274" + failureThreshold: 513341278 httpGet: host: "276" httpHeaders: - name: "277" value: "278" - path: "274" - port: "275" - scheme: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ - initialDelaySeconds: -2717401 - periodSeconds: -1099429189 - successThreshold: 994072122 + path: "275" + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "280" - port: "279" - timeoutSeconds: -1492565335 + host: "279" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄: "409" + 吐: "777" requests: - ƐȤ藠3.v-鿧悮坮: "593" + rʤî萨zvt莭琽§ć\ ïì: "80" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 藢xɮĵȑ6L*Z鐫û咡W< + - 埄趛 drop: - - lu|榝$î. - privileged: false - procMount: 朦 wƯ貾坢'跩 - readOnlyRootFilesystem: true - runAsGroup: 8949541422887578058 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -7565148469525206101 + runAsUser: -857934902638099053 seLinuxOptions: - level: "306" - role: "304" - type: "305" - user: "303" + level: "303" + role: "301" + type: "302" + user: "300" seccompProfile: - localhostProfile: "310" - type: ŕ翑0展} + localhostProfile: "307" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "308" - gmsaCredentialSpecName: "307" - runAsUserName: "309" + gmsaCredentialSpec: "305" + gmsaCredentialSpecName: "304" + runAsUserName: "306" startupProbe: exec: command: - - "281" - failureThreshold: 785984384 + - "280" + failureThreshold: -1364571630 httpGet: - host: "284" + host: "282" httpHeaders: - - name: "285" - value: "286" - path: "282" - port: "283" - scheme: Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ - initialDelaySeconds: -1738069460 - periodSeconds: -805795167 - successThreshold: 1791615594 + - name: "283" + value: "284" + path: "281" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "287" - port: -36782737 - timeoutSeconds: -1643733106 + host: "285" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 stdinOnce: true - terminationMessagePath: "302" + terminationMessagePath: "299" + terminationMessagePolicy: ĸ輦唊 + tty: true volumeDevices: - devicePath: "266" name: "265" volumeMounts: - mountPath: "262" - mountPropagation: ïì«丯Ƙ枛牐ɺ皚|懥ƖN粕擓ƖHV + mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S name: "261" + readOnly: true subPath: "263" subPathExpr: "264" workingDir: "245" dnsConfig: nameservers: - - "468" + - "467" options: - - name: "470" - value: "471" + - name: "469" + value: "470" searches: - - "469" - dnsPolicy: ' Ņ#耗' - enableServiceLinks: false + - "468" + dnsPolicy: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎 + enableServiceLinks: true ephemeralContainers: - args: - - "314" + - "311" command: - - "313" + - "310" env: - - name: "321" - value: "322" + - name: "318" + value: "319" valueFrom: configMapKeyRef: - key: "328" - name: "327" - optional: false + key: "325" + name: "324" + optional: true fieldRef: - apiVersion: "323" - fieldPath: "324" + apiVersion: "320" + fieldPath: "321" resourceFieldRef: - containerName: "325" - divisor: "124" - resource: "326" + containerName: "322" + divisor: "185" + resource: "323" secretKeyRef: - key: "330" - name: "329" + key: "327" + name: "326" optional: false envFrom: - configMapRef: - name: "319" - optional: true - prefix: "318" + name: "316" + optional: false + prefix: "315" secretRef: - name: "320" + name: "317" optional: false - image: "312" - imagePullPolicy: ņ + image: "309" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "357" + - "355" httpGet: - host: "360" + host: "358" httpHeaders: - - name: "361" - value: "362" - path: "358" - port: "359" - scheme: ­蜷ɔ幩š + - name: "359" + value: "360" + path: "356" + port: "357" + scheme: 鯂²静 tcpSocket: - host: "363" - port: 455833230 + host: "361" + port: -402384013 preStop: exec: command: - - "364" + - "362" httpGet: - host: "366" + host: "365" httpHeaders: - - name: "367" - value: "368" - path: "365" - port: 1076497581 - scheme: h4ɊHȖ|ʐ + - name: "366" + value: "367" + path: "363" + port: "364" + scheme: 鏻砅邻爥 tcpSocket: - host: "369" - port: 248533396 + host: "368" + port: -305362540 livenessProbe: exec: command: - - "337" - failureThreshold: -205176266 + - "334" + failureThreshold: 1993268896 httpGet: - host: "339" + host: "337" httpHeaders: - - name: "340" - value: "341" - path: "338" - port: 465486290 - initialDelaySeconds: -2097329452 - periodSeconds: 865289071 - successThreshold: -1829146875 + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "342" - port: -116224247 - timeoutSeconds: 1504385614 - name: "311" + host: "340" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "308" ports: - - containerPort: 2056774277 - hostIP: "317" - hostPort: -778272981 - name: "316" - protocol: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 + - containerPort: -370386363 + hostIP: "314" + hostPort: -1462219068 + name: "313" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "343" - failureThreshold: -402384013 + - "341" + failureThreshold: 1456461851 httpGet: - host: "345" + host: "343" httpHeaders: - - name: "346" - value: "347" - path: "344" - port: 234253676 - scheme: ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏 - initialDelaySeconds: -2062708879 - periodSeconds: -141401239 - successThreshold: -1187301925 + - name: "344" + value: "345" + path: "342" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "349" - port: "348" - timeoutSeconds: 215186711 + host: "347" + port: "346" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - V訆Ǝżŧ: "915" + 鬶l獕;跣Hǝcw: "242" requests: - +SÄ蚃ɣľ)酊龨Î: "787" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - DŽ髐njʉBn(fǂǢ曣 + - "" drop: - - ay + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ privileged: false - procMount: 嗆u - readOnlyRootFilesystem: true - runAsGroup: -5996624450771474158 + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: 1958157659034146020 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "374" - role: "372" - type: "373" - user: "371" + level: "373" + role: "371" + type: "372" + user: "370" seccompProfile: - localhostProfile: "378" - type: 晲T[irȎ3Ĕ\ + localhostProfile: "377" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "376" - gmsaCredentialSpecName: "375" - runAsUserName: "377" + gmsaCredentialSpec: "375" + gmsaCredentialSpecName: "374" + runAsUserName: "376" startupProbe: exec: command: - - "350" - failureThreshold: -1699531929 + - "348" + failureThreshold: 620822482 httpGet: - host: "353" + host: "350" httpHeaders: - - name: "354" - value: "355" - path: "351" - port: "352" - scheme: 鏻砅邻爥 - initialDelaySeconds: 601198286 - periodSeconds: 405193215 - successThreshold: 2129989022 + - name: "351" + value: "352" + path: "349" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "356" - port: -305362540 - timeoutSeconds: 409029209 - targetContainerName: "379" - terminationMessagePath: "370" - terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ + host: "354" + port: "353" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 + stdin: true + stdinOnce: true + targetContainerName: "378" + terminationMessagePath: "369" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "336" - name: "335" + - devicePath: "333" + name: "332" volumeMounts: - - mountPath: "332" - mountPropagation: '"冓鍓贯澔 ƺ蛜6' - name: "331" - readOnly: true - subPath: "333" - subPathExpr: "334" - workingDir: "315" + - mountPath: "329" + mountPropagation: "" + name: "328" + subPath: "330" + subPathExpr: "331" + workingDir: "312" hostAliases: - hostnames: - - "466" - ip: "465" - hostname: "396" + - "465" + ip: "464" + hostPID: true + hostname: "395" imagePullSecrets: - - name: "395" + - name: "394" initContainers: - args: - "172" @@ -561,35 +583,35 @@ template: name: "178" optional: false image: "170" - imagePullPolicy: ȃv渟7 + imagePullPolicy: ǐƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ lifecycle: postStart: exec: command: - - "217" + - "216" httpGet: - host: "220" + host: "219" httpHeaders: - - name: "221" - value: "222" - path: "218" - port: "219" - scheme: :贅wE@Ȗs«öʮĀ<é瞾 + - name: "220" + value: "221" + path: "217" + port: "218" + scheme: Ĭ4y£軶 tcpSocket: - host: "224" - port: "223" + host: "223" + port: "222" preStop: exec: command: - - "225" + - "224" httpGet: host: "227" httpHeaders: - name: "228" value: "229" - path: "226" - port: -1718681455 - scheme: '*ʙ嫙&蒒5靇C''ɵK.' + path: "225" + port: "226" + scheme: ɃHŠơŴĿǹ_Áȉ彂Ŵ廷 tcpSocket: host: "231" port: "230" @@ -612,6 +634,7 @@ template: tcpSocket: host: "201" port: "200" + terminationGracePeriodSeconds: 8334895174951990407 timeoutSeconds: 1676588692 name: "169" ports: @@ -624,22 +647,23 @@ template: exec: command: - "202" - failureThreshold: -31530684 + failureThreshold: -1801400049 httpGet: - host: "205" + host: "204" httpHeaders: - - name: "206" - value: "207" + - name: "205" + value: "206" path: "203" - port: "204" - scheme: '}' - initialDelaySeconds: 1030243869 - periodSeconds: -185042403 - successThreshold: -374922344 + port: 1463207240 + scheme: 蝿 + initialDelaySeconds: 1435507444 + periodSeconds: 524249411 + successThreshold: -1617359505 tcpSocket: - host: "209" - port: "208" - timeoutSeconds: -1080853187 + host: "208" + port: "207" + terminationGracePeriodSeconds: -5734988028820567880 + timeoutSeconds: -1430577593 resources: limits: hoĂɋ: "206" @@ -649,15 +673,15 @@ template: allowPrivilegeEscalation: true capabilities: add: - - djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF drop: - - mɩC[ó瓧 - privileged: true - procMount: ɟ踡肒Ao/樝fw[Řż丩Ž + - 籘Àǒɿʒ刽ʼn + privileged: false + procMount: ux readOnlyRootFilesystem: true - runAsGroup: -2537458620093904059 - runAsNonRoot: false - runAsUser: -6244232606031635964 + runAsGroup: 2673502285499267331 + runAsNonRoot: true + runAsUser: -1471909806757355977 seLinuxOptions: level: "236" role: "234" @@ -665,7 +689,7 @@ template: user: "233" seccompProfile: localhostProfile: "240" - type: "" + type: VƋZ1Ůđ眊ľǎɳ,ǿ飏 windowsOptions: gmsaCredentialSpec: "238" gmsaCredentialSpecName: "237" @@ -673,24 +697,28 @@ template: startupProbe: exec: command: - - "210" - failureThreshold: 1471432155 + - "209" + failureThreshold: -722355061 httpGet: - host: "213" + host: "212" httpHeaders: - - name: "214" - value: "215" - path: "211" - port: "212" - initialDelaySeconds: 559781916 - periodSeconds: -1569009987 - successThreshold: -1053603859 + - name: "213" + value: "214" + path: "210" + port: "211" + scheme: '十Oɢǵʭd鲡:' + initialDelaySeconds: 185639167 + periodSeconds: 393169267 + successThreshold: 1381010768 tcpSocket: - host: "216" - port: -289900366 - timeoutSeconds: -1703360754 + host: "215" + port: -2037320199 + terminationGracePeriodSeconds: 6388225771169951791 + timeoutSeconds: 1487007476 + stdin: true + stdinOnce: true terminationMessagePath: "232" - terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹 + terminationMessagePolicy: Ⱦdz@ùƸʋŀ volumeDevices: - devicePath: "194" name: "193" @@ -701,65 +729,66 @@ template: subPath: "191" subPathExpr: "192" workingDir: "173" - nodeName: "384" + nodeName: "383" nodeSelector: - "380": "381" + "379": "380" overhead: - 隅DžbİEMǶɼ`|褞: "229" - preemptionPolicy: n{鳻 - priority: -340583156 - priorityClassName: "467" + 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452" + preemptionPolicy: ûŠl倳ţü¿Sʟ鍡 + priority: -1756088332 + priorityClassName: "466" readinessGates: - - conditionType: țc£PAÎǨȨ栋 - restartPolicy: 鰨松/Ȁĵ鴁ĩ - runtimeClassName: "472" - schedulerName: "462" + - conditionType: '#sM網' + restartPolicy: 眵笭/9崍h趭(娕uE增猍ǵ x + runtimeClassName: "471" + schedulerName: "461" securityContext: - fsGroup: -2938475845623062804 - fsGroupChangePolicy: '`l}Ñ蠂Ü[ƛ^輅' - runAsGroup: -2284009989479738687 + fsGroup: 692941646129076193 + fsGroupChangePolicy: Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ + runAsGroup: 1362411221198469787 runAsNonRoot: false - runAsUser: -2814749701257649187 + runAsUser: 8748656795747647539 seLinuxOptions: - level: "388" - role: "386" - type: "387" - user: "385" + level: "387" + role: "385" + type: "386" + user: "384" seccompProfile: - localhostProfile: "394" - type: ɛ棕ƈ眽炊礫Ƽ¨Ix糂 + localhostProfile: "393" + type: 箨ʨIk(dŊiɢ supplementalGroups: - - -6831592407095063988 + - 6117757314288468928 sysctls: - - name: "392" - value: "393" + - name: "391" + value: "392" windowsOptions: - gmsaCredentialSpec: "390" - gmsaCredentialSpecName: "389" - runAsUserName: "391" - serviceAccount: "383" - serviceAccountName: "382" + gmsaCredentialSpec: "389" + gmsaCredentialSpecName: "388" + runAsUserName: "390" + serviceAccount: "382" + serviceAccountName: "381" setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "397" - terminationGracePeriodSeconds: 5255171395073905944 + shareProcessNamespace: false + subdomain: "396" + terminationGracePeriodSeconds: 5164725064832182831 tolerations: - - key: "463" - operator: ŭʔb'?舍ȃʥx臥]å摞 - tolerationSeconds: 3053978290188957517 - value: "464" + - effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸ + key: "462" + operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ + tolerationSeconds: -3147305732428645642 + value: "463" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b - operator: NotIn + - key: KTlO.__0PX + operator: In values: - - H1z..j_.r3--T + - V6K_.3_583-6.f-.9-.V..Q-K_6_3 matchLabels: - H_55..--E3_2D-1DW__o_-.k: "7" - maxSkew: 1486667065 - topologyKey: "473" - whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞 + 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 + maxSkew: -447559705 + topologyKey: "472" + whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒 volumes: - awsElasticBlockStore: fsType: "41" 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 4663aa39aef7..bdfa74c419ce 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 @@ -545,7 +545,8 @@ "timeoutSeconds": -103588794, "periodSeconds": -1045704964, "successThreshold": 1089147958, - "failureThreshold": -1273036797 + "failureThreshold": -1273036797, + "terminationGracePeriodSeconds": 2787866729016106782 }, "readinessProbe": { "exec": { @@ -555,8 +556,9 @@ }, "httpGet": { "path": "205", - "port": 424236719, + "port": 859639931, "host": "206", + "scheme": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", "httpHeaders": [ { "name": "207", @@ -565,184 +567,188 @@ ] }, "tcpSocket": { - "port": -648954478, - "host": "209" + "port": "209", + "host": "210" }, - "initialDelaySeconds": 1170649416, - "timeoutSeconds": 893619181, - "periodSeconds": -1891134534, - "successThreshold": -1710454086, - "failureThreshold": 192146389 + "initialDelaySeconds": 1380874688, + "timeoutSeconds": -1018741501, + "periodSeconds": -674091068, + "successThreshold": -2061678740, + "failureThreshold": -495373547, + "terminationGracePeriodSeconds": -703684984628150402 }, "startupProbe": { "exec": { "command": [ - "210" + "211" ] }, "httpGet": { - "path": "211", - "port": -2112697830, - "host": "212", - "scheme": "Ŗȫ焗捏ĨFħ籘", + "path": "212", + "port": 1255169591, + "host": "213", + "scheme": "褎weLJèux", "httpHeaders": [ { - "name": "213", - "value": "214" + "name": "214", + "value": "215" } ] }, "tcpSocket": { - "port": -674091068, - "host": "215" + "port": "216", + "host": "217" }, - "initialDelaySeconds": -2061678740, - "timeoutSeconds": -495373547, - "periodSeconds": -163839428, - "successThreshold": 1912934380, - "failureThreshold": 1096174794 + "initialDelaySeconds": -1133499416, + "timeoutSeconds": 486195690, + "periodSeconds": 1157241180, + "successThreshold": -1810997540, + "failureThreshold": -1681029343, + "terminationGracePeriodSeconds": -6826008110504741173 }, "lifecycle": { "postStart": { "exec": { "command": [ - "216" + "218" ] }, "httpGet": { - "path": "217", - "port": "218", - "host": "219", - "scheme": "weLJèux榜VƋ", + "path": "219", + "port": "220", + "host": "221", + "scheme": "LLȊɞ-uƻ悖ȩ0Ƹ[Ęİ榌", "httpHeaders": [ { - "name": "220", - "value": "221" + "name": "222", + "value": "223" } ] }, "tcpSocket": { - "port": -1810997540, - "host": "222" + "port": "224", + "host": "225" } }, "preStop": { "exec": { "command": [ - "223" + "226" ] }, "httpGet": { - "path": "224", - "port": -2000048581, - "host": "225", - "scheme": "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę", + "path": "227", + "port": "228", + "host": "229", + "scheme": "懔%熷谟", "httpHeaders": [ { - "name": "226", - "value": "227" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "228", - "host": "229" + "port": -1920661051, + "host": "232" } } }, - "terminationMessagePath": "230", - "terminationMessagePolicy": "U髷裎$MVȟ@7飣奺Ȋ", - "imagePullPolicy": "ljʁ揆ɘȌ脾嚏吐ĠL", + "terminationMessagePath": "233", + "terminationMessagePolicy": "荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3", + "imagePullPolicy": "vt莭琽§ć\\ ïì«", "securityContext": { "capabilities": { "add": [ - "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0" + "枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F" ], "drop": [ - "Kʝ瘴I\\p[ħsĨɆâĺɗ" + "剂讼ɓȌʟni酛3Ɓ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "231", - "role": "232", - "type": "233", - "level": "234" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "235", - "gmsaCredentialSpec": "236", - "runAsUserName": "237" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -3442119660495017037, - "runAsGroup": 6974050994588811875, - "runAsNonRoot": true, + "runAsUser": -2000070193364862971, + "runAsGroup": -636584014972667630, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "A", + "procMount": "8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ", "seccompProfile": { - "type": "/ɸɎ R§耶FfBls3!", - "localhostProfile": "238" + "type": "w", + "localhostProfile": "241" } }, + "stdin": true, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "239", - "image": "240", + "name": "242", + "image": "243", "command": [ - "241" + "244" ], "args": [ - "242" + "245" ], - "workingDir": "243", + "workingDir": "246", "ports": [ { - "name": "244", - "hostPort": -720450949, - "containerPort": -630252364, - "protocol": "dz娝嘚庎D}埽uʎȺ眖R#yV'WK", - "hostIP": "245" + "name": "247", + "hostPort": 1752155096, + "containerPort": -1962065705, + "protocol": "¿", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "246", + "prefix": "249", "configMapRef": { - "name": "247", + "name": "250", "optional": false }, "secretRef": { - "name": "248", - "optional": true + "name": "251", + "optional": false } } ], "env": [ { - "name": "249", - "value": "250", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "251", - "fieldPath": "252" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "253", - "resource": "254", - "divisor": "668" + "containerName": "256", + "resource": "257", + "divisor": "142" }, "configMapKeyRef": { - "name": "255", - "key": "256", + "name": "258", + "key": "259", "optional": false }, "secretKeyRef": { - "name": "257", - "key": "258", + "name": "260", + "key": "261", "optional": false } } @@ -750,505 +756,509 @@ ], "resources": { "limits": { - "輓Ɔȓ蹣ɐǛv+8": "375" + "ǩ": "957" }, "requests": { - "[颐o啛更偢ɇ": "21" + "Ɔȓ蹣ɐǛv+8Ƥ熪": "951" } }, "volumeMounts": [ { - "name": "259", - "readOnly": true, - "mountPath": "260", - "subPath": "261", - "mountPropagation": "+", - "subPathExpr": "262" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "啛更", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "263", - "devicePath": "264" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "265" + "268" ] }, "httpGet": { - "path": "266", - "port": -743369977, - "host": "267", - "scheme": "\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4", + "path": "269", + "port": "270", + "host": "271", + "scheme": "Ů+朷Ǝ膯ljVX1虊", "httpHeaders": [ { - "name": "268", - "value": "269" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -1224991707, - "host": "270" + "port": -979584143, + "host": "274" }, - "initialDelaySeconds": 887398685, - "timeoutSeconds": -612420031, - "periodSeconds": -1139949896, - "successThreshold": 1274622498, - "failureThreshold": -179937987 + "initialDelaySeconds": -1748648882, + "timeoutSeconds": -239843014, + "periodSeconds": 1381579966, + "successThreshold": -1418092595, + "failureThreshold": -1538905728, + "terminationGracePeriodSeconds": -1867540518204155332 }, "readinessProbe": { "exec": { "command": [ - "271" + "275" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ĵ", + "path": "276", + "port": "277", + "host": "278", + "scheme": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "279", + "value": "280" } ] }, "tcpSocket": { - "port": 1224868165, - "host": "277" + "port": 1574967021, + "host": "281" }, - "initialDelaySeconds": 582041100, - "timeoutSeconds": 509188266, - "periodSeconds": -940514142, - "successThreshold": 1574967021, - "failureThreshold": -244758593 + "initialDelaySeconds": -244758593, + "timeoutSeconds": 591440053, + "periodSeconds": 104069700, + "successThreshold": -331594625, + "failureThreshold": 888935190, + "terminationGracePeriodSeconds": 7193904584276385338 }, "startupProbe": { "exec": { "command": [ - "278" + "282" ] }, "httpGet": { - "path": "279", - "port": "280", - "host": "281", - "scheme": "腩墺Ò媁荭gw忊|E剒蔞|表徶", + "path": "283", + "port": "284", + "host": "285", + "scheme": "î.Ȏ蝪ʜ5遰=", "httpHeaders": [ { - "name": "282", - "value": "283" + "name": "286", + "value": "287" } ] }, "tcpSocket": { - "port": "284", - "host": "285" + "port": 834105836, + "host": "288" }, - "initialDelaySeconds": -1784617397, - "timeoutSeconds": 1941923625, - "periodSeconds": 59244165, - "successThreshold": -614161319, - "failureThreshold": 452673549 + "initialDelaySeconds": -1462219068, + "timeoutSeconds": -370386363, + "periodSeconds": 1714588921, + "successThreshold": -1246371817, + "failureThreshold": 617318981, + "terminationGracePeriodSeconds": 1856677271350902065 }, "lifecycle": { "postStart": { "exec": { "command": [ - "286" + "289" ] }, "httpGet": { - "path": "287", - "port": "288", - "host": "289", - "scheme": "簳°Ļǟi\u0026皥贸", + "path": "290", + "port": -282193676, + "host": "291", + "scheme": "Ļǟi\u0026", "httpHeaders": [ { - "name": "290", - "value": "291" + "name": "292", + "value": "293" } ] }, "tcpSocket": { - "port": "292", - "host": "293" + "port": "294", + "host": "295" } }, "preStop": { "exec": { "command": [ - "294" + "296" ] }, "httpGet": { - "path": "295", - "port": -260262954, - "host": "296", - "scheme": "ŵ橨鬶l獕;跣H", + "path": "297", + "port": "298", + "host": "299", + "scheme": "垾现葢ŵ橨", "httpHeaders": [ { - "name": "297", - "value": "298" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": -1164530482, - "host": "299" + "port": -1312425203, + "host": "302" } } }, - "terminationMessagePath": "300", - "terminationMessagePolicy": "媀瓄\u0026翜舞拉Œɥ颶妧Ö闊", - "imagePullPolicy": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", + "terminationMessagePath": "303", + "terminationMessagePolicy": ";跣Hǝcw媀瓄\u0026", + "imagePullPolicy": "丟×x锏ɟ4Ǒ", "securityContext": { "capabilities": { "add": [ - "酊龨δ摖ȱğ_\u003c" + "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ" ], "drop": [ - "ëJ橈'琕鶫:顇ə娯Ȱ囌" + ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "301", - "role": "302", - "type": "303", - "level": "304" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "305", - "gmsaCredentialSpec": "306", - "runAsUserName": "307" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": 2471155705902100229, - "runAsGroup": -881225351755256028, + "runAsUser": 5620818514944490121, + "runAsGroup": -499179336506637450, "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "?Ǻ鱎ƙ;Nŕ璻Ji", + "procMount": "ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻", "seccompProfile": { - "type": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻", - "localhostProfile": "308" + "type": "ih亏yƕ丆録²", + "localhostProfile": "311" } }, + "stdin": true, "tty": true } ], "ephemeralContainers": [ { - "name": "309", - "image": "310", + "name": "312", + "image": "313", "command": [ - "311" + "314" ], "args": [ - "312" + "315" ], - "workingDir": "313", + "workingDir": "316", "ports": [ { - "name": "314", - "hostPort": -1365158918, - "containerPort": -305362540, - "protocol": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", - "hostIP": "315" + "name": "317", + "hostPort": 507384491, + "containerPort": -1117254382, + "protocol": "趐囨鏻砅邻爥蹔ŧOǨ", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "316", + "prefix": "319", "configMapRef": { - "name": "317", + "name": "320", "optional": true }, "secretRef": { - "name": "318", + "name": "321", "optional": true } } ], "env": [ { - "name": "319", - "value": "320", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "321", - "fieldPath": "322" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "323", - "resource": "324", - "divisor": "9" + "containerName": "326", + "resource": "327", + "divisor": "149" }, "configMapKeyRef": { - "name": "325", - "key": "326", - "optional": false + "name": "328", + "key": "329", + "optional": true }, "secretKeyRef": { - "name": "327", - "key": "328", - "optional": false + "name": "330", + "key": "331", + "optional": true } } } ], "resources": { "limits": { - "{WOŭW灬pȭCV擭銆jʒǚ鍰": "212" + "幩šeSvEȤƏ埮pɵ": "426" }, "requests": { - "| 鞤ɱďW賁Ěɭɪǹ0衷,": "227" + "Ȗ|ʐşƧ諔迮ƙIJ嘢4": "422" } }, "volumeMounts": [ { - "name": "329", - "readOnly": true, - "mountPath": "330", - "subPath": "331", - "mountPropagation": "Bn(fǂǢ曣ŋayåe躒訙Ǫ", - "subPathExpr": "332" + "name": "332", + "mountPath": "333", + "subPath": "334", + "mountPropagation": "", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "333", - "devicePath": "334" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "335" + "338" ] }, "httpGet": { - "path": "336", - "port": "337", - "host": "338", - "scheme": "uE增猍ǵ xǨŴ", + "path": "339", + "port": "340", + "host": "341", + "scheme": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎", "httpHeaders": [ { - "name": "339", - "value": "340" + "name": "342", + "value": "343" } ] }, "tcpSocket": { - "port": 2112112129, - "host": "341" + "port": "344", + "host": "345" }, - "initialDelaySeconds": 528603974, - "timeoutSeconds": -342387625, - "periodSeconds": 1862455894, - "successThreshold": 1080918702, - "failureThreshold": -239264629 + "initialDelaySeconds": -200074798, + "timeoutSeconds": 556036216, + "periodSeconds": -1838917931, + "successThreshold": -1563928252, + "failureThreshold": -302933400, + "terminationGracePeriodSeconds": 7094149050088640176 }, "readinessProbe": { "exec": { "command": [ - "342" + "346" ] }, "httpGet": { - "path": "343", - "port": -186532794, - "host": "344", - "scheme": "ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė", + "path": "347", + "port": -832681001, + "host": "348", + "scheme": "h趭", "httpHeaders": [ { - "name": "345", - "value": "346" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "347", - "host": "348" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -751455207, - "timeoutSeconds": -894026356, - "periodSeconds": 646133945, - "successThreshold": -506710067, - "failureThreshold": -47594442 + "initialDelaySeconds": -1969828011, + "timeoutSeconds": -1186720090, + "periodSeconds": -748525373, + "successThreshold": 805162379, + "failureThreshold": 1486914884, + "terminationGracePeriodSeconds": -2753079965660681160 }, "startupProbe": { "exec": { "command": [ - "349" + "353" ] }, "httpGet": { - "path": "350", - "port": -1894326843, - "host": "351", - "scheme": "ƛ^輅9ɛ棕ƈ眽炊礫Ƽ¨I", + "path": "354", + "port": "355", + "host": "356", + "scheme": "壶ƵfȽÃ茓", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": 1359309446, + "host": "359" }, - "initialDelaySeconds": -106856189, - "timeoutSeconds": -2078917333, - "periodSeconds": 86851677, - "successThreshold": -404911753, - "failureThreshold": 890223061 + "initialDelaySeconds": -647531549, + "timeoutSeconds": -733444015, + "periodSeconds": 1737172479, + "successThreshold": -767058113, + "failureThreshold": 1223564938, + "terminationGracePeriodSeconds": 5333033627167868167 }, "lifecycle": { "postStart": { "exec": { "command": [ - "356" + "360" ] }, "httpGet": { - "path": "357", - "port": -468215285, - "host": "358", - "scheme": "ʆɞȥ}礤铟怖ý萜Ǖc8", + "path": "361", + "port": "362", + "host": "363", + "scheme": "賞ǧĒzŔ瘍N", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "364", + "value": "365" } ] }, "tcpSocket": { - "port": "361", - "host": "362" + "port": -531787516, + "host": "366" } }, "preStop": { "exec": { "command": [ - "363" + "367" ] }, "httpGet": { - "path": "364", - "port": 293042649, - "host": "365", - "scheme": "ǔvÄÚ×p鬷m罂o3ǰ廋i乳'", + "path": "368", + "port": -824445204, + "host": "369", + "scheme": "泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "370", + "value": "371" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "372", + "host": "373" } } }, - "terminationMessagePath": "370", - "terminationMessagePolicy": "ɻ;襕ċ桉桃喕", - "imagePullPolicy": "熀ďJZ漤", + "terminationMessagePath": "374", + "terminationMessagePolicy": "礫Ƽ¨Ix糂腂ǂǚŜEu", + "imagePullPolicy": "I滞廬耐鷞焬CQm坊柩劄奼[", "securityContext": { "capabilities": { "add": [ - "Ů\u003cy鯶縆łƑ[澔" + "ĝ®EĨǔvÄÚ×p鬷" ], "drop": [ - "JŵǤ" + "罂o3ǰ廋i乳'ȘUɻ;襕ċ桉桃" ] }, "privileged": true, "seLinuxOptions": { - "user": "371", - "role": "372", - "type": "373", - "level": "374" + "user": "375", + "role": "376", + "type": "377", + "level": "378" }, "windowsOptions": { - "gmsaCredentialSpecName": "375", - "gmsaCredentialSpec": "376", - "runAsUserName": "377" + "gmsaCredentialSpecName": "379", + "gmsaCredentialSpec": "380", + "runAsUserName": "381" }, - "runAsUser": 296399212346260204, - "runAsGroup": 1571605531283019612, + "runAsUser": 2803095162614904173, + "runAsGroup": -1207159809527615562, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "\u0026疀", + "procMount": "-紑浘牬釼aTGÒ鵌", "seccompProfile": { - "type": "N翾", - "localhostProfile": "378" + "type": "3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶", + "localhostProfile": "382" } }, - "tty": true, - "targetContainerName": "379" + "stdin": true, + "targetContainerName": "383" } ], - "restartPolicy": "虓氙磂tńČȷǻ.wȏâ磠Ƴ崖", - "terminationGracePeriodSeconds": 548095969725247258, - "activeDeadlineSeconds": -4777827725116017226, - "dnsPolicy": "仁", + "restartPolicy": "ȟP", + "terminationGracePeriodSeconds": -7559660744894799169, + "activeDeadlineSeconds": 6210194589539369395, + "dnsPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "nodeSelector": { - "380": "381" + "384": "385" }, - "serviceAccountName": "382", - "serviceAccount": "383", + "serviceAccountName": "386", + "serviceAccount": "387", "automountServiceAccountToken": false, - "nodeName": "384", + "nodeName": "388", "hostNetwork": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "385", - "role": "386", - "type": "387", - "level": "388" + "user": "389", + "role": "390", + "type": "391", + "level": "392" }, "windowsOptions": { - "gmsaCredentialSpecName": "389", - "gmsaCredentialSpec": "390", - "runAsUserName": "391" + "gmsaCredentialSpecName": "393", + "gmsaCredentialSpec": "394", + "runAsUserName": "395" }, - "runAsUser": 8611382659007276093, - "runAsGroup": 9030580185316549656, - "runAsNonRoot": true, + "runAsUser": 5115783808026178112, + "runAsGroup": -2515253323988521837, + "runAsNonRoot": false, "supplementalGroups": [ - 5544256333691286734 + -6267717930337655515 ], - "fsGroup": 5115783808026178112, + "fsGroup": -3072254610148392250, "sysctls": [ { - "name": "392", - "value": "393" + "name": "396", + "value": "397" } ], - "fsGroupChangePolicy": "繽敮ǰ詀ǿ忀oɎƺ", + "fsGroupChangePolicy": "q櫞繡", "seccompProfile": { - "type": "肄$鬬", - "localhostProfile": "394" + "type": "翃ɾ氒ĺʈʫ羶", + "localhostProfile": "398" } }, "imagePullSecrets": [ { - "name": "395" + "name": "399" } ], - "hostname": "396", - "subdomain": "397", + "hostname": "400", + "subdomain": "401", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1256,19 +1266,19 @@ { "matchExpressions": [ { - "key": "398", - "operator": "剹ƊF豎穜姰l咑耖p^", + "key": "402", + "operator": "t{Eɾ敹Ȯ-湷D", "values": [ - "399" + "403" ] } ], "matchFields": [ { - "key": "400", - "operator": "", + "key": "404", + "operator": "ȿ醏g遧", "values": [ - "401" + "405" ] } ] @@ -1277,23 +1287,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -695011106, + "weight": -1649234654, "preference": { "matchExpressions": [ { - "key": "402", - "operator": "秮òƬɸĻo", + "key": "406", + "operator": "Ƌʙcx赮ǒđ\u003e*", "values": [ - "403" + "407" ] } ], "matchFields": [ { - "key": "404", - "operator": "cx赮ǒđ\u003e*劶?j", + "key": "408", + "operator": "铳s44矕Ƈè*鑏=", "values": [ - "405" + "409" ] } ] @@ -1306,29 +1316,29 @@ { "labelSelector": { "matchLabels": { - "3--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-D": "7r-7" + "0-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cr/M7": "1-U_--56-.7D.3_KPg___KA-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L2" }, "matchExpressions": [ { - "key": "3-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....70", - "operator": "NotIn", + "key": "Cv2.5p_..Y-.wg_b", + "operator": "In", "values": [ - "k.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..u" + "mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33" ] } ] }, "namespaces": [ - "412" + "416" ], - "topologyKey": "413", + "topologyKey": "417", "namespaceSelector": { "matchLabels": { - "p.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b1c": "b_p-y.eQZ9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-V" + "d-5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___Y": "7.tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gw_-z_659GE.l_.23-S" }, "matchExpressions": [ { - "key": "0vo5byp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-20s4.u7p--3zm-lx300w-tj-35840-w4g-27-8/U.___06.eqk5E_-4-.XH-.k.7.C", + "key": "e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5", "operator": "DoesNotExist" } ] @@ -1337,31 +1347,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1735833803, + "weight": -334387631, "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" + "nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A": "BM.6-.Y_72-_--p7" }, "matchExpressions": [ { - "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr", + "key": "gi--7-nt-23h-4z-21-sap--h--qh.l4-03a68u7-l---8x7-l--b-9-u--17---u7-gl7814ei-07shtq-p/4D-r.-B", "operator": "DoesNotExist" } ] }, "namespaces": [ - "426" + "430" ], - "topologyKey": "427", + "topologyKey": "431", "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" + "11.q8-4-k-2-08vc--4-7hdume/7Q.-_t--O.3L.2": "7G79.3bU_._nV34G._--u.._.105-4_ed-f" }, "matchExpressions": [ { - "key": "C-_20", - "operator": "Exists" + "key": "o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_g0", + "operator": "NotIn", + "values": [ + "kn_9n.p.o" + ] } ] } @@ -1374,30 +1387,27 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "r1W7": "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zKp" }, "matchExpressions": [ { - "key": "4b699/B9n.2", - "operator": "In", - "values": [ - "MM7-.e.x" - ] + "key": "t.7-1n13sx82-cx-428u2j--u/4.Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89z", + "operator": "Exists" } ] }, "namespaces": [ - "440" + "444" ], - "topologyKey": "441", + "topologyKey": "445", "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" + "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo": "Mqp..__._-J_-fk3-_j.133eT_2_Y" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "51-i-d-----9---063-qm-j-3wc89k-0-57z4063--4/rBQ.u", + "operator": "Exists" } ] } @@ -1405,33 +1415,33 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": -357359630, "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" + "z336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_.._._a-N": "X_-_._.3l-_86_u2-7_._qZ" }, "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", + "key": "U__L.KH6K.RwsfI_j", + "operator": "In", "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" + "" ] } ] }, "namespaces": [ - "454" + "458" ], - "topologyKey": "455", + "topologyKey": "459", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "6b77-f8--tf---7r88-1--p61d/9_Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gb": "Y" }, "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": "o_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O97", "operator": "DoesNotExist" } ] @@ -1441,89 +1451,88 @@ ] } }, - "schedulerName": "462", + "schedulerName": "466", "tolerations": [ { - "key": "463", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "464", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "467", + "value": "468", + "effect": "n3'T砳1\\İ塄", + "tolerationSeconds": 7716735516543221297 } ], "hostAliases": [ { - "ip": "465", + "ip": "469", "hostnames": [ - "466" + "470" ] } ], - "priorityClassName": "467", - "priority": -1756088332, + "priorityClassName": "471", + "priority": 2026789529, "dnsConfig": { "nameservers": [ - "468" + "472" ], "searches": [ - "469" + "473" ], "options": [ { - "name": "470", - "value": "471" + "name": "474", + "value": "475" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "I芩嗎競ɵd魶暐f髓沨" } ], - "runtimeClassName": "472", + "runtimeClassName": "476", "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "preemptionPolicy": "", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "Ĵ诛ª韷v": "537" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "473", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -447517325, + "topologyKey": "477", + "whenUnsatisfiable": "値å镮", "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" + "2tm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f56/v__-Zvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__g": "W84-M-_-U...s.K" }, "matchExpressions": [ { - "key": "KTlO.__0PX", - "operator": "In", + "key": "P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h", + "operator": "NotIn", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "m_-q9.N8._--M-0R.-I-_23L_J49t-X..j1Q1.A-N.--_63-N2" ] } ] } } ], - "setHostnameAsFQDN": false + "setHostnameAsFQDN": true } } }, "status": { - "replicas": -1350756342, - "fullyLabeledReplicas": 131165488, - "readyReplicas": 1801862647, - "availableReplicas": -212999359, - "observedGeneration": 6343420286878457918, + "replicas": -1196967581, + "fullyLabeledReplicas": 1536133995, + "readyReplicas": -2018539527, + "availableReplicas": 655071461, + "observedGeneration": -7699725135993161935, "conditions": [ { - "type": "", - "status": "ʋǞbȫ魙Ōȇ", - "lastTransitionTime": "2443-02-01T11:09:03Z", - "reason": "480", - "message": "481" + "type": "š^劶", + "status": "ƕ蟶ŃēÖ釐駆Ŕƿe魛ĩ", + "lastTransitionTime": "2427-08-17T22:26:07Z", + "reason": "484", + "message": "485" } ] } 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 509f1783d4e8..d46ba218c993 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 ae214c64cbb2..6fad3e05d2ff 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 @@ -65,483 +65,488 @@ spec: selfLink: "24" uid: '*齧獚敆Ȏțêɘ' spec: - activeDeadlineSeconds: -4777827725116017226 + activeDeadlineSeconds: 6210194589539369395 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "402" - operator: 秮òƬɸĻo + - key: "406" + operator: Ƌʙcx赮ǒđ>* values: - - "403" + - "407" matchFields: - - key: "404" - operator: cx赮ǒđ>*劶?j + - key: "408" + operator: 铳s44矕Ƈè*鑏= values: - - "405" - weight: -695011106 + - "409" + weight: -1649234654 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "398" - operator: 剹ƊF豎穜姰l咑耖p^ + - key: "402" + operator: t{Eɾ敹Ȯ-湷D values: - - "399" + - "403" matchFields: - - key: "400" - operator: "" + - key: "404" + operator: ȿ醏g遧 values: - - "401" + - "405" 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 + - key: gi--7-nt-23h-4z-21-sap--h--qh.l4-03a68u7-l---8x7-l--b-9-u--17---u7-gl7814ei-07shtq-p/4D-r.-B 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 + ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A + : BM.6-.Y_72-_--p7 namespaceSelector: matchExpressions: - - key: C-_20 - operator: Exists + - key: o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_g0 + operator: NotIn + values: + - kn_9n.p.o 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 + 11.q8-4-k-2-08vc--4-7hdume/7Q.-_t--O.3L.2: 7G79.3bU_._nV34G._--u.._.105-4_ed-f namespaces: - - "426" - topologyKey: "427" - weight: -1735833803 + - "430" + topologyKey: "431" + weight: -334387631 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 3-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....70 - operator: NotIn + - key: Cv2.5p_..Y-.wg_b + operator: In values: - - k.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..u + - mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 matchLabels: - 3--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-D: 7r-7 + 0-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cr/M7: 1-U_--56-.7D.3_KPg___KA-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L2 namespaceSelector: matchExpressions: - - key: 0vo5byp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-20s4.u7p--3zm-lx300w-tj-35840-w4g-27-8/U.___06.eqk5E_-4-.XH-.k.7.C + - key: e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5 operator: DoesNotExist matchLabels: - p.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b1c: b_p-y.eQZ9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-V + d-5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___Y: 7.tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gw_-z_659GE.l_.23-S namespaces: - - "412" - topologyKey: "413" + - "416" + topologyKey: "417" 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 + - key: U__L.KH6K.RwsfI_j + operator: In 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 + z336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_.._._a-N: X_-_._.3l-_86_u2-7_._qZ 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: o_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O97 operator: DoesNotExist matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + 6b77-f8--tf---7r88-1--p61d/9_Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gb: "Y" namespaces: - - "454" - topologyKey: "455" - weight: 1131487788 + - "458" + topologyKey: "459" + weight: -357359630 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 - operator: In - values: - - MM7-.e.x + - key: t.7-1n13sx82-cx-428u2j--u/4.Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89z + operator: Exists matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + r1W7: B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zKp namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: 51-i-d-----9---063-qm-j-3wc89k-0-57z4063--4/rBQ.u + operator: Exists 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 + 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo: Mqp..__._-J_-fk3-_j.133eT_2_Y namespaces: - - "440" - topologyKey: "441" + - "444" + topologyKey: "445" automountServiceAccountToken: false containers: - args: - - "242" + - "245" command: - - "241" + - "244" env: - - name: "249" - value: "250" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "256" - name: "255" + key: "259" + name: "258" optional: false fieldRef: - apiVersion: "251" - fieldPath: "252" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "253" - divisor: "668" - resource: "254" + containerName: "256" + divisor: "142" + resource: "257" secretKeyRef: - key: "258" - name: "257" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "247" + name: "250" optional: false - prefix: "246" + prefix: "249" secretRef: - name: "248" - optional: true - image: "240" - imagePullPolicy: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ + name: "251" + optional: false + image: "243" + imagePullPolicy: 丟×x锏ɟ4Ǒ lifecycle: postStart: exec: command: - - "286" + - "289" httpGet: - host: "289" + host: "291" httpHeaders: - - name: "290" - value: "291" - path: "287" - port: "288" - scheme: 簳°Ļǟi&皥贸 + - name: "292" + value: "293" + path: "290" + port: -282193676 + scheme: Ļǟi& tcpSocket: - host: "293" - port: "292" + host: "295" + port: "294" preStop: exec: command: - - "294" + - "296" httpGet: - host: "296" + host: "299" httpHeaders: - - name: "297" - value: "298" - path: "295" - port: -260262954 - scheme: ŵ橨鬶l獕;跣H + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 垾现葢ŵ橨 tcpSocket: - host: "299" - port: -1164530482 + host: "302" + port: -1312425203 livenessProbe: exec: command: - - "265" - failureThreshold: -179937987 + - "268" + failureThreshold: -1538905728 httpGet: - host: "267" + host: "271" httpHeaders: - - name: "268" - value: "269" - path: "266" - port: -743369977 - scheme: '>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4' - initialDelaySeconds: 887398685 - periodSeconds: -1139949896 - successThreshold: 1274622498 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: Ů+朷Ǝ膯ljVX1虊 + initialDelaySeconds: -1748648882 + periodSeconds: 1381579966 + successThreshold: -1418092595 tcpSocket: - host: "270" - port: -1224991707 - timeoutSeconds: -612420031 - name: "239" + host: "274" + port: -979584143 + terminationGracePeriodSeconds: -1867540518204155332 + timeoutSeconds: -239843014 + name: "242" ports: - - containerPort: -630252364 - hostIP: "245" - hostPort: -720450949 - name: "244" - protocol: dz娝嘚庎D}埽uʎȺ眖R#yV'WK + - containerPort: -1962065705 + hostIP: "248" + hostPort: 1752155096 + name: "247" + protocol: ¿ readinessProbe: exec: command: - - "271" - failureThreshold: -244758593 + - "275" + failureThreshold: 888935190 httpGet: - host: "274" + host: "278" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ĵ - initialDelaySeconds: 582041100 - periodSeconds: -940514142 - successThreshold: 1574967021 + - name: "279" + value: "280" + path: "276" + port: "277" + scheme: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L* + initialDelaySeconds: -244758593 + periodSeconds: 104069700 + successThreshold: -331594625 tcpSocket: - host: "277" - port: 1224868165 - timeoutSeconds: 509188266 + host: "281" + port: 1574967021 + terminationGracePeriodSeconds: 7193904584276385338 + timeoutSeconds: 591440053 resources: limits: - 輓Ɔȓ蹣ɐǛv+8: "375" + ǩ: "957" requests: - '[颐o啛更偢ɇ': "21" + Ɔȓ蹣ɐǛv+8Ƥ熪: "951" securityContext: allowPrivilegeEscalation: true capabilities: add: - - 酊龨δ摖ȱğ_< + - ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ drop: - - ëJ橈'琕鶫:顇ə娯Ȱ囌 - privileged: true - procMount: ?Ǻ鱎ƙ;Nŕ璻Ji + - ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' + privileged: false + procMount: ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻 readOnlyRootFilesystem: true - runAsGroup: -881225351755256028 + runAsGroup: -499179336506637450 runAsNonRoot: true - runAsUser: 2471155705902100229 + runAsUser: 5620818514944490121 seLinuxOptions: - level: "304" - role: "302" - type: "303" - user: "301" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "308" - type: 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻 + localhostProfile: "311" + type: ih亏yƕ丆録² windowsOptions: - gmsaCredentialSpec: "306" - gmsaCredentialSpecName: "305" - runAsUserName: "307" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "278" - failureThreshold: 452673549 + - "282" + failureThreshold: 617318981 httpGet: - host: "281" - httpHeaders: - - name: "282" - value: "283" - path: "279" - port: "280" - scheme: 腩墺Ò媁荭gw忊|E剒蔞|表徶 - initialDelaySeconds: -1784617397 - periodSeconds: 59244165 - successThreshold: -614161319 - tcpSocket: host: "285" + httpHeaders: + - name: "286" + value: "287" + path: "283" port: "284" - timeoutSeconds: 1941923625 - terminationMessagePath: "300" - terminationMessagePolicy: 媀瓄&翜舞拉Œɥ颶妧Ö闊 + scheme: î.Ȏ蝪ʜ5遰= + initialDelaySeconds: -1462219068 + periodSeconds: 1714588921 + successThreshold: -1246371817 + tcpSocket: + host: "288" + port: 834105836 + terminationGracePeriodSeconds: 1856677271350902065 + timeoutSeconds: -370386363 + stdin: true + terminationMessagePath: "303" + terminationMessagePolicy: ;跣Hǝcw媀瓄& tty: true volumeDevices: - - devicePath: "264" - name: "263" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "260" - mountPropagation: + - name: "259" - readOnly: true - subPath: "261" - subPathExpr: "262" - workingDir: "243" + - mountPath: "263" + mountPropagation: 啛更 + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "468" + - "472" options: - - name: "470" - value: "471" + - name: "474" + value: "475" searches: - - "469" - dnsPolicy: 仁 + - "473" + dnsPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 enableServiceLinks: true ephemeralContainers: - args: - - "312" + - "315" command: - - "311" + - "314" env: - - name: "319" - value: "320" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "326" - name: "325" - optional: false + key: "329" + name: "328" + optional: true fieldRef: - apiVersion: "321" - fieldPath: "322" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "323" - divisor: "9" - resource: "324" + containerName: "326" + divisor: "149" + resource: "327" secretKeyRef: - key: "328" - name: "327" - optional: false + key: "331" + name: "330" + optional: true envFrom: - configMapRef: - name: "317" + name: "320" optional: true - prefix: "316" + prefix: "319" secretRef: - name: "318" + name: "321" optional: true - image: "310" - imagePullPolicy: 熀ďJZ漤 + image: "313" + imagePullPolicy: I滞廬耐鷞焬CQm坊柩劄奼[ lifecycle: postStart: exec: command: - - "356" + - "360" httpGet: - host: "358" + host: "363" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -468215285 - scheme: ʆɞȥ}礤铟怖ý萜Ǖc8 + - name: "364" + value: "365" + path: "361" + port: "362" + scheme: 賞ǧĒzŔ瘍N tcpSocket: - host: "362" - port: "361" + host: "366" + port: -531787516 preStop: exec: command: - - "363" + - "367" httpGet: - host: "365" + host: "369" httpHeaders: - - name: "366" - value: "367" - path: "364" - port: 293042649 - scheme: ǔvÄÚ×p鬷m罂o3ǰ廋i乳' + - name: "370" + value: "371" + path: "368" + port: -824445204 + scheme: 泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ tcpSocket: - host: "369" - port: "368" + host: "373" + port: "372" livenessProbe: exec: command: - - "335" - failureThreshold: -239264629 + - "338" + failureThreshold: -302933400 httpGet: - host: "338" + host: "341" httpHeaders: - - name: "339" - value: "340" - path: "336" - port: "337" - scheme: uE增猍ǵ xǨŴ - initialDelaySeconds: 528603974 - periodSeconds: 1862455894 - successThreshold: 1080918702 + - name: "342" + value: "343" + path: "339" + port: "340" + scheme: ' 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎' + initialDelaySeconds: -200074798 + periodSeconds: -1838917931 + successThreshold: -1563928252 tcpSocket: - host: "341" - port: 2112112129 - timeoutSeconds: -342387625 - name: "309" + host: "345" + port: "344" + terminationGracePeriodSeconds: 7094149050088640176 + timeoutSeconds: 556036216 + name: "312" ports: - - containerPort: -305362540 - hostIP: "315" - hostPort: -1365158918 - name: "314" - protocol: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 + - containerPort: -1117254382 + hostIP: "318" + hostPort: 507384491 + name: "317" + protocol: 趐囨鏻砅邻爥蹔ŧOǨ readinessProbe: exec: command: - - "342" - failureThreshold: -47594442 + - "346" + failureThreshold: 1486914884 httpGet: - host: "344" + host: "348" httpHeaders: - - name: "345" - value: "346" - path: "343" - port: -186532794 - scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė - initialDelaySeconds: -751455207 - periodSeconds: 646133945 - successThreshold: -506710067 + - name: "349" + value: "350" + path: "347" + port: -832681001 + scheme: h趭 + initialDelaySeconds: -1969828011 + periodSeconds: -748525373 + successThreshold: 805162379 tcpSocket: - host: "348" - port: "347" - timeoutSeconds: -894026356 + host: "352" + port: "351" + terminationGracePeriodSeconds: -2753079965660681160 + timeoutSeconds: -1186720090 resources: limits: - '{WOŭW灬pȭCV擭銆jʒǚ鍰': "212" + 幩šeSvEȤƏ埮pɵ: "426" requests: - '| 鞤ɱďW賁Ěɭɪǹ0衷,': "227" + Ȗ|ʐşƧ諔迮ƙIJ嘢4: "422" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "309" - gmsaCredentialSpecName: "308" - runAsUserName: "310" + gmsaCredentialSpec: "315" + gmsaCredentialSpecName: "314" + runAsUserName: "316" startupProbe: exec: command: - - "282" - failureThreshold: 65094252 + - "287" + failureThreshold: 1447314009 httpGet: - host: "285" + host: "290" httpHeaders: - - name: "286" - value: "287" - path: "283" - port: "284" - scheme: ɜ瞍阎lğ Ņ#耗Ǚ( - initialDelaySeconds: -1934305215 - periodSeconds: 875971520 - successThreshold: 161338049 + - name: "291" + value: "292" + path: "288" + port: "289" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "288" - port: 317211081 - timeoutSeconds: -655359985 - stdinOnce: true - terminationMessagePath: "303" - terminationMessagePolicy: ɼ搳ǭ濑箨ʨIk( + host: "293" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + terminationMessagePath: "309" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "268" - name: "267" + - devicePath: "272" + name: "271" volumeMounts: - - mountPath: "264" - mountPropagation: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ - name: "263" + - mountPath: "268" + mountPropagation: ʠɜ瞍阎lğ Ņ + name: "267" readOnly: true - subPath: "265" - subPathExpr: "266" - workingDir: "247" + subPath: "269" + subPathExpr: "270" + workingDir: "251" dnsConfig: nameservers: - - "470" + - "475" options: - - name: "472" - value: "473" + - name: "477" + value: "478" searches: - - "471" - dnsPolicy: ȃ$|gɳ礬.b屏 - enableServiceLinks: true + - "476" + dnsPolicy: 錏嬮#ʐ + enableServiceLinks: false ephemeralContainers: - args: - - "315" + - "321" command: - - "314" + - "320" env: - - name: "322" - value: "323" + - name: "328" + value: "329" valueFrom: configMapKeyRef: - key: "329" - name: "328" - optional: false + key: "335" + name: "334" + optional: true fieldRef: - apiVersion: "324" - fieldPath: "325" + apiVersion: "330" + fieldPath: "331" resourceFieldRef: - containerName: "326" - divisor: "776" - resource: "327" + containerName: "332" + divisor: "684" + resource: "333" secretKeyRef: - key: "331" - name: "330" - optional: false + key: "337" + name: "336" + optional: true envFrom: - configMapRef: - name: "320" + name: "326" optional: true - prefix: "319" + prefix: "325" secretRef: - name: "321" + name: "327" optional: true - image: "313" - imagePullPolicy: 虀^背遻堣灭ƴɦ燻 + image: "319" + imagePullPolicy: ɧeʫį淓¯ lifecycle: postStart: exec: command: - - "359" + - "364" httpGet: - host: "361" + host: "366" httpHeaders: - - name: "362" - value: "363" - path: "360" - port: -839925309 - scheme: 歹s梊ɥʋ + - name: "367" + value: "368" + path: "365" + port: -1460652193 + scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ? tcpSocket: - host: "365" - port: "364" + host: "370" + port: "369" preStop: exec: command: - - "366" + - "371" httpGet: - host: "368" + host: "373" httpHeaders: - - name: "369" - value: "370" - path: "367" - port: -835196821 - scheme: '''蠨磼O_h盌3+Œ9两@8' + - name: "374" + value: "375" + path: "372" + port: 71524977 + scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷 tcpSocket: - host: "371" - port: -130408357 + host: "376" + port: -565041796 livenessProbe: exec: command: - - "338" - failureThreshold: 1017403804 + - "344" + failureThreshold: 1587036035 httpGet: - host: "340" + host: "346" httpHeaders: - - name: "341" - value: "342" - path: "339" - port: -1703472232 - scheme: ɎƺL肄$鬬$矐_敕ű嵞嬯t{Eɾ敹Ȯ - initialDelaySeconds: -1726456869 - periodSeconds: 789384689 - successThreshold: 436796816 + - name: "347" + value: "348" + path: "345" + port: -121675052 + scheme: W#ļǹʅŚO虀^ + initialDelaySeconds: -1959891996 + periodSeconds: 1475033091 + successThreshold: 1782790310 tcpSocket: - host: "344" - port: "343" - timeoutSeconds: 892837330 - name: "312" + host: "350" + port: "349" + terminationGracePeriodSeconds: 7560036535013464461 + timeoutSeconds: -1442230895 + name: "318" ports: - - containerPort: -902839620 - hostIP: "318" - hostPort: -1617422199 - name: "317" - protocol: 縆łƑ[澔槃JŵǤ桒ɴ鉂W + - containerPort: -651405950 + hostIP: "324" + hostPort: 1805682547 + name: "323" + protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07 readinessProbe: exec: command: - - "345" - failureThreshold: -1836690542 + - "351" + failureThreshold: 408029351 httpGet: - host: "347" + host: "353" httpHeaders: - - name: "348" - value: "349" - path: "346" - port: 1290315514 - scheme: 廤 - initialDelaySeconds: 307856269 - periodSeconds: 492351478 - successThreshold: 983624601 + - name: "354" + value: "355" + path: "352" + port: -1744546613 + scheme: ʓɻŊ + initialDelaySeconds: 1586122127 + periodSeconds: 781203691 + successThreshold: -216440055 tcpSocket: - host: "351" - port: "350" - timeoutSeconds: -1072116268 + host: "356" + port: -259047269 + terminationGracePeriodSeconds: 5450105809027610853 + timeoutSeconds: -1813456856 resources: limits: - ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«: "274" + 蠨磼O_h盌3+Œ9两@8Byß: "111" requests: - 仁: "342" + ɃŒ: "451" securityContext: allowPrivilegeEscalation: true capabilities: add: - - Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh + - ƛ忀z委>,趐V曡88 u怞荊ù drop: - - 颉h - privileged: false - procMount: 殚篎3o8[y + - 8緔Tj§E蓋Cȗä2 ɲ± + privileged: true + procMount: Ş襵樞úʥ銀 readOnlyRootFilesystem: true - runAsGroup: 4010419783586555910 - runAsNonRoot: true - runAsUser: -6458893750559270292 + runAsGroup: -7297536356638221066 + runAsNonRoot: false + runAsUser: -4564863616644509171 seLinuxOptions: - level: "376" - role: "374" - type: "375" - user: "373" + level: "381" + role: "379" + type: "380" + user: "378" seccompProfile: - localhostProfile: "380" - type: t(ȗŜŲ&洪y儕lmòɻŶJ詢QǾɁ + localhostProfile: "385" + type: ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧 windowsOptions: - gmsaCredentialSpec: "378" - gmsaCredentialSpecName: "377" - runAsUserName: "379" + gmsaCredentialSpec: "383" + gmsaCredentialSpecName: "382" + runAsUserName: "384" startupProbe: exec: command: - - "352" - failureThreshold: -1238148960 + - "357" + failureThreshold: 902204699 httpGet: - host: "355" + host: "359" httpHeaders: - - name: "356" - value: "357" - path: "353" - port: "354" - scheme: 職铳s44矕Ƈè*鑏='ʨ|Ǔ - initialDelaySeconds: -1333877527 - periodSeconds: 1972286304 - successThreshold: -2067214763 + - name: "360" + value: "361" + path: "358" + port: -5241849 + scheme: '}颉hȱɷȰW' + initialDelaySeconds: 636493142 + periodSeconds: 420595064 + successThreshold: 1195176401 tcpSocket: - host: "358" - port: 718799934 - timeoutSeconds: -1452767599 + host: "363" + port: "362" + terminationGracePeriodSeconds: 9196919020604133323 + timeoutSeconds: -192358697 stdin: true - stdinOnce: true - targetContainerName: "381" - terminationMessagePath: "372" - terminationMessagePolicy: 讪Ă2讅缔m葰賦迾娙ƴ4虵p蓋沥7uP + targetContainerName: "386" + terminationMessagePath: "377" + terminationMessagePolicy: Ƭ婦d tty: true volumeDevices: - - devicePath: "337" - name: "336" + - devicePath: "343" + name: "342" volumeMounts: - - mountPath: "333" - mountPropagation: l敷斢杧ż鯀1'鸔ɧWǘ炙B - name: "332" - subPath: "334" - subPathExpr: "335" - workingDir: "316" + - mountPath: "339" + mountPropagation: 葰賦 + name: "338" + readOnly: true + subPath: "340" + subPathExpr: "341" + workingDir: "322" hostAliases: - hostnames: - - "468" - ip: "467" - hostNetwork: true + - "473" + ip: "472" + hostIPC: true hostPID: true - hostname: "398" + hostname: "403" imagePullSecrets: - - name: "397" + - name: "402" initContainers: - args: - "178" @@ -585,38 +589,38 @@ spec: name: "184" optional: true image: "176" - imagePullPolicy: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:' + imagePullPolicy: ǵɐ鰥Z lifecycle: postStart: exec: command: - - "221" + - "222" httpGet: - host: "224" + host: "225" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 偯J僳徥淳4 + - name: "226" + value: "227" + path: "223" + port: "224" + scheme: 鰔澝qV訆ƎżŧL²sNƗ¸ tcpSocket: - host: "227" - port: -1421951296 + host: "229" + port: "228" preStop: exec: command: - - "228" + - "230" httpGet: - host: "230" + host: "233" httpHeaders: - - name: "231" - value: "232" - path: "229" - port: -1856061695 - scheme: Œɥ颶妧Ö闊 鰔澝qV訆Ǝ + - name: "234" + value: "235" + path: "231" + port: "232" + scheme: δ摖 tcpSocket: - host: "233" - port: 509813083 + host: "237" + port: "236" livenessProbe: exec: command: @@ -636,6 +640,7 @@ spec: tcpSocket: host: "207" port: -1761398388 + terminationGracePeriodSeconds: 2001337664780390084 timeoutSeconds: -438588982 name: "175" ports: @@ -648,22 +653,23 @@ spec: exec: command: - "208" - failureThreshold: 1533365989 + failureThreshold: -1314967760 httpGet: host: "210" httpHeaders: - name: "211" value: "212" path: "209" - port: 1714588921 - scheme: Ư貾 - initialDelaySeconds: -552281772 - periodSeconds: 383015301 - successThreshold: -1717997927 + port: -614161319 + scheme: Ȩ<6鄰簳°Ļǟi& + initialDelaySeconds: 233282513 + periodSeconds: 1313273370 + successThreshold: -1296830577 tcpSocket: host: "214" port: "213" - timeoutSeconds: -677617960 + terminationGracePeriodSeconds: 5043322816247327651 + timeoutSeconds: -518330919 resources: limits: 朷Ǝ膯ljVX1虊谇: "279" @@ -673,48 +679,50 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - "" + - DÒȗÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ drop: - - Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + - H鯂²静ƲǦŐnj汰8ŕİi騎C"6 privileged: false - procMount: 丆 - readOnlyRootFilesystem: true - runAsGroup: -545284475172904979 - runAsNonRoot: false - runAsUser: 5431518803727886665 + procMount: 弢ȹ均i绝5哇芆斩ìh4Ɋ + readOnlyRootFilesystem: false + runAsGroup: 6901713258562004024 + runAsNonRoot: true + runAsUser: 9148233193771851687 seLinuxOptions: - level: "238" - role: "236" - type: "237" - user: "235" + level: "242" + role: "240" + type: "241" + user: "239" seccompProfile: - localhostProfile: "242" - type: ²Ŏ)/灩聋3趐囨 + localhostProfile: "246" + type: Ȗ|ʐşƧ諔迮ƙIJ嘢4 windowsOptions: - gmsaCredentialSpec: "240" - gmsaCredentialSpecName: "239" - runAsUserName: "241" + gmsaCredentialSpec: "244" + gmsaCredentialSpecName: "243" + runAsUserName: "245" startupProbe: exec: command: - "215" - failureThreshold: -1928016742 + failureThreshold: 1909548849 httpGet: - host: "217" + host: "218" httpHeaders: - - name: "218" - value: "219" + - name: "219" + value: "220" path: "216" - port: -2121788927 - initialDelaySeconds: 1313273370 - periodSeconds: -1314967760 - successThreshold: 1174240097 + port: "217" + scheme: 队偯J僳徥淳4揻 + initialDelaySeconds: -1244119841 + periodSeconds: 348370746 + successThreshold: 468369166 tcpSocket: - host: "220" - port: -518330919 - timeoutSeconds: -1296830577 - terminationMessagePath: "234" - terminationMessagePolicy: ²sNƗ¸g + host: "221" + port: 878005329 + terminationGracePeriodSeconds: 6410850623145248813 + timeoutSeconds: 1235694147 + terminationMessagePath: "238" + terminationMessagePolicy: _<ǬëJ橈'琕鶫:顇ə娯Ȱ volumeDevices: - devicePath: "200" name: "199" @@ -725,64 +733,64 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "386" + nodeName: "391" nodeSelector: - "382": "383" + "387": "388" overhead: - k_: "725" - preemptionPolicy: Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ - priority: -1133320634 - priorityClassName: "469" + "": "359" + preemptionPolicy: "" + priority: -860768401 + priorityClassName: "474" readinessGates: - - conditionType: į - restartPolicy: 鯇ɀ魒Ð扬=惍EʦŊ - runtimeClassName: "474" - schedulerName: "464" + - conditionType: '@.ȇʟ' + restartPolicy: 鹚蝉茲ʛ饊 + runtimeClassName: "479" + schedulerName: "469" securityContext: - fsGroup: 4174818639540616638 - fsGroupChangePolicy: '趐V曡88 ' - runAsGroup: -8471243268942862734 + fsGroup: -1867959832193971598 + fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾! + runAsGroup: 6465579957265382985 runAsNonRoot: false - runAsUser: 7375851700105205526 + runAsUser: -4904722847506013622 seLinuxOptions: - level: "390" - role: "388" - type: "389" - user: "387" + level: "395" + role: "393" + type: "394" + user: "392" seccompProfile: - localhostProfile: "396" - type: 怞荊ù灹8緔Tj + localhostProfile: "401" + type: '`翾''ųŎ群E牬庘颮6(|ǖû' supplementalGroups: - - 6241883428430393253 + - -981432507446869083 sysctls: - - name: "394" - value: "395" + - name: "399" + value: "400" windowsOptions: - gmsaCredentialSpec: "392" - gmsaCredentialSpecName: "391" - runAsUserName: "393" - serviceAccount: "385" - serviceAccountName: "384" - setHostnameAsFQDN: false + gmsaCredentialSpec: "397" + gmsaCredentialSpecName: "396" + runAsUserName: "398" + serviceAccount: "390" + serviceAccountName: "389" + setHostnameAsFQDN: true shareProcessNamespace: false - subdomain: "399" - terminationGracePeriodSeconds: 6429479287377373080 + subdomain: "404" + terminationGracePeriodSeconds: 1736985756995615785 tolerations: - - effect: kx-餌勀奷Ŏ - key: "465" - operator: 0yVA嬂刲;牆詒ĸąs - tolerationSeconds: -9038755672632113093 - value: "466" + - effect: ɮ-nʣž吞Ƞ唄®窂爪 + key: "470" + operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ] + tolerationSeconds: -5154627301352060136 + value: "471" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: B.rTt7bm9I.-..q-F-.__ck - operator: DoesNotExist + - key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q + operator: Exists matchLabels: - 3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5: 019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6 - maxSkew: -2046521037 - topologyKey: "475" - whenUnsatisfiable: '"T#sM網m' + 9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG: 4n + maxSkew: -2013945465 + topologyKey: "480" + whenUnsatisfiable: '½ǩ ' volumes: - awsElasticBlockStore: fsType: "47" @@ -1034,25 +1042,25 @@ spec: storagePolicyID: "104" storagePolicyName: "103" volumePath: "101" - templateGeneration: -4423889184035148366 + templateGeneration: 6217170132371410053 updateStrategy: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: 周藢烡Z树Ȁ謁 + type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ status: - collisionCount: -1587459304 + collisionCount: 380871347 conditions: - - lastTransitionTime: "2247-01-24T21:09:45Z" - message: "483" - reason: "482" - status: fÐ@.ȇʟɃ - type: z¦ - currentNumberScheduled: -1489341847 - desiredNumberScheduled: -524542843 - numberAvailable: -78446609 - numberMisscheduled: -753344268 - numberReady: 1697527023 - numberUnavailable: -447350590 - observedGeneration: -1180763226570626076 - updatedNumberScheduled: -1758862804 + - lastTransitionTime: "2688-06-15T12:51:56Z" + message: "488" + reason: "487" + status: Ç[輚趞ț@郺丮嘱uȒ + type: D齆O#ȞM<²彾Ǟʈɐ碓yƗÄ. + currentNumberScheduled: -1371816595 + desiredNumberScheduled: -788475912 + numberAvailable: 340429479 + numberMisscheduled: 1219820375 + numberReady: 415140088 + numberUnavailable: -1024715512 + observedGeneration: 8590184840880420513 + updatedNumberScheduled: 16994744 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 b60f3cd59fd4..4c1f602c4c7b 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 @@ -556,7 +556,8 @@ "timeoutSeconds": -148216266, "periodSeconds": 165047920, "successThreshold": -393291312, - "failureThreshold": -93157681 + "failureThreshold": -93157681, + "terminationGracePeriodSeconds": -4856573944864548413 }, "readinessProbe": { "exec": { @@ -566,194 +567,198 @@ }, "httpGet": { "path": "209", - "port": "210", - "host": "211", - "scheme": "3!Zɾģ毋Ó6", + "port": -331283026, + "host": "210", + "scheme": "ȉ", "httpHeaders": [ { - "name": "212", - "value": "213" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": -832805508, - "host": "214" + "port": 714088955, + "host": "213" }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 + "initialDelaySeconds": 1033766276, + "timeoutSeconds": -1745509819, + "periodSeconds": -859135545, + "successThreshold": -1543701088, + "failureThreshold": 513341278, + "terminationGracePeriodSeconds": 2696007505383404823 }, "startupProbe": { "exec": { "command": [ - "215" + "214" ] }, "httpGet": { - "path": "216", - "port": -1492565335, - "host": "217", - "scheme": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw", + "path": "215", + "port": -361442565, + "host": "216", + "scheme": "w", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -280820676, - "host": "220" + "port": -1099429189, + "host": "219" }, - "initialDelaySeconds": 376404581, - "timeoutSeconds": -661937776, - "periodSeconds": 2070521391, - "successThreshold": -440412584, - "failureThreshold": -1801140031 + "initialDelaySeconds": 994072122, + "timeoutSeconds": 1752155096, + "periodSeconds": -1962065705, + "successThreshold": 1701999128, + "failureThreshold": -1364571630, + "terminationGracePeriodSeconds": 7258403424756645907 }, "lifecycle": { "postStart": { "exec": { "command": [ - "221" + "220" ] }, "httpGet": { - "path": "222", - "port": "223", - "host": "224", - "scheme": "鄠[颐o啛更偢ɇ卷荙JL", + "path": "221", + "port": -1109619518, + "host": "222", + "scheme": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "227", - "host": "228" + "port": "225", + "host": "226" } }, "preStop": { "exec": { "command": [ - "229" + "227" ] }, "httpGet": { - "path": "230", - "port": -1506633471, - "host": "231", - "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq", + "path": "228", + "port": 461585849, + "host": "229", + "scheme": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": "234", - "host": "235" + "port": 467291328, + "host": "232" } } }, - "terminationMessagePath": "236", - "terminationMessagePolicy": "屡ʁ", + "terminationMessagePath": "233", + "terminationMessagePolicy": "ĸ輦唊", + "imagePullPolicy": "r嚧", "securityContext": { "capabilities": { "add": [ - "Ÿ8T 苧yñKJɐ扵" + "埄趛" ], "drop": [ - "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞" + "ʁ岼昕ĬÇ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "237", - "role": "238", - "type": "239", - "level": "240" + "user": "234", + "role": "235", + "type": "236", + "level": "237" }, "windowsOptions": { - "gmsaCredentialSpecName": "241", - "gmsaCredentialSpec": "242", - "runAsUserName": "243" + "gmsaCredentialSpecName": "238", + "gmsaCredentialSpec": "239", + "runAsUserName": "240" }, - "runAsUser": -6177393256425700216, - "runAsGroup": 2001337664780390084, + "runAsUser": -857934902638099053, + "runAsGroup": 8967035373007538858, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026", + "procMount": "Z鐫û咡W\u003c敄lu", "seccompProfile": { - "type": "", - "localhostProfile": "244" + "type": "榝$î.Ȏ蝪ʜ5遰", + "localhostProfile": "241" } }, + "stdinOnce": true, "tty": true } ], "containers": [ { - "name": "245", - "image": "246", + "name": "242", + "image": "243", "command": [ - "247" + "244" ], "args": [ - "248" + "245" ], - "workingDir": "249", + "workingDir": "246", "ports": [ { - "name": "250", - "hostPort": -1296830577, - "containerPort": -1314967760, - "protocol": "順\\E¦队偯J僳徥淳4", - "hostIP": "251" + "name": "247", + "hostPort": -1462219068, + "containerPort": -370386363, + "protocol": "wƯ貾坢'跩aŕ翑0展}", + "hostIP": "248" } ], "envFrom": [ { - "prefix": "252", + "prefix": "249", "configMapRef": { - "name": "253", - "optional": true + "name": "250", + "optional": false }, "secretRef": { - "name": "254", + "name": "251", "optional": false } } ], "env": [ { - "name": "255", - "value": "256", + "name": "252", + "value": "253", "valueFrom": { "fieldRef": { - "apiVersion": "257", - "fieldPath": "258" + "apiVersion": "254", + "fieldPath": "255" }, "resourceFieldRef": { - "containerName": "259", - "resource": "260", - "divisor": "812" + "containerName": "256", + "resource": "257", + "divisor": "185" }, "configMapKeyRef": { - "name": "261", - "key": "262", + "name": "258", + "key": "259", "optional": true }, "secretKeyRef": { - "name": "263", - "key": "264", + "name": "260", + "key": "261", "optional": false } } @@ -761,193 +766,195 @@ ], "resources": { "limits": { - "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ": "173" + "鬶l獕;跣Hǝcw": "242" }, "requests": { - "餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi": "796" + "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" } }, "volumeMounts": [ { - "name": "265", - "readOnly": true, - "mountPath": "266", - "subPath": "267", - "mountPropagation": "囌{屿oiɥ嵐sC", - "subPathExpr": "268" + "name": "262", + "mountPath": "263", + "subPath": "264", + "mountPropagation": "", + "subPathExpr": "265" } ], "volumeDevices": [ { - "name": "269", - "devicePath": "270" + "name": "266", + "devicePath": "267" } ], "livenessProbe": { "exec": { "command": [ - "271" + "268" ] }, "httpGet": { - "path": "272", - "port": "273", - "host": "274", - "scheme": "ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ", + "path": "269", + "port": "270", + "host": "271", + "scheme": "頸", "httpHeaders": [ { - "name": "275", - "value": "276" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": -181601395, - "host": "277" + "port": 1315054653, + "host": "274" }, - "initialDelaySeconds": -617381112, - "timeoutSeconds": 1851229369, - "periodSeconds": -560238386, - "successThreshold": 1658749995, - "failureThreshold": -938421813 + "initialDelaySeconds": 711020087, + "timeoutSeconds": 1103049140, + "periodSeconds": -1965247100, + "successThreshold": 218453478, + "failureThreshold": 1993268896, + "terminationGracePeriodSeconds": -9140155223242250138 }, "readinessProbe": { "exec": { "command": [ - "278" + "275" ] }, "httpGet": { - "path": "279", - "port": -305362540, - "host": "280", - "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "path": "276", + "port": -1315487077, + "host": "277", + "scheme": "ğ_", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": 1167615307, - "host": "283" + "port": "280", + "host": "281" }, - "initialDelaySeconds": 455833230, - "timeoutSeconds": 1956567721, - "periodSeconds": 155090390, - "successThreshold": -2113700533, - "failureThreshold": -2130294761 + "initialDelaySeconds": 1272940694, + "timeoutSeconds": -385597677, + "periodSeconds": 422133388, + "successThreshold": 1952458416, + "failureThreshold": 1456461851, + "terminationGracePeriodSeconds": -6078441689118311403 }, "startupProbe": { "exec": { "command": [ - "284" + "282" ] }, "httpGet": { - "path": "285", - "port": -727263154, - "host": "286", - "scheme": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", + "path": "283", + "port": 1332783160, + "host": "284", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "287", - "value": "288" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "289", - "host": "290" + "port": "287", + "host": "288" }, - "initialDelaySeconds": 1137109081, - "timeoutSeconds": -1896415283, - "periodSeconds": 1540899353, - "successThreshold": -1330095135, - "failureThreshold": 1566213732 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482, + "terminationGracePeriodSeconds": -2203905759223555727 }, "lifecycle": { "postStart": { "exec": { "command": [ - "291" + "289" ] }, "httpGet": { - "path": "292", - "port": "293", - "host": "294", - "scheme": "W賁Ěɭɪǹ0", + "path": "290", + "port": "291", + "host": "292", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "293", + "value": "294" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": -402384013, + "host": "295" } }, "preStop": { "exec": { "command": [ - "299" + "296" ] }, "httpGet": { - "path": "300", - "port": -1520531919, - "host": "301", - "scheme": "n(fǂǢ曣ŋayåe躒訙Ǫ", + "path": "297", + "port": "298", + "host": "299", + "scheme": "鏻砅邻爥", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "300", + "value": "301" } ] }, "tcpSocket": { - "port": 739175678, - "host": "304" + "port": -305362540, + "host": "302" } } }, - "terminationMessagePath": "305", - "terminationMessagePolicy": "ť嗆u8晲T", - "imagePullPolicy": "xǨŴ壶ƵfȽÃ", + "terminationMessagePath": "303", + "terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", + "imagePullPolicy": "i绝5哇芆斩", "securityContext": { "capabilities": { "add": [ - "ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf" + "" ], "drop": [ - "ƽ眝{æ盪泙" + "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "306", - "role": "307", - "type": "308", - "level": "309" + "user": "304", + "role": "305", + "type": "306", + "level": "307" }, "windowsOptions": { - "gmsaCredentialSpecName": "310", - "gmsaCredentialSpec": "311", - "runAsUserName": "312" + "gmsaCredentialSpecName": "308", + "gmsaCredentialSpec": "309", + "runAsUserName": "310" }, - "runAsUser": -2176303163074826228, - "runAsGroup": 5326516866753332539, + "runAsUser": -7936947433725476327, + "runAsGroup": -5712715102324619404, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ", + "procMount": "W賁Ěɭɪǹ0", "seccompProfile": { - "type": "EuE", - "localhostProfile": "313" + "type": ",ƷƣMț譎懚XW疪鑳", + "localhostProfile": "311" } }, "stdin": true, @@ -957,312 +964,313 @@ ], "ephemeralContainers": [ { - "name": "314", - "image": "315", + "name": "312", + "image": "313", "command": [ - "316" + "314" ], "args": [ - "317" + "315" ], - "workingDir": "318", + "workingDir": "316", "ports": [ { - "name": "319", - "hostPort": -703434763, - "containerPort": 930549073, - "protocol": "礤铟怖ý萜Ǖc8", - "hostIP": "320" + "name": "317", + "hostPort": 217308913, + "containerPort": 455919108, + "protocol": "崍h趭(娕u", + "hostIP": "318" } ], "envFrom": [ { - "prefix": "321", + "prefix": "319", "configMapRef": { - "name": "322", + "name": "320", "optional": false }, "secretRef": { - "name": "323", - "optional": true + "name": "321", + "optional": false } } ], "env": [ { - "name": "324", - "value": "325", + "name": "322", + "value": "323", "valueFrom": { "fieldRef": { - "apiVersion": "326", - "fieldPath": "327" + "apiVersion": "324", + "fieldPath": "325" }, "resourceFieldRef": { - "containerName": "328", - "resource": "329", - "divisor": "595" + "containerName": "326", + "resource": "327", + "divisor": "360" }, "configMapKeyRef": { - "name": "330", - "key": "331", + "name": "328", + "key": "329", "optional": false }, "secretKeyRef": { - "name": "332", - "key": "333", - "optional": true + "name": "330", + "key": "331", + "optional": false } } } ], "resources": { "limits": { - "ɋȑoG鄧蜢暳ǽżLj捲": "775" + "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422" }, "requests": { - "U": "632" + "蕎'": "62" } }, "volumeMounts": [ { - "name": "334", + "name": "332", "readOnly": true, - "mountPath": "335", - "subPath": "336", - "mountPropagation": "$嬏", - "subPathExpr": "337" + "mountPath": "333", + "subPath": "334", + "mountPropagation": "Ǚ(", + "subPathExpr": "335" } ], "volumeDevices": [ { - "name": "338", - "devicePath": "339" + "name": "336", + "devicePath": "337" } ], "livenessProbe": { "exec": { "command": [ - "340" + "338" ] }, "httpGet": { - "path": "341", - "port": "342", - "host": "343", - "scheme": "$ɛ溢臜裡×銵-紑浘牬", + "path": "339", + "port": -1842062977, + "host": "340", + "scheme": "輔3璾ėȜv1b繐汚磉反-n覦", "httpHeaders": [ { - "name": "344", - "value": "345" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "346", - "host": "347" + "port": "343", + "host": "344" }, - "initialDelaySeconds": -195171082, - "timeoutSeconds": 1648539888, - "periodSeconds": 762856658, - "successThreshold": -1898251770, - "failureThreshold": 713473395 + "initialDelaySeconds": -1161185537, + "timeoutSeconds": 1928937303, + "periodSeconds": 1611386356, + "successThreshold": 821341581, + "failureThreshold": 240657401, + "terminationGracePeriodSeconds": 7806703309589874498 }, "readinessProbe": { "exec": { "command": [ - "348" + "345" ] }, "httpGet": { - "path": "349", - "port": "350", - "host": "351", - "scheme": "ɴ鉂WJ1抉泅ą\u0026", + "path": "346", + "port": "347", + "host": "348", + "scheme": "Ik(dŊiɢzĮ蛋I", "httpHeaders": [ { - "name": "352", - "value": "353" + "name": "349", + "value": "350" } ] }, "tcpSocket": { - "port": "354", - "host": "355" + "port": "351", + "host": "352" }, - "initialDelaySeconds": -1943335113, - "timeoutSeconds": -39292476, - "periodSeconds": 801902541, - "successThreshold": -1312249623, - "failureThreshold": -1089435479 + "initialDelaySeconds": 571693619, + "timeoutSeconds": 1643238856, + "periodSeconds": -2028546276, + "successThreshold": -2128305760, + "failureThreshold": 1605974497, + "terminationGracePeriodSeconds": 2002344837004307079 }, "startupProbe": { "exec": { "command": [ - "356" + "353" ] }, "httpGet": { - "path": "357", - "port": -592521472, - "host": "358", - "scheme": ":/", + "path": "354", + "port": "355", + "host": "356", + "scheme": "奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂", "httpHeaders": [ { - "name": "359", - "value": "360" + "name": "357", + "value": "358" } ] }, "tcpSocket": { - "port": -1101457109, - "host": "361" + "port": -1894647727, + "host": "359" }, - "initialDelaySeconds": -513325570, - "timeoutSeconds": 1491794693, - "periodSeconds": -1457715462, - "successThreshold": 1349815334, - "failureThreshold": 1307211372 + "initialDelaySeconds": 235623869, + "timeoutSeconds": 564558594, + "periodSeconds": -505848936, + "successThreshold": -1819021257, + "failureThreshold": 1447314009, + "terminationGracePeriodSeconds": -7637760856622746738 }, "lifecycle": { "postStart": { "exec": { "command": [ - "362" + "360" ] }, "httpGet": { - "path": "363", - "port": "364", - "host": "365", - "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY", + "path": "361", + "port": 466267060, + "host": "362", + "scheme": "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł", "httpHeaders": [ { - "name": "366", - "value": "367" + "name": "363", + "value": "364" } ] }, "tcpSocket": { - "port": "368", - "host": "369" + "port": "365", + "host": "366" } }, "preStop": { "exec": { "command": [ - "370" + "367" ] }, "httpGet": { - "path": "371", - "port": -1500740922, - "host": "372", - "scheme": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰", + "path": "368", + "port": "369", + "host": "370", + "scheme": "Ē3Nh×DJɶ羹ƞʓ%ʝ", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "371", + "value": "372" } ] }, "tcpSocket": { - "port": "375", - "host": "376" + "port": "373", + "host": "374" } } }, - "terminationMessagePath": "377", - "terminationMessagePolicy": "耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ", - "imagePullPolicy": "¬h`職铳s44矕Ƈè*鑏='ʨ|", + "terminationMessagePath": "375", + "terminationMessagePolicy": "躌ñ?卶滿筇ȟP:/a", + "imagePullPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "securityContext": { "capabilities": { "add": [ - "敆OɈÏ 瞍髃#ɣȕW歹s" + "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃" ], "drop": [ - "ɥʋăƻ遲" + "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "378", - "role": "379", - "type": "380", - "level": "381" + "user": "376", + "role": "377", + "type": "378", + "level": "379" }, "windowsOptions": { - "gmsaCredentialSpecName": "382", - "gmsaCredentialSpec": "383", - "runAsUserName": "384" + "gmsaCredentialSpecName": "380", + "gmsaCredentialSpec": "381", + "runAsUserName": "382" }, - "runAsUser": 3805707846751185585, - "runAsGroup": 4820130167691486230, + "runAsUser": 4369716065827112267, + "runAsGroup": -6657305077321335240, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", + "allowPrivilegeEscalation": false, + "procMount": "ʙcx", "seccompProfile": { - "type": "z鋎", - "localhostProfile": "385" + "type": "ǒđ\u003e*劶?jĎĭ", + "localhostProfile": "383" } }, - "tty": true, - "targetContainerName": "386" + "targetContainerName": "384" } ], - "restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", - "terminationGracePeriodSeconds": -8963807447996144781, - "activeDeadlineSeconds": -5539971415578447792, - "dnsPolicy": "6", + "restartPolicy": "ƱÁR»淹揀", + "terminationGracePeriodSeconds": 2008726498083002362, + "activeDeadlineSeconds": -5891364351877125204, + "dnsPolicy": "敆OɈÏ 瞍髃#ɣȕW歹s", "nodeSelector": { - "387": "388" + "385": "386" }, - "serviceAccountName": "389", - "serviceAccount": "390", - "automountServiceAccountToken": false, - "nodeName": "391", - "hostNetwork": true, + "serviceAccountName": "387", + "serviceAccount": "388", + "automountServiceAccountToken": true, + "nodeName": "389", "hostPID": true, "hostIPC": true, - "shareProcessNamespace": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "392", - "role": "393", - "type": "394", - "level": "395" + "user": "390", + "role": "391", + "type": "392", + "level": "393" }, "windowsOptions": { - "gmsaCredentialSpecName": "396", - "gmsaCredentialSpec": "397", - "runAsUserName": "398" + "gmsaCredentialSpecName": "394", + "gmsaCredentialSpec": "395", + "runAsUserName": "396" }, - "runAsUser": 4290717681745188904, - "runAsGroup": 3355244307027629244, - "runAsNonRoot": false, + "runAsUser": 4466809078783855686, + "runAsGroup": -3587143030436465588, + "runAsNonRoot": true, "supplementalGroups": [ - -7106117411092125093 + 4820130167691486230 ], - "fsGroup": -9164240834267238973, + "fsGroup": 6713296993350540686, "sysctls": [ { - "name": "399", - "value": "400" + "name": "397", + "value": "398" } ], - "fsGroupChangePolicy": "", + "fsGroupChangePolicy": "ȶŮ嫠!@@)Zq=歍þ螗ɃŒ", "seccompProfile": { - "type": "d'呪", - "localhostProfile": "401" + "type": "m¨z鋎靀G¿əW#ļǹʅŚO虀^", + "localhostProfile": "399" } }, "imagePullSecrets": [ { - "name": "402" + "name": "400" } ], - "hostname": "403", - "subdomain": "404", + "hostname": "401", + "subdomain": "402", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1270,19 +1278,19 @@ { "matchExpressions": [ { - "key": "405", - "operator": "W瀤oɢ嫎¸殚篎3o8[y", + "key": "403", + "operator": "", "values": [ - "406" + "404" ] } ], "matchFields": [ { - "key": "407", - "operator": "ï驿笈", + "key": "405", + "operator": "ɦ燻踸陴Sĕ濦ʓɻ", "values": [ - "408" + "406" ] } ] @@ -1291,23 +1299,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1009377808, + "weight": 1762917570, "preference": { "matchExpressions": [ { - "key": "409", - "operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", + "key": "407", + "operator": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW", "values": [ - "410" + "408" ] } ], "matchFields": [ { - "key": "411", - "operator": "惍EʦŊĊ娮rȧ", + "key": "409", + "operator": "顓闉ȦT", "values": [ - "412" + "410" ] } ] @@ -1320,30 +1328,30 @@ { "labelSelector": { "matchLabels": { - "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": "" + "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", + "key": "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33", "operator": "NotIn", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7" ] } ] }, "namespaces": [ - "419" + "417" ], - "topologyKey": "420", + "topologyKey": "418", "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" } ] } @@ -1351,31 +1359,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": [ - "433" + "431" ], - "topologyKey": "434", + "topologyKey": "432", "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" + ] } ] } @@ -1388,32 +1402,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": [ - "447" + "445" ], - "topologyKey": "448", + "topologyKey": "446", "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" ] } ] @@ -1422,31 +1433,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": [ - "461" + "459" ], - "topologyKey": "462", + "topologyKey": "460", "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" + ] } ] } @@ -1455,106 +1469,106 @@ ] } }, - "schedulerName": "469", + "schedulerName": "467", "tolerations": [ { - "key": "470", - "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", - "value": "471", - "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", - "tolerationSeconds": 3252034671163905138 + "key": "468", + "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ", + "value": "469", + "effect": "慰x:", + "tolerationSeconds": 3362400521064014157 } ], "hostAliases": [ { - "ip": "472", + "ip": "470", "hostnames": [ - "473" + "471" ] } ], - "priorityClassName": "474", - "priority": 347613368, + "priorityClassName": "472", + "priority": 743241089, "dnsConfig": { "nameservers": [ - "475" + "473" ], "searches": [ - "476" + "474" ], "options": [ { - "name": "477", - "value": "478" + "name": "475", + "value": "476" } ] }, "readinessGates": [ { - "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" + "conditionType": "0yVA嬂刲;牆詒ĸąs" } ], - "runtimeClassName": "479", + "runtimeClassName": "477", "enableServiceLinks": false, - "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", + "preemptionPolicy": "Iƭij韺ʧ\u003e", "overhead": { - "D輷": "792" + "D傕Ɠ栊闔虝巒瀦ŕ": "124" }, "topologySpreadConstraints": [ { - "maxSkew": -484382570, - "topologyKey": "480", - "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", + "maxSkew": -174245111, + "topologyKey": "478", + "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 } }, "strategy": { - "type": "ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj", + "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026", "rollingUpdate": { "maxUnavailable": 2, "maxSurge": 3 } }, - "minReadySeconds": 2115665292, - "revisionHistoryLimit": 237456757, + "minReadySeconds": 1559072561, + "revisionHistoryLimit": -629510776, "rollbackTo": { - "revision": 1498428055681994500 + "revision": -8285752436940414034 }, - "progressDeadlineSeconds": -164140734 + "progressDeadlineSeconds": 349353563 }, "status": { - "observedGeneration": -1635909846206320942, - "replicas": -253906853, - "updatedReplicas": -602665165, - "readyReplicas": -859094691, - "availableReplicas": -1624946983, - "unavailableReplicas": -779806398, + "observedGeneration": 5710269275969351972, + "replicas": -153843136, + "updatedReplicas": -1961319491, + "readyReplicas": 1492268066, + "availableReplicas": -2102211832, + "unavailableReplicas": 1714841371, "conditions": [ { - "type": "mv看ƜZ", - "status": "ȇ\u003e尪璎妽4LM桵Ţ宧ʜ", - "lastUpdateTime": "2322-02-12T18:39:07Z", - "lastTransitionTime": "2398-05-12T06:43:28Z", - "reason": "487", - "message": "488" + "type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ", + "status": "", + "lastUpdateTime": "2124-10-20T09:17:54Z", + "lastTransitionTime": "2625-01-11T08:25:47Z", + "reason": "485", + "message": "486" } ], - "collisionCount": 165914268 + "collisionCount": -1280802136 } } \ 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 077a445f664d..34bee23518ea 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 b3e34a57c680..a871a1ef0bb9 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 @@ -30,12 +30,12 @@ metadata: selfLink: "5" uid: "7" spec: - minReadySeconds: 2115665292 - progressDeadlineSeconds: -164140734 + minReadySeconds: 1559072561 + progressDeadlineSeconds: 349353563 replicas: 896585016 - revisionHistoryLimit: 237456757 + revisionHistoryLimit: -629510776 rollbackTo: - revision: 1498428055681994500 + revision: -8285752436940414034 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 +46,7 @@ spec: rollingUpdate: maxSurge: 3 maxUnavailable: 2 - type: ʔF{ȃ騑ȫ(踶NJđƟÝɹ橽ƴåj + type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& template: metadata: annotations: @@ -78,487 +78,493 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -5539971415578447792 + activeDeadlineSeconds: -5891364351877125204 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "409" - operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪 + - key: "407" + operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW values: - - "410" + - "408" matchFields: - - key: "411" - operator: 惍EʦŊĊ娮rȧ + - key: "409" + operator: 顓闉ȦT values: - - "412" - weight: -1009377808 + - "410" + weight: 1762917570 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "405" - operator: W瀤oɢ嫎¸殚篎3o8[y + - key: "403" + operator: "" values: - - "406" + - "404" matchFields: - - key: "407" - operator: ï驿笈 + - key: "405" + operator: ɦ燻踸陴Sĕ濦ʓɻ values: - - "408" + - "406" 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: - - "433" - topologyKey: "434" - weight: -234140 + - "431" + topologyKey: "432" + 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 + - key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 operator: NotIn values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 matchLabels: - u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: "" + 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc 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: - - "419" - topologyKey: "420" + - "417" + topologyKey: "418" 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: - - "461" - topologyKey: "462" - weight: 1276377114 + - "459" + topologyKey: "460" + 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: - - "447" - topologyKey: "448" - automountServiceAccountToken: false + - "445" + topologyKey: "446" + automountServiceAccountToken: true containers: - args: - - "248" + - "245" command: - - "247" + - "244" env: - - name: "255" - value: "256" + - name: "252" + value: "253" valueFrom: configMapKeyRef: - key: "262" - name: "261" + key: "259" + name: "258" optional: true fieldRef: - apiVersion: "257" - fieldPath: "258" + apiVersion: "254" + fieldPath: "255" resourceFieldRef: - containerName: "259" - divisor: "812" - resource: "260" + containerName: "256" + divisor: "185" + resource: "257" secretKeyRef: - key: "264" - name: "263" + key: "261" + name: "260" optional: false envFrom: - configMapRef: - name: "253" - optional: true - prefix: "252" + name: "250" + optional: false + prefix: "249" secretRef: - name: "254" + name: "251" optional: false - image: "246" - imagePullPolicy: xǨŴ壶ƵfȽà + image: "243" + imagePullPolicy: i绝5哇芆斩 lifecycle: postStart: exec: command: - - "291" + - "289" httpGet: - host: "294" + host: "292" httpHeaders: - - name: "295" - value: "296" - path: "292" - port: "293" - scheme: W賁Ěɭɪǹ0 + - name: "293" + value: "294" + path: "290" + port: "291" + scheme: 鯂²静 tcpSocket: - host: "298" - port: "297" + host: "295" + port: -402384013 preStop: exec: command: - - "299" + - "296" httpGet: - host: "301" + host: "299" httpHeaders: - - name: "302" - value: "303" - path: "300" - port: -1520531919 - scheme: n(fǂǢ曣ŋayåe躒訙Ǫ + - name: "300" + value: "301" + path: "297" + port: "298" + scheme: 鏻砅邻爥 tcpSocket: - host: "304" - port: 739175678 + host: "302" + port: -305362540 livenessProbe: exec: command: - - "271" - failureThreshold: -938421813 + - "268" + failureThreshold: 1993268896 httpGet: - host: "274" + host: "271" httpHeaders: - - name: "275" - value: "276" - path: "272" - port: "273" - scheme: ɢ鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²静Ʋ - initialDelaySeconds: -617381112 - periodSeconds: -560238386 - successThreshold: 1658749995 + - name: "272" + value: "273" + path: "269" + port: "270" + scheme: 頸 + initialDelaySeconds: 711020087 + periodSeconds: -1965247100 + successThreshold: 218453478 tcpSocket: - host: "277" - port: -181601395 - timeoutSeconds: 1851229369 - name: "245" + host: "274" + port: 1315054653 + terminationGracePeriodSeconds: -9140155223242250138 + timeoutSeconds: 1103049140 + name: "242" ports: - - containerPort: -1314967760 - hostIP: "251" - hostPort: -1296830577 - name: "250" - protocol: 順\E¦队偯J僳徥淳4 + - containerPort: -370386363 + hostIP: "248" + hostPort: -1462219068 + name: "247" + protocol: wƯ貾坢'跩aŕ翑0展} readinessProbe: exec: command: - - "278" - failureThreshold: -2130294761 + - "275" + failureThreshold: 1456461851 httpGet: - host: "280" + host: "277" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -305362540 - scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 - initialDelaySeconds: 455833230 - periodSeconds: 155090390 - successThreshold: -2113700533 + - name: "278" + value: "279" + path: "276" + port: -1315487077 + scheme: ğ_ + initialDelaySeconds: 1272940694 + periodSeconds: 422133388 + successThreshold: 1952458416 tcpSocket: - host: "283" - port: 1167615307 - timeoutSeconds: 1956567721 + host: "281" + port: "280" + terminationGracePeriodSeconds: -6078441689118311403 + timeoutSeconds: -385597677 resources: limits: - Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ: "173" + 鬶l獕;跣Hǝcw: "242" requests: - 餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏi: "796" + $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ȓɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ(ť1ùf + - "" drop: - - ƽ眝{æ盪泙 - privileged: true - procMount: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ - readOnlyRootFilesystem: true - runAsGroup: 5326516866753332539 + - ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ + privileged: false + procMount: W賁Ěɭɪǹ0 + readOnlyRootFilesystem: false + runAsGroup: -5712715102324619404 runAsNonRoot: false - runAsUser: -2176303163074826228 + runAsUser: -7936947433725476327 seLinuxOptions: - level: "309" - role: "307" - type: "308" - user: "306" + level: "307" + role: "305" + type: "306" + user: "304" seccompProfile: - localhostProfile: "313" - type: EuE + localhostProfile: "311" + type: ',ƷƣMț譎懚XW疪鑳' windowsOptions: - gmsaCredentialSpec: "311" - gmsaCredentialSpecName: "310" - runAsUserName: "312" + gmsaCredentialSpec: "309" + gmsaCredentialSpecName: "308" + runAsUserName: "310" startupProbe: exec: command: - - "284" - failureThreshold: 1566213732 + - "282" + failureThreshold: 620822482 httpGet: - host: "286" + host: "284" httpHeaders: - - name: "287" - value: "288" - path: "285" - port: -727263154 - scheme: Ȗ|ʐşƧ諔迮ƙIJ嘢4 - initialDelaySeconds: 1137109081 - periodSeconds: 1540899353 - successThreshold: -1330095135 + - name: "285" + value: "286" + path: "283" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "290" - port: "289" - timeoutSeconds: -1896415283 + host: "288" + port: "287" + terminationGracePeriodSeconds: -2203905759223555727 + timeoutSeconds: 386804041 stdin: true stdinOnce: true - terminationMessagePath: "305" - terminationMessagePolicy: ť嗆u8晲T + terminationMessagePath: "303" + terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tty: true volumeDevices: - - devicePath: "270" - name: "269" + - devicePath: "267" + name: "266" volumeMounts: - - mountPath: "266" - mountPropagation: 囌{屿oiɥ嵐sC - name: "265" - readOnly: true - subPath: "267" - subPathExpr: "268" - workingDir: "249" + - mountPath: "263" + mountPropagation: "" + name: "262" + subPath: "264" + subPathExpr: "265" + workingDir: "246" dnsConfig: nameservers: - - "475" + - "473" options: - - name: "477" - value: "478" + - name: "475" + value: "476" searches: - - "476" - dnsPolicy: "6" + - "474" + dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s enableServiceLinks: false ephemeralContainers: - args: - - "317" + - "315" command: - - "316" + - "314" env: - - name: "324" - value: "325" + - name: "322" + value: "323" valueFrom: configMapKeyRef: - key: "331" - name: "330" + key: "329" + name: "328" optional: false fieldRef: - apiVersion: "326" - fieldPath: "327" + apiVersion: "324" + fieldPath: "325" resourceFieldRef: - containerName: "328" - divisor: "595" - resource: "329" + containerName: "326" + divisor: "360" + resource: "327" secretKeyRef: - key: "333" - name: "332" - optional: true + key: "331" + name: "330" + optional: false envFrom: - configMapRef: - name: "322" + name: "320" optional: false - prefix: "321" + prefix: "319" secretRef: - name: "323" - optional: true - image: "315" - imagePullPolicy: ¬h`職铳s44矕Ƈè*鑏='ʨ| + name: "321" + optional: false + image: "313" + imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢 lifecycle: postStart: exec: command: - - "362" + - "360" httpGet: - host: "365" + host: "362" httpHeaders: - - name: "366" - value: "367" - path: "363" - port: "364" - scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY + - name: "363" + value: "364" + path: "361" + port: 466267060 + scheme: wy¶熀ďJZ漤ŗ坟Ů*劶?jĎĭ windowsOptions: - gmsaCredentialSpec: "383" - gmsaCredentialSpecName: "382" - runAsUserName: "384" + gmsaCredentialSpec: "381" + gmsaCredentialSpecName: "380" + runAsUserName: "382" startupProbe: exec: command: - - "356" - failureThreshold: 1307211372 + - "353" + failureThreshold: 1447314009 httpGet: - host: "358" + host: "356" httpHeaders: - - name: "359" - value: "360" - path: "357" - port: -592521472 - scheme: :/ - initialDelaySeconds: -513325570 - periodSeconds: -1457715462 - successThreshold: 1349815334 + - name: "357" + value: "358" + path: "354" + port: "355" + scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 + initialDelaySeconds: 235623869 + periodSeconds: -505848936 + successThreshold: -1819021257 tcpSocket: - host: "361" - port: -1101457109 - timeoutSeconds: 1491794693 - targetContainerName: "386" - terminationMessagePath: "377" - terminationMessagePolicy: 耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx赮ǒ - tty: true + host: "359" + port: -1894647727 + terminationGracePeriodSeconds: -7637760856622746738 + timeoutSeconds: 564558594 + targetContainerName: "384" + terminationMessagePath: "375" + terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a volumeDevices: - - devicePath: "339" - name: "338" + - devicePath: "337" + name: "336" volumeMounts: - - mountPath: "335" - mountPropagation: $嬏 - name: "334" + - mountPath: "333" + mountPropagation: Ǚ( + name: "332" readOnly: true - subPath: "336" - subPathExpr: "337" - workingDir: "318" + subPath: "334" + subPathExpr: "335" + workingDir: "316" hostAliases: - hostnames: - - "473" - ip: "472" + - "471" + ip: "470" hostIPC: true - hostNetwork: true hostPID: true - hostname: "403" + hostname: "401" imagePullSecrets: - - name: "402" + - name: "400" initContainers: - args: - "178" @@ -592,37 +598,38 @@ spec: name: "184" optional: true image: "176" + imagePullPolicy: r嚧 lifecycle: postStart: exec: command: - - "221" + - "220" httpGet: - host: "224" + host: "222" httpHeaders: - - name: "225" - value: "226" - path: "222" - port: "223" - scheme: 鄠[颐o啛更偢ɇ卷荙JL + - name: "223" + value: "224" + path: "221" + port: -1109619518 + scheme: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪 tcpSocket: - host: "228" - port: "227" + host: "226" + port: "225" preStop: exec: command: - - "229" + - "227" httpGet: - host: "231" + host: "229" httpHeaders: - - name: "232" - value: "233" - path: "230" - port: -1506633471 - scheme: 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq + - name: "230" + value: "231" + path: "228" + port: 461585849 + scheme: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ tcpSocket: - host: "235" - port: "234" + host: "232" + port: 467291328 livenessProbe: exec: command: @@ -642,6 +649,7 @@ spec: tcpSocket: host: "207" port: "206" + terminationGracePeriodSeconds: -4856573944864548413 timeoutSeconds: -148216266 name: "175" ports: @@ -654,22 +662,23 @@ spec: exec: command: - "208" - failureThreshold: 267768240 + failureThreshold: 513341278 httpGet: - host: "211" + host: "210" httpHeaders: - - name: "212" - value: "213" + - name: "211" + value: "212" path: "209" - port: "210" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 + port: -331283026 + scheme: ȉ + initialDelaySeconds: 1033766276 + periodSeconds: -859135545 + successThreshold: -1543701088 tcpSocket: - host: "214" - port: -832805508 - timeoutSeconds: -970312425 + host: "213" + port: 714088955 + terminationGracePeriodSeconds: 2696007505383404823 + timeoutSeconds: -1745509819 resources: limits: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3: "86" @@ -679,49 +688,51 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - Ÿ8T 苧yñKJɐ扵 + - 埄趛 drop: - - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 - privileged: false - procMount: Ȩ<6鄰簳°Ļǟi& - readOnlyRootFilesystem: true - runAsGroup: 2001337664780390084 + - ʁ岼昕ĬÇ + privileged: true + procMount: Z鐫û咡W<敄lu + readOnlyRootFilesystem: false + runAsGroup: 8967035373007538858 runAsNonRoot: true - runAsUser: -6177393256425700216 + runAsUser: -857934902638099053 seLinuxOptions: - level: "240" - role: "238" - type: "239" - user: "237" + level: "237" + role: "235" + type: "236" + user: "234" seccompProfile: - localhostProfile: "244" - type: "" + localhostProfile: "241" + type: 榝$î.Ȏ蝪ʜ5遰 windowsOptions: - gmsaCredentialSpec: "242" - gmsaCredentialSpecName: "241" - runAsUserName: "243" + gmsaCredentialSpec: "239" + gmsaCredentialSpecName: "238" + runAsUserName: "240" startupProbe: exec: command: - - "215" - failureThreshold: -1801140031 + - "214" + failureThreshold: -1364571630 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" - path: "216" - port: -1492565335 - scheme: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw - initialDelaySeconds: 376404581 - periodSeconds: 2070521391 - successThreshold: -440412584 + - name: "217" + value: "218" + path: "215" + port: -361442565 + scheme: w + initialDelaySeconds: 994072122 + periodSeconds: -1962065705 + successThreshold: 1701999128 tcpSocket: - host: "220" - port: -280820676 - timeoutSeconds: -661937776 - terminationMessagePath: "236" - terminationMessagePolicy: 屡ʁ + host: "219" + port: -1099429189 + terminationGracePeriodSeconds: 7258403424756645907 + timeoutSeconds: 1752155096 + stdinOnce: true + terminationMessagePath: "233" + terminationMessagePolicy: ĸ輦唊 tty: true volumeDevices: - devicePath: "200" @@ -734,66 +745,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "391" + nodeName: "389" nodeSelector: - "387": "388" + "385": "386" overhead: - D輷: "792" - preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆 - priority: 347613368 - priorityClassName: "474" + D傕Ɠ栊闔虝巒瀦ŕ: "124" + preemptionPolicy: Iƭij韺ʧ> + priority: 743241089 + priorityClassName: "472" readinessGates: - - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ - restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸 - runtimeClassName: "479" - schedulerName: "469" + - conditionType: 0yVA嬂刲;牆詒ĸąs + restartPolicy: ƱÁR»淹揀 + runtimeClassName: "477" + schedulerName: "467" securityContext: - fsGroup: -9164240834267238973 - fsGroupChangePolicy: "" - runAsGroup: 3355244307027629244 - runAsNonRoot: false - runAsUser: 4290717681745188904 + fsGroup: 6713296993350540686 + fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ + runAsGroup: -3587143030436465588 + runAsNonRoot: true + runAsUser: 4466809078783855686 seLinuxOptions: - level: "395" - role: "393" - type: "394" - user: "392" + level: "393" + role: "391" + type: "392" + user: "390" seccompProfile: - localhostProfile: "401" - type: d'呪 + localhostProfile: "399" + type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ supplementalGroups: - - -7106117411092125093 + - 4820130167691486230 sysctls: - - name: "399" - value: "400" + - name: "397" + value: "398" windowsOptions: - gmsaCredentialSpec: "397" - gmsaCredentialSpecName: "396" - runAsUserName: "398" - serviceAccount: "390" - serviceAccountName: "389" - setHostnameAsFQDN: false - shareProcessNamespace: true - subdomain: "404" - terminationGracePeriodSeconds: -8963807447996144781 + gmsaCredentialSpec: "395" + gmsaCredentialSpecName: "394" + runAsUserName: "396" + serviceAccount: "388" + serviceAccountName: "387" + setHostnameAsFQDN: true + shareProcessNamespace: false + subdomain: "402" + terminationGracePeriodSeconds: 2008726498083002362 tolerations: - - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ - key: "470" - operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸 - tolerationSeconds: 3252034671163905138 - value: "471" + - effect: '慰x:' + key: "468" + operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ + tolerationSeconds: 3362400521064014157 + value: "469" 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: "480" - 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: "478" + whenUnsatisfiable: "" volumes: - awsElasticBlockStore: fsType: "47" @@ -1048,17 +1059,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -1624946983 - collisionCount: 165914268 + availableReplicas: -2102211832 + collisionCount: -1280802136 conditions: - - lastTransitionTime: "2398-05-12T06:43:28Z" - lastUpdateTime: "2322-02-12T18:39:07Z" - message: "488" - reason: "487" - status: ȇ>尪璎妽4LM桵Ţ宧ʜ - type: mv看ƜZ - observedGeneration: -1635909846206320942 - readyReplicas: -859094691 - replicas: -253906853 - unavailableReplicas: -779806398 - updatedReplicas: -602665165 + - lastTransitionTime: "2625-01-11T08:25:47Z" + lastUpdateTime: "2124-10-20T09:17:54Z" + message: "486" + reason: "485" + status: "" + type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ + observedGeneration: 5710269275969351972 + readyReplicas: 1492268066 + replicas: -153843136 + unavailableReplicas: 1714841371 + updatedReplicas: -1961319491 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 5c79762af5ac..7746b5dd1e36 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 @@ -555,7 +555,8 @@ "timeoutSeconds": -194343002, "periodSeconds": -850069363, "successThreshold": 918929368, - "failureThreshold": 1016277253 + "failureThreshold": 1016277253, + "terminationGracePeriodSeconds": -8520337362162976488 }, "readinessProbe": { "exec": { @@ -567,7 +568,7 @@ "path": "208", "port": "209", "host": "210", - "scheme": "莭琽§ć\\ ïì«丯Ƙ枛牐ɺ", + "scheme": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", "httpHeaders": [ { "name": "211", @@ -576,14 +577,15 @@ ] }, "tcpSocket": { - "port": 1281792166, + "port": 538852927, "host": "213" }, - "initialDelaySeconds": -1934111455, - "timeoutSeconds": 766864314, - "periodSeconds": 1146016612, - "successThreshold": 1495880465, - "failureThreshold": -1032967081 + "initialDelaySeconds": -407545915, + "timeoutSeconds": 902535764, + "periodSeconds": 716842280, + "successThreshold": 1479266199, + "failureThreshold": 163512962, + "terminationGracePeriodSeconds": -8521017368802772029 }, "startupProbe": { "exec": { @@ -593,25 +595,26 @@ }, "httpGet": { "path": "215", - "port": "216", - "host": "217", - "scheme": "ĺɗŹ倗S晒嶗UÐ_ƮA攤", + "port": 1623772781, + "host": "216", + "scheme": "UÐ_ƮA攤/ɸɎ", "httpHeaders": [ { - "name": "218", - "value": "219" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": -498930176, + "port": "219", "host": "220" }, - "initialDelaySeconds": 1885897314, - "timeoutSeconds": -465677631, - "periodSeconds": 1054858106, - "successThreshold": 232569106, - "failureThreshold": -1150474479 + "initialDelaySeconds": 1054858106, + "timeoutSeconds": 232569106, + "periodSeconds": -1150474479, + "successThreshold": 744319626, + "failureThreshold": -2107743490, + "terminationGracePeriodSeconds": 8569885835306406695 }, "lifecycle": { "postStart": { @@ -622,139 +625,139 @@ }, "httpGet": { "path": "222", - "port": "223", - "host": "224", - "scheme": "s3!Zɾģ毋", + "port": 896430536, + "host": "223", + "scheme": "罴ņ螡źȰ", "httpHeaders": [ { - "name": "225", - "value": "226" + "name": "224", + "value": "225" } ] }, "tcpSocket": { - "port": 391562775, - "host": "227" + "port": 513341278, + "host": "226" } }, "preStop": { "exec": { "command": [ - "228" + "227" ] }, "httpGet": { - "path": "229", - "port": "230", - "host": "231", - "scheme": "ȶ网棊ʢ=wǕɳɷ9Ì", + "path": "228", + "port": 1451056156, + "host": "229", + "scheme": "uʎȺ眖R#", "httpHeaders": [ { - "name": "232", - "value": "233" + "name": "230", + "value": "231" } ] }, "tcpSocket": { - "port": -1364571630, - "host": "234" + "port": "232", + "host": "233" } } }, - "terminationMessagePath": "235", - "terminationMessagePolicy": "ɖ緕ȚÍ勅跦Opwǩ", - "imagePullPolicy": "輓Ɔȓ蹣ɐǛv+8", + "terminationMessagePath": "234", + "terminationMessagePolicy": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ", + "imagePullPolicy": "1ØœȠƬQg鄠", "securityContext": { "capabilities": { "add": [ - "军g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" + "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ" ], "drop": [ - "" + "W:ĸ輦唊#v" ] }, "privileged": false, "seLinuxOptions": { - "user": "236", - "role": "237", - "type": "238", - "level": "239" + "user": "235", + "role": "236", + "type": "237", + "level": "238" }, "windowsOptions": { - "gmsaCredentialSpecName": "240", - "gmsaCredentialSpec": "241", - "runAsUserName": "242" + "gmsaCredentialSpecName": "239", + "gmsaCredentialSpec": "240", + "runAsUserName": "241" }, - "runAsUser": -5821728037462880994, - "runAsGroup": 4468469649483616089, - "runAsNonRoot": false, + "runAsUser": 1946087648860511217, + "runAsGroup": 8839567045362091290, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "碧闳ȩr", + "allowPrivilegeEscalation": true, + "procMount": "Ÿ8T 苧yñKJɐ扵", "seccompProfile": { - "type": "", - "localhostProfile": "243" + "type": "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞", + "localhostProfile": "242" } }, - "stdinOnce": true, + "stdin": true, "tty": true } ], "containers": [ { - "name": "244", - "image": "245", + "name": "243", + "image": "244", "command": [ - "246" + "245" ], "args": [ - "247" + "246" ], - "workingDir": "248", + "workingDir": "247", "ports": [ { - "name": "249", - "hostPort": -888240870, - "containerPort": 508868877, - "protocol": "岼昕ĬÇó藢xɮĵȑ6L*Z", - "hostIP": "250" + "name": "248", + "hostPort": 465972736, + "containerPort": -1784617397, + "protocol": "Ƭƶ氩Ȩ\u003c6", + "hostIP": "249" } ], "envFrom": [ { - "prefix": "251", + "prefix": "250", "configMapRef": { - "name": "252", + "name": "251", "optional": false }, "secretRef": { - "name": "253", - "optional": false + "name": "252", + "optional": true } } ], "env": [ { - "name": "254", - "value": "255", + "name": "253", + "value": "254", "valueFrom": { "fieldRef": { - "apiVersion": "256", - "fieldPath": "257" + "apiVersion": "255", + "fieldPath": "256" }, "resourceFieldRef": { - "containerName": "258", - "resource": "259", - "divisor": "774" + "containerName": "257", + "resource": "258", + "divisor": "9" }, "configMapKeyRef": { - "name": "260", - "key": "261", - "optional": false + "name": "259", + "key": "260", + "optional": true }, "secretKeyRef": { - "name": "262", - "key": "263", + "name": "261", + "key": "262", "optional": false } } @@ -762,254 +765,255 @@ ], "resources": { "limits": { - "$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ": "393" + "lNKƙ順\\E¦队偯J僳徥淳": "93" }, "requests": { - "\u003c6": "446" + "媀瓄\u0026翜舞拉Œɥ颶妧Ö闊": "472" } }, "volumeMounts": [ { - "name": "264", - "readOnly": true, - "mountPath": "265", - "subPath": "266", - "mountPropagation": "翑0展}硐庰%皧V垾", - "subPathExpr": "267" + "name": "263", + "mountPath": "264", + "subPath": "265", + "mountPropagation": "ĠM蘇KŅ/»頸+SÄ蚃", + "subPathExpr": "266" } ], "volumeDevices": [ { - "name": "268", - "devicePath": "269" + "name": "267", + "devicePath": "268" } ], "livenessProbe": { "exec": { "command": [ - "270" + "269" ] }, "httpGet": { - "path": "271", - "port": "272", - "host": "273", - "scheme": "E¦", + "path": "270", + "port": -1468297794, + "host": "271", + "scheme": "磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "272", + "value": "273" } ] }, "tcpSocket": { - "port": "276", - "host": "277" + "port": "274", + "host": "275" }, - "initialDelaySeconds": 1868887309, - "timeoutSeconds": -528664199, - "periodSeconds": -316996074, - "successThreshold": 1933968533, - "failureThreshold": 549215478 + "initialDelaySeconds": 1308698792, + "timeoutSeconds": 1401790459, + "periodSeconds": -934378634, + "successThreshold": -1453143878, + "failureThreshold": -1129218498, + "terminationGracePeriodSeconds": 2471155705902100229 }, "readinessProbe": { "exec": { "command": [ - "278" + "276" ] }, "httpGet": { - "path": "279", - "port": -374766088, - "host": "280", - "scheme": "翜舞拉Œ", + "path": "277", + "port": -614098868, + "host": "278", + "scheme": "ȗÔÂɘɢ", "httpHeaders": [ { - "name": "281", - "value": "282" + "name": "279", + "value": "280" } ] }, "tcpSocket": { - "port": "283", - "host": "284" + "port": 802134138, + "host": "281" }, - "initialDelaySeconds": -190183379, - "timeoutSeconds": -940334911, - "periodSeconds": -341287812, - "successThreshold": 2030115750, - "failureThreshold": 1847163341 + "initialDelaySeconds": -942399354, + "timeoutSeconds": 1264624019, + "periodSeconds": -1803854120, + "successThreshold": -1412915219, + "failureThreshold": 323903711, + "terminationGracePeriodSeconds": -9192251189672401053 }, "startupProbe": { "exec": { "command": [ - "285" + "282" ] }, "httpGet": { - "path": "286", - "port": 567263590, - "host": "287", - "scheme": "KŅ/", + "path": "283", + "port": -992558278, + "host": "284", + "scheme": "鯂²静", "httpHeaders": [ { - "name": "288", - "value": "289" + "name": "285", + "value": "286" } ] }, "tcpSocket": { - "port": "290", - "host": "291" + "port": -402384013, + "host": "287" }, - "initialDelaySeconds": -1894250541, - "timeoutSeconds": 1962818731, - "periodSeconds": 1315054653, - "successThreshold": 711020087, - "failureThreshold": 1103049140 + "initialDelaySeconds": -181601395, + "timeoutSeconds": -617381112, + "periodSeconds": 1851229369, + "successThreshold": -560238386, + "failureThreshold": 1658749995, + "terminationGracePeriodSeconds": -4030490994049395944 }, "lifecycle": { "postStart": { "exec": { "command": [ - "292" + "288" ] }, "httpGet": { - "path": "293", - "port": -2128108224, - "host": "294", - "scheme": "δ摖", + "path": "289", + "port": "290", + "host": "291", + "scheme": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", "httpHeaders": [ { - "name": "295", - "value": "296" + "name": "292", + "value": "293" } ] }, "tcpSocket": { - "port": "297", - "host": "298" + "port": 1167615307, + "host": "294" } }, "preStop": { "exec": { "command": [ - "299" + "295" ] }, "httpGet": { - "path": "300", - "port": "301", - "host": "302", + "path": "296", + "port": -115833863, + "host": "297", + "scheme": "ì", "httpHeaders": [ { - "name": "303", - "value": "304" + "name": "298", + "value": "299" } ] }, "tcpSocket": { - "port": "305", - "host": "306" + "port": "300", + "host": "301" } } }, - "terminationMessagePath": "307", - "terminationMessagePolicy": "ƺ蛜6Ɖ飴ɎiǨź", - "imagePullPolicy": "囌{屿oiɥ嵐sC", + "terminationMessagePath": "302", + "terminationMessagePolicy": "ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ", + "imagePullPolicy": "ǚ鍰\\縑ɀ撑¼蠾8餑噭", "securityContext": { "capabilities": { "add": [ - "Ǻ鱎ƙ;Nŕ" + "ņ" ], "drop": [ - "Jih亏yƕ丆録²" + ")DŽ髐njʉBn(fǂ" ] }, "privileged": false, "seLinuxOptions": { - "user": "308", - "role": "309", - "type": "310", - "level": "311" + "user": "303", + "role": "304", + "type": "305", + "level": "306" }, "windowsOptions": { - "gmsaCredentialSpecName": "312", - "gmsaCredentialSpec": "313", - "runAsUserName": "314" + "gmsaCredentialSpecName": "307", + "gmsaCredentialSpec": "308", + "runAsUserName": "309" }, - "runAsUser": -607313695104609402, - "runAsGroup": 2179199799235189619, - "runAsNonRoot": true, + "runAsUser": -6717020695319852049, + "runAsGroup": -495558749504439559, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­", + "procMount": "Ǫʓ)ǂť嗆u", "seccompProfile": { - "type": "ɔ幩še", - "localhostProfile": "315" + "type": "晲T[irȎ3Ĕ\\", + "localhostProfile": "310" } }, - "stdin": true, - "stdinOnce": true, "tty": true } ], "ephemeralContainers": [ { - "name": "316", - "image": "317", + "name": "311", + "image": "312", "command": [ - "318" + "313" ], "args": [ - "319" + "314" ], - "workingDir": "320", + "workingDir": "315", "ports": [ { - "name": "321", - "hostPort": -2113700533, - "containerPort": -2130294761, - "protocol": "pɵ{", - "hostIP": "322" + "name": "316", + "hostPort": -1656699070, + "containerPort": -1918622971, + "protocol": "ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz", + "hostIP": "317" } ], "envFrom": [ { - "prefix": "323", + "prefix": "318", "configMapRef": { - "name": "324", + "name": "319", "optional": true }, "secretRef": { - "name": "325", + "name": "320", "optional": false } } ], "env": [ { - "name": "326", - "value": "327", + "name": "321", + "value": "322", "valueFrom": { "fieldRef": { - "apiVersion": "328", - "fieldPath": "329" + "apiVersion": "323", + "fieldPath": "324" }, "resourceFieldRef": { - "containerName": "330", - "resource": "331", - "divisor": "878" + "containerName": "325", + "resource": "326", + "divisor": "69" }, "configMapKeyRef": { - "name": "332", - "key": "333", + "name": "327", + "key": "328", "optional": true }, "secretKeyRef": { - "name": "334", - "key": "335", + "name": "329", + "key": "330", "optional": false } } @@ -1017,251 +1021,254 @@ ], "resources": { "limits": { - "銆jʒǚ鍰\\縑": "992" + "1b": "328" }, "requests": { - "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ": "400" + "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊": "699" } }, "volumeMounts": [ { - "name": "336", - "mountPath": "337", - "subPath": "338", - "mountPropagation": "(fǂǢ曣ŋayå", - "subPathExpr": "339" + "name": "331", + "readOnly": true, + "mountPath": "332", + "subPath": "333", + "mountPropagation": "Ik(dŊiɢzĮ蛋I", + "subPathExpr": "334" } ], "volumeDevices": [ { - "name": "340", - "devicePath": "341" + "name": "335", + "devicePath": "336" } ], "livenessProbe": { "exec": { "command": [ - "342" + "337" ] }, "httpGet": { - "path": "343", - "port": 1616390418, - "host": "344", - "scheme": "趭(娕uE增猍ǵ x", + "path": "338", + "port": "339", + "host": "340", + "scheme": "ȥ}礤铟怖ý萜Ǖ", "httpHeaders": [ { - "name": "345", - "value": "346" + "name": "341", + "value": "342" } ] }, "tcpSocket": { - "port": "347", - "host": "348" + "port": -1088996269, + "host": "343" }, - "initialDelaySeconds": -1320027474, - "timeoutSeconds": -1750169306, - "periodSeconds": 2112112129, - "successThreshold": 528603974, - "failureThreshold": -342387625 + "initialDelaySeconds": -1922458514, + "timeoutSeconds": 1480364858, + "periodSeconds": 692511776, + "successThreshold": -1231653807, + "failureThreshold": -36573584, + "terminationGracePeriodSeconds": -2524837786321986358 }, "readinessProbe": { "exec": { "command": [ - "349" + "344" ] }, "httpGet": { - "path": "350", - "port": "351", - "host": "352", - "scheme": "/Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ", + "path": "345", + "port": 1219644543, + "host": "346", + "scheme": "ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy", "httpHeaders": [ { - "name": "353", - "value": "354" + "name": "347", + "value": "348" } ] }, "tcpSocket": { - "port": "355", - "host": "356" + "port": "349", + "host": "350" }, - "initialDelaySeconds": 2036955392, - "timeoutSeconds": 626243488, - "periodSeconds": -1920304485, - "successThreshold": -1842062977, - "failureThreshold": 1424401373 + "initialDelaySeconds": 652646450, + "timeoutSeconds": 757223010, + "periodSeconds": -1912967242, + "successThreshold": -2106399359, + "failureThreshold": 1443270783, + "terminationGracePeriodSeconds": -4462364494060795190 }, "startupProbe": { "exec": { "command": [ - "357" + "351" ] }, "httpGet": { - "path": "358", - "port": "359", - "host": "360", - "scheme": "æ盪泙若`l}Ñ蠂Ü", + "path": "352", + "port": -902839620, + "host": "353", + "scheme": "縆łƑ[澔槃JŵǤ桒ɴ鉂W", "httpHeaders": [ { - "name": "361", - "value": "362" + "name": "354", + "value": "355" } ] }, "tcpSocket": { - "port": 1388874570, - "host": "363" + "port": "356", + "host": "357" }, - "initialDelaySeconds": 1618861163, - "timeoutSeconds": 413903479, - "periodSeconds": 1708236944, - "successThreshold": -1192140557, - "failureThreshold": 1961354355 + "initialDelaySeconds": -574742201, + "timeoutSeconds": -1182912186, + "periodSeconds": -514169648, + "successThreshold": -1186167291, + "failureThreshold": 64459150, + "terminationGracePeriodSeconds": -4166164136222066963 }, "lifecycle": { "postStart": { "exec": { "command": [ - "364" + "358" ] }, "httpGet": { - "path": "365", - "port": -1347045470, - "host": "366", - "scheme": "¨Ix糂腂ǂǚŜEuEy", + "path": "359", + "port": "360", + "host": "361", + "scheme": "卶滿筇ȟP:/a殆诵H玲鑠ĭ$#", "httpHeaders": [ { - "name": "367", - "value": "368" + "name": "362", + "value": "363" } ] }, "tcpSocket": { - "port": -1945921250, - "host": "369" + "port": "364", + "host": "365" } }, "preStop": { "exec": { "command": [ - "370" + "366" ] }, "httpGet": { - "path": "371", - "port": 1605974497, - "host": "372", - "scheme": "m坊柩劄奼[ƕƑĝ", + "path": "367", + "port": 1791758702, + "host": "368", + "scheme": "tl敷斢杧ż鯀", "httpHeaders": [ { - "name": "373", - "value": "374" + "name": "369", + "value": "370" } ] }, "tcpSocket": { - "port": 293042649, - "host": "375" + "port": "371", + "host": "372" } } }, - "terminationMessagePath": "376", - "terminationMessagePolicy": "ǔvÄÚ×p鬷m罂o3ǰ廋i乳'", - "imagePullPolicy": "xƂ9阠", + "terminationMessagePath": "373", + "terminationMessagePolicy": "鸔ɧWǘ炙", + "imagePullPolicy": "ǰ詀ǿ忀oɎƺL", "securityContext": { "capabilities": { "add": [ - "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł" + "鬬$矐_敕ű嵞嬯t{Eɾ" ], "drop": [ - "[澔槃JŵǤ桒" + "Ȯ-湷D谹気Ƀ秮òƬɸĻo:" ] }, "privileged": true, "seLinuxOptions": { - "user": "377", - "role": "378", - "type": "379", - "level": "380" + "user": "374", + "role": "375", + "type": "376", + "level": "377" }, "windowsOptions": { - "gmsaCredentialSpecName": "381", - "gmsaCredentialSpec": "382", - "runAsUserName": "383" + "gmsaCredentialSpecName": "378", + "gmsaCredentialSpec": "379", + "runAsUserName": "380" }, - "runAsUser": -122212946149411097, - "runAsGroup": -6534543348401656067, + "runAsUser": 2114633499332155907, + "runAsGroup": -1232960403847883886, "runAsNonRoot": true, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "", + "procMount": "铳s44矕Ƈè*鑏=", "seccompProfile": { - "type": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠", - "localhostProfile": "384" + "type": "ʨ|ǓÓ敆OɈÏ 瞍髃#", + "localhostProfile": "381" } }, - "stdinOnce": true, - "targetContainerName": "385" + "stdin": true, + "tty": true, + "targetContainerName": "382" } ], - "restartPolicy": "S", - "terminationGracePeriodSeconds": 2296052591495331583, - "activeDeadlineSeconds": 4885169856784949611, - "dnsPolicy": "Q橱9ij\\Ď愝Ű藛b", + "restartPolicy": "W歹s梊ɥʋăƻ", + "terminationGracePeriodSeconds": 1031455728822209328, + "activeDeadlineSeconds": 579099652389333099, + "dnsPolicy": "'蠨磼O_h盌3+Œ9两@8", "nodeSelector": { - "386": "387" + "383": "384" }, - "serviceAccountName": "388", - "serviceAccount": "389", + "serviceAccountName": "385", + "serviceAccount": "386", "automountServiceAccountToken": true, - "nodeName": "390", + "nodeName": "387", "hostNetwork": true, - "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "391", - "role": "392", - "type": "393", - "level": "394" + "user": "388", + "role": "389", + "type": "390", + "level": "391" }, "windowsOptions": { - "gmsaCredentialSpecName": "395", - "gmsaCredentialSpec": "396", - "runAsUserName": "397" + "gmsaCredentialSpecName": "392", + "gmsaCredentialSpec": "393", + "runAsUserName": "394" }, - "runAsUser": 711750319800111437, - "runAsGroup": -6445633177475289195, + "runAsUser": 3011215457607075123, + "runAsGroup": -2549376519991319825, "runAsNonRoot": true, "supplementalGroups": [ - -7316357525352987834 + 8667724420266764868 ], - "fsGroup": 7306468936162090894, + "fsGroup": -8322686588708543096, "sysctls": [ { - "name": "398", - "value": "399" + "name": "395", + "value": "396" } ], - "fsGroupChangePolicy": "肄$鬬", + "fsGroupChangePolicy": "4虵p蓋沥7uPƒ", "seccompProfile": { - "type": "矐_", - "localhostProfile": "400" + "type": "", + "localhostProfile": "397" } }, "imagePullSecrets": [ { - "name": "401" + "name": "398" } ], - "hostname": "402", - "subdomain": "403", + "hostname": "399", + "subdomain": "400", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1269,19 +1276,19 @@ { "matchExpressions": [ { - "key": "404", - "operator": "豎穜姰l咑耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌ", + "key": "401", + "operator": "灭ƴɦ燻踸陴Sĕ濦", "values": [ - "405" + "402" ] } ], "matchFields": [ { - "key": "406", - "operator": "柯?B俋¬h`職铳s44矕Ƈ", + "key": "403", + "operator": "筿ɾ", "values": [ - "407" + "404" ] } ] @@ -1290,23 +1297,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1805682547, + "weight": -259047269, "preference": { "matchExpressions": [ { - "key": "408", - "operator": "='ʨ|ǓÓ敆OɈÏ 瞍髃", + "key": "405", + "operator": "霎ȃň", "values": [ - "409" + "406" ] } ], "matchFields": [ { - "key": "410", - "operator": "ƒK07曳w", + "key": "407", + "operator": "ʓ滨", "values": [ - "411" + "408" ] } ] @@ -1319,26 +1326,26 @@ { "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" + "KA-._d._.Um.-__0": "5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I" }, "matchExpressions": [ { - "key": "67F3p2_-_AmD-.0P", - "operator": "DoesNotExist" + "key": "3QC1--L--v_Z--ZgC", + "operator": "Exists" } ] }, "namespaces": [ - "418" + "415" ], - "topologyKey": "419", + "topologyKey": "416", "namespaceSelector": { "matchLabels": { - "6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w": "d-5X1rh-K5y_AzOBW.9oE9_6.--v1r" + "1rhm-5y--z-0/b17ca-_p-y.eQ9": "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" }, "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", + "key": "7Vz_6.Hz_V_.r_v_._X", "operator": "Exists" } ] @@ -1347,31 +1354,37 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -450654683, + "weight": 2001693468, "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" + "8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2": "PE..24-O._.v._9-cz.-Y6T4gz" }, "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": "Q_--v-3-BzO5z80n_HtW", + "operator": "NotIn", + "values": [ + "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w" + ] } ] }, "namespaces": [ - "432" + "429" ], - "topologyKey": "433", + "topologyKey": "430", "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" + "f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9": "P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA" }, "matchExpressions": [ { - "key": "C-_20", - "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" + ] } ] } @@ -1384,30 +1397,33 @@ { "labelSelector": { "matchLabels": { - "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q" + "4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6": "pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C" }, "matchExpressions": [ { - "key": "4b699/B9n.2", - "operator": "In", + "key": "T", + "operator": "NotIn", "values": [ - "MM7-.e.x" + "" ] } ] }, "namespaces": [ - "446" + "443" ], - "topologyKey": "447", + "topologyKey": "444", "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" + "T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI": "I-mt4...rQ" }, "matchExpressions": [ { - "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", - "operator": "DoesNotExist" + "key": "vSW_4-__h", + "operator": "In", + "values": [ + "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1" + ] } ] } @@ -1415,34 +1431,34 @@ ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1131487788, + "weight": 1920802622, "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" + "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": "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", + "key": "8v---a9j23/9", + "operator": "In", "values": [ - "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m" + "y__y.9O.L-.m.3h" ] } ] }, "namespaces": [ - "460" + "457" ], - "topologyKey": "461", + "topologyKey": "458", "namespaceSelector": { "matchLabels": { - "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K" + "VM5..-N_H_55..--E3_2D-1DW__o_8": "kzB7U_.Q.45cy-.._K" }, "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", - "operator": "DoesNotExist" + "key": "6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG", + "operator": "Exists" } ] } @@ -1451,66 +1467,66 @@ ] } }, - "schedulerName": "468", + "schedulerName": "465", "tolerations": [ { - "key": "469", - "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", - "value": "470", - "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", - "tolerationSeconds": -3147305732428645642 + "key": "466", + "operator": "NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ", + "value": "467", + "effect": ";牆詒ĸąsƶ", + "tolerationSeconds": -456102350746071856 } ], "hostAliases": [ { - "ip": "471", + "ip": "468", "hostnames": [ - "472" + "469" ] } ], - "priorityClassName": "473", - "priority": -1756088332, + "priorityClassName": "470", + "priority": 1188651641, "dnsConfig": { "nameservers": [ - "474" + "471" ], "searches": [ - "475" + "472" ], "options": [ { - "name": "476", - "value": "477" + "name": "473", + "value": "474" } ] }, "readinessGates": [ { - "conditionType": "#sM網" + "conditionType": "lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW" } ], - "runtimeClassName": "478", - "enableServiceLinks": true, - "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", + "runtimeClassName": "475", + "enableServiceLinks": false, + "preemptionPolicy": "džH0ƾ瘿¸'q钨羲;\"T#sM網mA", "overhead": { - "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" + "»Š": "727" }, "topologySpreadConstraints": [ { - "maxSkew": -447559705, - "topologyKey": "479", - "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", + "maxSkew": -388643187, + "topologyKey": "476", + "whenUnsatisfiable": "i僠噚恗N", "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" + "z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0": "g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T" }, "matchExpressions": [ { - "key": "KTlO.__0PX", + "key": "br..1.--S-w-5_..D.pz_-ad", "operator": "In", "values": [ - "V6K_.3_583-6.f-.9-.V..Q-K_6_3" + "Q.__y644" ] } ] @@ -1522,18 +1538,18 @@ } }, "status": { - "replicas": -1350756342, - "fullyLabeledReplicas": 131165488, - "readyReplicas": 1801862647, - "availableReplicas": -212999359, - "observedGeneration": 6343420286878457918, + "replicas": -2095627603, + "fullyLabeledReplicas": 516555648, + "readyReplicas": 2104777337, + "availableReplicas": 876226690, + "observedGeneration": 1436288218546692842, "conditions": [ { - "type": "", - "status": "ʋǞbȫ魙Ōȇ", - "lastTransitionTime": "2443-02-01T11:09:03Z", - "reason": "486", - "message": "487" + "type": "C`牯雫", + "status": "%ÿ¼璤ňɈȀę", + "lastTransitionTime": "2951-06-01T06:00:17Z", + "reason": "483", + "message": "484" } ] } 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 3b4088e5a9f9..febb4ed35feb 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 481bd50f435c..94442a51804e 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 @@ -71,482 +71,493 @@ spec: selfLink: "28" uid: ʬ spec: - activeDeadlineSeconds: 4885169856784949611 + activeDeadlineSeconds: 579099652389333099 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "408" - operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃 + - key: "405" + operator: 霎ȃň values: - - "409" + - "406" matchFields: - - key: "410" - operator: ƒK07曳w + - key: "407" + operator: ʓ滨 values: - - "411" - weight: 1805682547 + - "408" + weight: -259047269 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "404" - operator: 豎穜姰l咑耖p^鏋蛹Ƚȿ醏g遧Ȋ飂廤Ƌ + - key: "401" + operator: 灭ƴɦ燻踸陴Sĕ濦 values: - - "405" + - "402" matchFields: - - key: "406" - operator: 柯?B俋¬h`職铳s44矕Ƈ + - key: "403" + operator: 筿ɾ values: - - "407" + - "404" 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 + - key: Q_--v-3-BzO5z80n_HtW + operator: NotIn + values: + - 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w 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 + 8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2: PE..24-O._.v._9-cz.-Y6T4gz namespaceSelector: matchExpressions: - - key: C-_20 - 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: - 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 + ? f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9 + : P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA namespaces: - - "432" - topologyKey: "433" - weight: -450654683 + - "429" + topologyKey: "430" + weight: 2001693468 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 67F3p2_-_AmD-.0P - operator: DoesNotExist + - key: 3QC1--L--v_Z--ZgC + operator: Exists 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 + KA-._d._.Um.-__0: 5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I 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 + - key: 7Vz_6.Hz_V_.r_v_._X operator: Exists matchLabels: - 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r + 1rhm-5y--z-0/b17ca-_p-y.eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX namespaces: - - "418" - topologyKey: "419" + - "415" + topologyKey: "416" 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 + - key: 8v---a9j23/9 + operator: In values: - - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m + - y__y.9O.L-.m.3h 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 + 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 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 - operator: DoesNotExist + - key: 6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG + operator: Exists matchLabels: - 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K + VM5..-N_H_55..--E3_2D-1DW__o_8: kzB7U_.Q.45cy-.._K namespaces: - - "460" - topologyKey: "461" - weight: 1131487788 + - "457" + topologyKey: "458" + weight: 1920802622 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4b699/B9n.2 - operator: In + - key: T + operator: NotIn values: - - MM7-.e.x + - "" matchLabels: - fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q + 4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C namespaceSelector: matchExpressions: - - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - operator: DoesNotExist + - key: vSW_4-__h + operator: In + values: + - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1 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 + T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ namespaces: - - "446" - topologyKey: "447" + - "443" + topologyKey: "444" automountServiceAccountToken: true containers: - args: - - "247" - command: - "246" + command: + - "245" env: - - name: "254" - value: "255" + - name: "253" + value: "254" valueFrom: configMapKeyRef: - key: "261" - name: "260" - optional: false + key: "260" + name: "259" + optional: true fieldRef: - apiVersion: "256" - fieldPath: "257" + apiVersion: "255" + fieldPath: "256" resourceFieldRef: - containerName: "258" - divisor: "774" - resource: "259" + containerName: "257" + divisor: "9" + resource: "258" secretKeyRef: - key: "263" - name: "262" + key: "262" + name: "261" optional: false envFrom: - configMapRef: - name: "252" + name: "251" optional: false - prefix: "251" + prefix: "250" secretRef: - name: "253" - optional: false - image: "245" - imagePullPolicy: 囌{屿oiɥ嵐sC + name: "252" + optional: true + image: "244" + imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭 lifecycle: postStart: exec: command: - - "292" + - "288" httpGet: - host: "294" + host: "291" httpHeaders: - - name: "295" - value: "296" - path: "293" - port: -2128108224 - scheme: δ摖 + - name: "292" + value: "293" + path: "289" + port: "290" + scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 tcpSocket: - host: "298" - port: "297" + host: "294" + port: 1167615307 preStop: exec: command: - - "299" + - "295" httpGet: - host: "302" + host: "297" httpHeaders: - - name: "303" - value: "304" - path: "300" - port: "301" + - name: "298" + value: "299" + path: "296" + port: -115833863 + scheme: ì tcpSocket: - host: "306" - port: "305" + host: "301" + port: "300" livenessProbe: exec: command: - - "270" - failureThreshold: 549215478 + - "269" + failureThreshold: -1129218498 httpGet: - host: "273" + host: "271" httpHeaders: - - name: "274" - value: "275" - path: "271" - port: "272" - scheme: E¦ - initialDelaySeconds: 1868887309 - periodSeconds: -316996074 - successThreshold: 1933968533 + - name: "272" + value: "273" + path: "270" + port: -1468297794 + scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ + initialDelaySeconds: 1308698792 + periodSeconds: -934378634 + successThreshold: -1453143878 tcpSocket: - host: "277" - port: "276" - timeoutSeconds: -528664199 - name: "244" + host: "275" + port: "274" + terminationGracePeriodSeconds: 2471155705902100229 + timeoutSeconds: 1401790459 + name: "243" ports: - - containerPort: 508868877 - hostIP: "250" - hostPort: -888240870 - name: "249" - protocol: 岼昕ĬÇó藢xɮĵȑ6L*Z + - containerPort: -1784617397 + hostIP: "249" + hostPort: 465972736 + name: "248" + protocol: Ƭƶ氩Ȩ<6 readinessProbe: exec: command: - - "278" - failureThreshold: 1847163341 + - "276" + failureThreshold: 323903711 httpGet: - host: "280" + host: "278" httpHeaders: - - name: "281" - value: "282" - path: "279" - port: -374766088 - scheme: 翜舞拉Œ - initialDelaySeconds: -190183379 - periodSeconds: -341287812 - successThreshold: 2030115750 + - name: "279" + value: "280" + path: "277" + port: -614098868 + scheme: ȗÔÂɘɢ + initialDelaySeconds: -942399354 + periodSeconds: -1803854120 + successThreshold: -1412915219 tcpSocket: - host: "284" - port: "283" - timeoutSeconds: -940334911 + host: "281" + port: 802134138 + terminationGracePeriodSeconds: -9192251189672401053 + timeoutSeconds: 1264624019 resources: limits: - $î.Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ: "393" + lNKƙ順\E¦队偯J僳徥淳: "93" requests: - <6: "446" + 媀瓄&翜舞拉Œɥ颶妧Ö闊: "472" securityContext: allowPrivilegeEscalation: true capabilities: add: - - Ǻ鱎ƙ;Nŕ + - ņ drop: - - Jih亏yƕ丆録² + - )DŽ髐njʉBn(fǂ privileged: false - procMount: 砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­ + procMount: Ǫʓ)ǂť嗆u readOnlyRootFilesystem: true - runAsGroup: 2179199799235189619 - runAsNonRoot: true - runAsUser: -607313695104609402 + runAsGroup: -495558749504439559 + runAsNonRoot: false + runAsUser: -6717020695319852049 seLinuxOptions: - level: "311" - role: "309" - type: "310" - user: "308" + level: "306" + role: "304" + type: "305" + user: "303" seccompProfile: - localhostProfile: "315" - type: ɔ幩še + localhostProfile: "310" + type: 晲T[irȎ3Ĕ\ windowsOptions: - gmsaCredentialSpec: "313" - gmsaCredentialSpecName: "312" - runAsUserName: "314" + gmsaCredentialSpec: "308" + gmsaCredentialSpecName: "307" + runAsUserName: "309" startupProbe: exec: command: - - "285" - failureThreshold: 1103049140 + - "282" + failureThreshold: 1658749995 httpGet: - host: "287" + host: "284" httpHeaders: - - name: "288" - value: "289" - path: "286" - port: 567263590 - scheme: KŅ/ - initialDelaySeconds: -1894250541 - periodSeconds: 1315054653 - successThreshold: 711020087 + - name: "285" + value: "286" + path: "283" + port: -992558278 + scheme: 鯂²静 + initialDelaySeconds: -181601395 + periodSeconds: 1851229369 + successThreshold: -560238386 tcpSocket: - host: "291" - port: "290" - timeoutSeconds: 1962818731 - stdin: true - stdinOnce: true - terminationMessagePath: "307" - terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź + host: "287" + port: -402384013 + terminationGracePeriodSeconds: -4030490994049395944 + timeoutSeconds: -617381112 + terminationMessagePath: "302" + terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ tty: true volumeDevices: - - devicePath: "269" - name: "268" + - devicePath: "268" + name: "267" volumeMounts: - - mountPath: "265" - mountPropagation: 翑0展}硐庰%皧V垾 - name: "264" - readOnly: true - subPath: "266" - subPathExpr: "267" - workingDir: "248" + - mountPath: "264" + mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃 + name: "263" + subPath: "265" + subPathExpr: "266" + workingDir: "247" dnsConfig: nameservers: - - "474" + - "471" options: - - name: "476" - value: "477" + - name: "473" + value: "474" searches: - - "475" - dnsPolicy: Q橱9ij\Ď愝Ű藛b - enableServiceLinks: true + - "472" + dnsPolicy: '''蠨磼O_h盌3+Œ9两@8' + enableServiceLinks: false ephemeralContainers: - args: - - "319" + - "314" command: - - "318" + - "313" env: - - name: "326" - value: "327" + - name: "321" + value: "322" valueFrom: configMapKeyRef: - key: "333" - name: "332" + key: "328" + name: "327" optional: true fieldRef: - apiVersion: "328" - fieldPath: "329" + apiVersion: "323" + fieldPath: "324" resourceFieldRef: - containerName: "330" - divisor: "878" - resource: "331" + containerName: "325" + divisor: "69" + resource: "326" secretKeyRef: - key: "335" - name: "334" + key: "330" + name: "329" optional: false envFrom: - configMapRef: - name: "324" + name: "319" optional: true - prefix: "323" + prefix: "318" secretRef: - name: "325" + name: "320" optional: false - image: "317" - imagePullPolicy: xƂ9阠 + image: "312" + imagePullPolicy: ǰ詀ǿ忀oɎƺL lifecycle: postStart: exec: command: - - "364" + - "358" httpGet: - host: "366" + host: "361" httpHeaders: - - name: "367" - value: "368" - path: "365" - port: -1347045470 - scheme: ¨Ix糂腂ǂǚŜEuEy + - name: "362" + value: "363" + path: "359" + port: "360" + scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$# tcpSocket: - host: "369" - port: -1945921250 + host: "365" + port: "364" preStop: exec: command: - - "370" + - "366" httpGet: - host: "372" + host: "368" httpHeaders: - - name: "373" - value: "374" - path: "371" - port: 1605974497 - scheme: m坊柩劄奼[ƕƑĝ + - name: "369" + value: "370" + path: "367" + port: 1791758702 + scheme: tl敷斢杧ż鯀 tcpSocket: - host: "375" - port: 293042649 + host: "372" + port: "371" livenessProbe: exec: command: - - "342" - failureThreshold: -342387625 + - "337" + failureThreshold: -36573584 httpGet: - host: "344" + host: "340" httpHeaders: - - name: "345" - value: "346" - path: "343" - port: 1616390418 - scheme: 趭(娕uE增猍ǵ x - initialDelaySeconds: -1320027474 - periodSeconds: 2112112129 - successThreshold: 528603974 + - name: "341" + value: "342" + path: "338" + port: "339" + scheme: ȥ}礤铟怖ý萜Ǖ + initialDelaySeconds: -1922458514 + periodSeconds: 692511776 + successThreshold: -1231653807 tcpSocket: - host: "348" - port: "347" - timeoutSeconds: -1750169306 - name: "316" + host: "343" + port: -1088996269 + terminationGracePeriodSeconds: -2524837786321986358 + timeoutSeconds: 1480364858 + name: "311" ports: - - containerPort: -2130294761 - hostIP: "322" - hostPort: -2113700533 - name: "321" - protocol: pɵ{ + - containerPort: -1918622971 + hostIP: "317" + hostPort: -1656699070 + name: "316" + protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz readinessProbe: exec: command: - - "349" - failureThreshold: 1424401373 + - "344" + failureThreshold: 1443270783 httpGet: - host: "352" + host: "346" httpHeaders: - - name: "353" - value: "354" - path: "350" - port: "351" - scheme: /Ȁĵ鴁ĩȲǸ|蕎'佉賞ǧ - initialDelaySeconds: 2036955392 - periodSeconds: -1920304485 - successThreshold: -1842062977 + - name: "347" + value: "348" + path: "345" + port: 1219644543 + scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy + initialDelaySeconds: 652646450 + periodSeconds: -1912967242 + successThreshold: -2106399359 tcpSocket: - host: "356" - port: "355" - timeoutSeconds: 626243488 + host: "350" + port: "349" + terminationGracePeriodSeconds: -4462364494060795190 + timeoutSeconds: 757223010 resources: limits: - 銆jʒǚ鍰\縑: "992" + 1b: "328" requests: - 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ: "400" + '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699" securityContext: allowPrivilegeEscalation: false capabilities: add: - - wy¶熀ďJZ漤ŗ坟Ů郵[+扴ȨŮ+朷Ǝ膯lj + - o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ drop: - - "" + - W:ĸ輦唊#v privileged: false - procMount: 碧闳ȩr + procMount: Ÿ8T 苧yñKJɐ扵 readOnlyRootFilesystem: true - runAsGroup: 4468469649483616089 - runAsNonRoot: false - runAsUser: -5821728037462880994 + runAsGroup: 8839567045362091290 + runAsNonRoot: true + runAsUser: 1946087648860511217 seLinuxOptions: - level: "239" - role: "237" - type: "238" - user: "236" + level: "238" + role: "236" + type: "237" + user: "235" seccompProfile: - localhostProfile: "243" - type: "" + localhostProfile: "242" + type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 windowsOptions: - gmsaCredentialSpec: "241" - gmsaCredentialSpecName: "240" - runAsUserName: "242" + gmsaCredentialSpec: "240" + gmsaCredentialSpecName: "239" + runAsUserName: "241" startupProbe: exec: command: - "214" - failureThreshold: -1150474479 + failureThreshold: -2107743490 httpGet: - host: "217" + host: "216" httpHeaders: - - name: "218" - value: "219" + - name: "217" + value: "218" path: "215" - port: "216" - scheme: ĺɗŹ倗S晒嶗UÐ_ƮA攤 - initialDelaySeconds: 1885897314 - periodSeconds: 1054858106 - successThreshold: 232569106 + port: 1623772781 + scheme: UÐ_ƮA攤/ɸɎ + initialDelaySeconds: 1054858106 + periodSeconds: -1150474479 + successThreshold: 744319626 tcpSocket: host: "220" - port: -498930176 - timeoutSeconds: -465677631 - stdinOnce: true - terminationMessagePath: "235" - terminationMessagePolicy: ɖ緕ȚÍ勅跦Opwǩ + port: "219" + terminationGracePeriodSeconds: 8569885835306406695 + timeoutSeconds: 232569106 + stdin: true + terminationMessagePath: "234" + terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' tty: true volumeDevices: - devicePath: "200" @@ -724,66 +738,66 @@ spec: subPath: "197" subPathExpr: "198" workingDir: "179" - nodeName: "390" + nodeName: "387" nodeSelector: - "386": "387" + "383": "384" overhead: - 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452" - preemptionPolicy: ûŠl倳ţü¿Sʟ鍡 - priority: -1756088332 - priorityClassName: "473" + »Š: "727" + preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA + priority: 1188651641 + priorityClassName: "470" readinessGates: - - conditionType: '#sM網' - restartPolicy: S - runtimeClassName: "478" - schedulerName: "468" + - conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW + restartPolicy: W歹s梊ɥʋăƻ + runtimeClassName: "475" + schedulerName: "465" securityContext: - fsGroup: 7306468936162090894 - fsGroupChangePolicy: 肄$鬬 - runAsGroup: -6445633177475289195 + fsGroup: -8322686588708543096 + fsGroupChangePolicy: 4虵p蓋沥7uPƒ + runAsGroup: -2549376519991319825 runAsNonRoot: true - runAsUser: 711750319800111437 + runAsUser: 3011215457607075123 seLinuxOptions: - level: "394" - role: "392" - type: "393" - user: "391" + level: "391" + role: "389" + type: "390" + user: "388" seccompProfile: - localhostProfile: "400" - type: 矐_ + localhostProfile: "397" + type: "" supplementalGroups: - - -7316357525352987834 + - 8667724420266764868 sysctls: - - name: "398" - value: "399" + - name: "395" + value: "396" windowsOptions: - gmsaCredentialSpec: "396" - gmsaCredentialSpecName: "395" - runAsUserName: "397" - serviceAccount: "389" - serviceAccountName: "388" + gmsaCredentialSpec: "393" + gmsaCredentialSpecName: "392" + runAsUserName: "394" + serviceAccount: "386" + serviceAccountName: "385" setHostnameAsFQDN: false - shareProcessNamespace: false - subdomain: "403" - terminationGracePeriodSeconds: 2296052591495331583 + shareProcessNamespace: true + subdomain: "400" + terminationGracePeriodSeconds: 1031455728822209328 tolerations: - - effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸ - key: "469" - operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ - tolerationSeconds: -3147305732428645642 - value: "470" + - effect: ;牆詒ĸąsƶ + key: "466" + operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ + tolerationSeconds: -456102350746071856 + value: "467" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: KTlO.__0PX + - key: br..1.--S-w-5_..D.pz_-ad operator: In values: - - V6K_.3_583-6.f-.9-.V..Q-K_6_3 + - Q.__y644 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 - maxSkew: -447559705 - topologyKey: "479" - whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒 + z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0: g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T + maxSkew: -388643187 + topologyKey: "476" + whenUnsatisfiable: i僠噚恗N volumes: - awsElasticBlockStore: fsType: "47" @@ -1034,14 +1048,14 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -212999359 + availableReplicas: 876226690 conditions: - - lastTransitionTime: "2443-02-01T11:09:03Z" - message: "487" - reason: "486" - status: ʋǞbȫ魙Ōȇ - type: "" - fullyLabeledReplicas: 131165488 - observedGeneration: 6343420286878457918 - readyReplicas: 1801862647 - replicas: -1350756342 + - lastTransitionTime: "2951-06-01T06:00:17Z" + message: "484" + reason: "483" + status: '%ÿ¼璤ňɈȀę' + type: C`牯雫 + fullyLabeledReplicas: 516555648 + observedGeneration: 1436288218546692842 + readyReplicas: 2104777337 + replicas: -2095627603 diff --git a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go index 5fb05e658edf..f87adcd5f32a 100644 --- a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go +++ b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go @@ -21,12 +21,13 @@ package v1 // ProbeApplyConfiguration represents an declarative configuration of the Probe type for use // with apply. type ProbeApplyConfiguration struct { - HandlerApplyConfiguration `json:",inline"` - InitialDelaySeconds *int32 `json:"initialDelaySeconds,omitempty"` - TimeoutSeconds *int32 `json:"timeoutSeconds,omitempty"` - PeriodSeconds *int32 `json:"periodSeconds,omitempty"` - SuccessThreshold *int32 `json:"successThreshold,omitempty"` - FailureThreshold *int32 `json:"failureThreshold,omitempty"` + HandlerApplyConfiguration `json:",inline"` + InitialDelaySeconds *int32 `json:"initialDelaySeconds,omitempty"` + TimeoutSeconds *int32 `json:"timeoutSeconds,omitempty"` + PeriodSeconds *int32 `json:"periodSeconds,omitempty"` + SuccessThreshold *int32 `json:"successThreshold,omitempty"` + FailureThreshold *int32 `json:"failureThreshold,omitempty"` + TerminationGracePeriodSeconds *int64 `json:"terminationGracePeriodSeconds,omitempty"` } // ProbeApplyConfiguration constructs an declarative configuration of the Probe type for use with @@ -98,3 +99,11 @@ func (b *ProbeApplyConfiguration) WithFailureThreshold(value int32) *ProbeApplyC b.FailureThreshold = &value return b } + +// WithTerminationGracePeriodSeconds sets the TerminationGracePeriodSeconds 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 TerminationGracePeriodSeconds field is set to the value of the last call. +func (b *ProbeApplyConfiguration) WithTerminationGracePeriodSeconds(value int64) *ProbeApplyConfiguration { + b.TerminationGracePeriodSeconds = &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 8d5b6225f98e..abe43c0bf471 100644 --- a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go +++ b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go @@ -5514,6 +5514,9 @@ var schemaYAML = typed.YAMLObject(`types: - name: tcpSocket type: namedType: io.k8s.api.core.v1.TCPSocketAction + - name: terminationGracePeriodSeconds + type: + scalar: numeric - name: timeoutSeconds type: scalar: numeric diff --git a/test/e2e/common/node/container_probe.go b/test/e2e/common/node/container_probe.go index 529e2225e31f..eadf89b3e327 100644 --- a/test/e2e/common/node/container_probe.go +++ b/test/e2e/common/node/container_probe.go @@ -420,6 +420,67 @@ var _ = SIGDescribe("Probing container", func() { framework.Failf("Pod became ready in %v, more than 5s after startupProbe succeeded. It means that the delay readiness probes were not initiated immediately after startup finished.", readyIn) } }) + + /* + Release: v1.21 + Testname: Set terminationGracePeriodSeconds for livenessProbe + Description: A pod with a long terminationGracePeriod is created with a shorter livenessProbe-level terminationGracePeriodSeconds. We confirm the shorter termination period is used. + */ + ginkgo.It("should override timeoutGracePeriodSeconds when LivenessProbe field is set [Feature:ProbeTerminationGracePeriod]", func() { + pod := e2epod.NewAgnhostPod(f.Namespace.Name, "liveness-override-"+string(uuid.NewUUID()), nil, nil, nil, "/bin/sh", "-c", "sleep 1000") + longGracePeriod := int64(500) + pod.Spec.TerminationGracePeriodSeconds = &longGracePeriod + + // probe will fail since pod has no http endpoints + shortGracePeriod := int64(5) + pod.Spec.Containers[0].LivenessProbe = &v1.Probe{ + Handler: v1.Handler{ + HTTPGet: &v1.HTTPGetAction{ + Path: "/healthz", + Port: intstr.FromInt(8080), + }, + }, + InitialDelaySeconds: 10, + FailureThreshold: 1, + TerminationGracePeriodSeconds: &shortGracePeriod, + } + + // 10s delay + 10s period + 5s grace period = 25s < 30s << pod-level timeout 500 + RunLivenessTest(f, pod, 1, time.Second*30) + }) + + /* + Release: v1.21 + Testname: Set terminationGracePeriodSeconds for startupProbe + Description: A pod with a long terminationGracePeriod is created with a shorter startupProbe-level terminationGracePeriodSeconds. We confirm the shorter termination period is used. + */ + ginkgo.It("should override timeoutGracePeriodSeconds when StartupProbe field is set [Feature:ProbeTerminationGracePeriod]", func() { + pod := e2epod.NewAgnhostPod(f.Namespace.Name, "startup-override-"+string(uuid.NewUUID()), nil, nil, nil, "/bin/sh", "-c", "sleep 1000") + longGracePeriod := int64(500) + pod.Spec.TerminationGracePeriodSeconds = &longGracePeriod + + // startup probe will fail since pod will sleep for 1000s before becoming ready + shortGracePeriod := int64(5) + pod.Spec.Containers[0].StartupProbe = &v1.Probe{ + Handler: execHandler([]string{"/bin/cat", "/tmp/startup"}), + InitialDelaySeconds: 10, + FailureThreshold: 1, + TerminationGracePeriodSeconds: &shortGracePeriod, + } + // liveness probe always succeeds + pod.Spec.Containers[0].LivenessProbe = &v1.Probe{ + Handler: v1.Handler{ + Exec: &v1.ExecAction{ + Command: []string{"/bin/true"}, + }, + }, + InitialDelaySeconds: 15, + FailureThreshold: 1, + } + + // 10s delay + 10s period + 5s grace period = 25s < 30s << pod-level timeout 500 + RunLivenessTest(f, pod, 1, time.Second*30) + }) }) // GetContainerStartedTime returns the time when the given container started and error if any