diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 56b84c29adf..cafdc75eb4b 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -7159,6 +7159,10 @@ "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, + "startupProbe": { + "$ref": "#/definitions/io.k8s.api.core.v1.Probe", + "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is an alpha feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" + }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" @@ -7372,6 +7376,10 @@ "format": "int32", "type": "integer" }, + "started": { + "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.", + "type": "boolean" + }, "state": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState", "description": "Details about the container's current condition." @@ -7745,6 +7753,10 @@ "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, + "startupProbe": { + "$ref": "#/definitions/io.k8s.api.core.v1.Probe", + "description": "Probes are not allowed for ephemeral containers." + }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" @@ -8422,7 +8434,7 @@ }, "preStop": { "$ref": "#/definitions/io.k8s.api.core.v1.Handler", - "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" + "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" @@ -10003,7 +10015,7 @@ "x-kubernetes-patch-strategy": "merge" }, "initContainers": { - "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", + "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.Container" }, @@ -10344,7 +10356,7 @@ "type": "integer" }, "successThreshold": { - "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.", + "description": "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.", "format": "int32", "type": "integer" }, diff --git a/pkg/apis/apps/v1/zz_generated.defaults.go b/pkg/apis/apps/v1/zz_generated.defaults.go index 0610674c7e3..34c1e188a97 100644 --- a/pkg/apis/apps/v1/zz_generated.defaults.go +++ b/pkg/apis/apps/v1/zz_generated.defaults.go @@ -124,6 +124,12 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -166,6 +172,12 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -207,6 +219,12 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) { corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -313,6 +331,12 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -355,6 +379,12 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -396,6 +426,12 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) { corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -502,6 +538,12 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -544,6 +586,12 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -585,6 +633,12 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) { corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -691,6 +745,12 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -733,6 +793,12 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -774,6 +840,12 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) { corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/apps/v1beta1/zz_generated.defaults.go b/pkg/apis/apps/v1beta1/zz_generated.defaults.go index fd0b8fef68d..c5adde3443c 100644 --- a/pkg/apis/apps/v1beta1/zz_generated.defaults.go +++ b/pkg/apis/apps/v1beta1/zz_generated.defaults.go @@ -120,6 +120,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -162,6 +168,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -203,6 +215,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -309,6 +327,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -351,6 +375,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -392,6 +422,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/apps/v1beta2/zz_generated.defaults.go b/pkg/apis/apps/v1beta2/zz_generated.defaults.go index 3b1fc953676..66c37c16322 100644 --- a/pkg/apis/apps/v1beta2/zz_generated.defaults.go +++ b/pkg/apis/apps/v1beta2/zz_generated.defaults.go @@ -124,6 +124,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -166,6 +172,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -207,6 +219,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -313,6 +331,12 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -355,6 +379,12 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -396,6 +426,12 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -502,6 +538,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -544,6 +586,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -585,6 +633,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -691,6 +745,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -733,6 +793,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -774,6 +840,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/batch/v1/zz_generated.defaults.go b/pkg/apis/batch/v1/zz_generated.defaults.go index 2ac09b77eab..b15d39cdb02 100644 --- a/pkg/apis/batch/v1/zz_generated.defaults.go +++ b/pkg/apis/batch/v1/zz_generated.defaults.go @@ -118,6 +118,12 @@ func SetObjectDefaults_Job(in *v1.Job) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -160,6 +166,12 @@ func SetObjectDefaults_Job(in *v1.Job) { corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + corev1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -201,6 +213,12 @@ func SetObjectDefaults_Job(in *v1.Job) { corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/batch/v1beta1/zz_generated.defaults.go b/pkg/apis/batch/v1beta1/zz_generated.defaults.go index 7ba749e6de8..8a0c09b9a07 100644 --- a/pkg/apis/batch/v1beta1/zz_generated.defaults.go +++ b/pkg/apis/batch/v1beta1/zz_generated.defaults.go @@ -119,6 +119,12 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -161,6 +167,12 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -202,6 +214,12 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -307,6 +325,12 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -349,6 +373,12 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -390,6 +420,12 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/batch/v2alpha1/zz_generated.defaults.go b/pkg/apis/batch/v2alpha1/zz_generated.defaults.go index b7564ca039e..e69b3db1436 100644 --- a/pkg/apis/batch/v2alpha1/zz_generated.defaults.go +++ b/pkg/apis/batch/v2alpha1/zz_generated.defaults.go @@ -119,6 +119,12 @@ func SetObjectDefaults_CronJob(in *v2alpha1.CronJob) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -161,6 +167,12 @@ func SetObjectDefaults_CronJob(in *v2alpha1.CronJob) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -202,6 +214,12 @@ func SetObjectDefaults_CronJob(in *v2alpha1.CronJob) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -307,6 +325,12 @@ func SetObjectDefaults_JobTemplate(in *v2alpha1.JobTemplate) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -349,6 +373,12 @@ func SetObjectDefaults_JobTemplate(in *v2alpha1.JobTemplate) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -390,6 +420,12 @@ func SetObjectDefaults_JobTemplate(in *v2alpha1.JobTemplate) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go index 8a3370a9ad4..8ad0b84c779 100644 --- a/pkg/apis/core/v1/zz_generated.conversion.go +++ b/pkg/apis/core/v1/zz_generated.conversion.go @@ -2881,6 +2881,7 @@ func autoConvert_v1_Container_To_core_Container(in *v1.Container, out *core.Cont out.VolumeDevices = *(*[]core.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices)) out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe)) out.ReadinessProbe = (*core.Probe)(unsafe.Pointer(in.ReadinessProbe)) + out.StartupProbe = (*core.Probe)(unsafe.Pointer(in.StartupProbe)) out.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle)) out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy) @@ -2913,6 +2914,7 @@ func autoConvert_core_Container_To_v1_Container(in *core.Container, out *v1.Cont out.VolumeDevices = *(*[]v1.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices)) out.LivenessProbe = (*v1.Probe)(unsafe.Pointer(in.LivenessProbe)) out.ReadinessProbe = (*v1.Probe)(unsafe.Pointer(in.ReadinessProbe)) + out.StartupProbe = (*v1.Probe)(unsafe.Pointer(in.StartupProbe)) out.Lifecycle = (*v1.Lifecycle)(unsafe.Pointer(in.Lifecycle)) out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePolicy = v1.TerminationMessagePolicy(in.TerminationMessagePolicy) @@ -3090,6 +3092,7 @@ func autoConvert_v1_ContainerStatus_To_core_ContainerStatus(in *v1.ContainerStat out.Image = in.Image out.ImageID = in.ImageID out.ContainerID = in.ContainerID + out.Started = (*bool)(unsafe.Pointer(in.Started)) return nil } @@ -3111,6 +3114,7 @@ func autoConvert_core_ContainerStatus_To_v1_ContainerStatus(in *core.ContainerSt out.Image = in.Image out.ImageID = in.ImageID out.ContainerID = in.ContainerID + out.Started = (*bool)(unsafe.Pointer(in.Started)) return nil } @@ -3463,6 +3467,7 @@ func autoConvert_v1_EphemeralContainerCommon_To_core_EphemeralContainerCommon(in out.VolumeDevices = *(*[]core.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices)) out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe)) out.ReadinessProbe = (*core.Probe)(unsafe.Pointer(in.ReadinessProbe)) + out.StartupProbe = (*core.Probe)(unsafe.Pointer(in.StartupProbe)) out.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle)) out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy) @@ -3495,6 +3500,7 @@ func autoConvert_core_EphemeralContainerCommon_To_v1_EphemeralContainerCommon(in out.VolumeDevices = *(*[]v1.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices)) out.LivenessProbe = (*v1.Probe)(unsafe.Pointer(in.LivenessProbe)) out.ReadinessProbe = (*v1.Probe)(unsafe.Pointer(in.ReadinessProbe)) + out.StartupProbe = (*v1.Probe)(unsafe.Pointer(in.StartupProbe)) out.Lifecycle = (*v1.Lifecycle)(unsafe.Pointer(in.Lifecycle)) out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePolicy = v1.TerminationMessagePolicy(in.TerminationMessagePolicy) diff --git a/pkg/apis/core/v1/zz_generated.defaults.go b/pkg/apis/core/v1/zz_generated.defaults.go index 6476c70b7db..05867995ab1 100644 --- a/pkg/apis/core/v1/zz_generated.defaults.go +++ b/pkg/apis/core/v1/zz_generated.defaults.go @@ -114,6 +114,12 @@ func SetObjectDefaults_EphemeralContainers(in *v1.EphemeralContainers) { SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -296,6 +302,12 @@ func SetObjectDefaults_Pod(in *v1.Pod) { SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -338,6 +350,12 @@ func SetObjectDefaults_Pod(in *v1.Pod) { SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -379,6 +397,12 @@ func SetObjectDefaults_Pod(in *v1.Pod) { SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -484,6 +508,12 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) { SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -526,6 +556,12 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) { SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -567,6 +603,12 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) { SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -674,6 +716,12 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) { SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -716,6 +764,12 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) { SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -757,6 +811,12 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) { SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go index a7f704b074d..f5954a13a84 100644 --- a/pkg/apis/core/zz_generated.deepcopy.go +++ b/pkg/apis/core/zz_generated.deepcopy.go @@ -773,6 +773,11 @@ func (in *Container) DeepCopyInto(out *Container) { *out = new(Probe) (*in).DeepCopyInto(*out) } + if in.StartupProbe != nil { + in, out := &in.StartupProbe, &out.StartupProbe + *out = new(Probe) + (*in).DeepCopyInto(*out) + } if in.Lifecycle != nil { in, out := &in.Lifecycle, &out.Lifecycle *out = new(Lifecycle) @@ -920,6 +925,11 @@ func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus) { *out = *in in.State.DeepCopyInto(&out.State) in.LastTerminationState.DeepCopyInto(&out.LastTerminationState) + if in.Started != nil { + in, out := &in.Started, &out.Started + *out = new(bool) + **out = **in + } return } @@ -1350,6 +1360,11 @@ func (in *EphemeralContainerCommon) DeepCopyInto(out *EphemeralContainerCommon) *out = new(Probe) (*in).DeepCopyInto(*out) } + if in.StartupProbe != nil { + in, out := &in.StartupProbe, &out.StartupProbe + *out = new(Probe) + (*in).DeepCopyInto(*out) + } if in.Lifecycle != nil { in, out := &in.Lifecycle, &out.Lifecycle *out = new(Lifecycle) diff --git a/pkg/apis/extensions/v1beta1/zz_generated.defaults.go b/pkg/apis/extensions/v1beta1/zz_generated.defaults.go index b75d4283d98..6c573d35d11 100644 --- a/pkg/apis/extensions/v1beta1/zz_generated.defaults.go +++ b/pkg/apis/extensions/v1beta1/zz_generated.defaults.go @@ -126,6 +126,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -168,6 +174,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -209,6 +221,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -315,6 +333,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -357,6 +381,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -398,6 +428,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { @@ -526,6 +562,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -568,6 +610,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) { v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) } } + if a.StartupProbe != nil { + v1.SetDefaults_Probe(a.StartupProbe) + if a.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.StartupProbe.Handler.HTTPGet) + } + } if a.Lifecycle != nil { if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart.HTTPGet != nil { @@ -609,6 +657,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) { v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) } } + if a.EphemeralContainerCommon.StartupProbe != nil { + v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe) + if a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet != nil { + v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.Handler.HTTPGet) + } + } if a.EphemeralContainerCommon.Lifecycle != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 6a2575de67e..31468fc1559 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -599,6 +599,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS // features that enable backwards compatibility but are scheduled to be removed // ... - HPAScaleToZero: {Default: false, PreRelease: featuregate.Alpha}, + HPAScaleToZero: {Default: false, PreRelease: featuregate.Alpha}, LegacyNodeRoleBehavior: {Default: true, PreRelease: featuregate.Alpha}, } diff --git a/pkg/kubelet/prober/BUILD b/pkg/kubelet/prober/BUILD index e4b1d9d24fe..90ccc7d0bbe 100644 --- a/pkg/kubelet/prober/BUILD +++ b/pkg/kubelet/prober/BUILD @@ -16,6 +16,7 @@ go_library( importpath = "k8s.io/kubernetes/pkg/kubelet/prober", deps = [ "//pkg/api/v1/pod:go_default_library", + "//pkg/features:go_default_library", "//pkg/kubelet/container:go_default_library", "//pkg/kubelet/events:go_default_library", "//pkg/kubelet/prober/results:go_default_library", @@ -31,6 +32,7 @@ go_library( "//staging/src/k8s.io/apimachinery/pkg/util/runtime:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/wait:go_default_library", + "//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library", "//staging/src/k8s.io/client-go/tools/record:go_default_library", "//staging/src/k8s.io/component-base/metrics:go_default_library", "//vendor/github.com/prometheus/client_golang/prometheus:go_default_library", @@ -49,6 +51,7 @@ go_test( ], embed = [":go_default_library"], deps = [ + "//pkg/features:go_default_library", "//pkg/kubelet/container:go_default_library", "//pkg/kubelet/container/testing:go_default_library", "//pkg/kubelet/pod:go_default_library", @@ -64,8 +67,10 @@ go_test( "//staging/src/k8s.io/apimachinery/pkg/util/runtime:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/wait:go_default_library", + "//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library", "//staging/src/k8s.io/client-go/kubernetes/fake:go_default_library", "//staging/src/k8s.io/client-go/tools/record:go_default_library", + "//staging/src/k8s.io/component-base/featuregate/testing:go_default_library", "//vendor/k8s.io/klog:go_default_library", "//vendor/k8s.io/utils/exec:go_default_library", ], 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 c386276fcd5..8f788035e62 100644 --- a/staging/src/k8s.io/api/core/v1/generated.pb.go +++ b/staging/src/k8s.io/api/core/v1/generated.pb.go @@ -6000,853 +6000,855 @@ func init() { } var fileDescriptor_83c10c24ec417dc9 = []byte{ - // 13524 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x70, 0x24, 0x49, - 0x5a, 0xd8, 0x55, 0xb7, 0x1e, 0xdd, 0x9f, 0xde, 0x39, 0x8f, 0xd5, 0x68, 0x77, 0x46, 0xb3, 0xb5, - 0x77, 0xb3, 0xb3, 0xb7, 0xbb, 0x9a, 0xdb, 0xd7, 0xed, 0x72, 0x7b, 0xb7, 0x20, 0xa9, 0xa5, 0x99, - 0xde, 0x19, 0x69, 0x7a, 0xb3, 0x35, 0x33, 0x77, 0xcb, 0xde, 0x71, 0xa5, 0xae, 0x94, 0x54, 0xab, - 0xee, 0xaa, 0xde, 0xaa, 0x6a, 0xcd, 0x68, 0x0d, 0x61, 0x7c, 0x3c, 0xcf, 0x80, 0xe3, 0xc2, 0x26, - 0xfc, 0x00, 0x02, 0x47, 0x60, 0x1c, 0x80, 0xc1, 0x0e, 0xe3, 0xc3, 0x80, 0x39, 0x6c, 0x63, 0xb0, - 0x1d, 0xd8, 0x3f, 0x30, 0x76, 0xd8, 0x3e, 0x22, 0x08, 0xcb, 0x30, 0x38, 0x4c, 0xf0, 0xc3, 0x40, - 0x18, 0xfe, 0x58, 0x26, 0x8c, 0x23, 0x9f, 0x95, 0x59, 0x5d, 0xd5, 0xdd, 0x9a, 0xd5, 0xe8, 0x96, - 0x8b, 0xfd, 0xd7, 0x9d, 0xdf, 0x97, 0x5f, 0x66, 0xe5, 0xf3, 0xcb, 0xef, 0x09, 0xaf, 0xee, 0xbe, - 0x12, 0x2d, 0x78, 0xc1, 0x95, 0xdd, 0xce, 0x26, 0x09, 0x7d, 0x12, 0x93, 0xe8, 0xca, 0x1e, 0xf1, - 0xdd, 0x20, 0xbc, 0x22, 0x00, 0x4e, 0xdb, 0xbb, 0xd2, 0x08, 0x42, 0x72, 0x65, 0xef, 0xb9, 0x2b, - 0xdb, 0xc4, 0x27, 0xa1, 0x13, 0x13, 0x77, 0xa1, 0x1d, 0x06, 0x71, 0x80, 0x10, 0xc7, 0x59, 0x70, - 0xda, 0xde, 0x02, 0xc5, 0x59, 0xd8, 0x7b, 0x6e, 0xee, 0xd9, 0x6d, 0x2f, 0xde, 0xe9, 0x6c, 0x2e, - 0x34, 0x82, 0xd6, 0x95, 0xed, 0x60, 0x3b, 0xb8, 0xc2, 0x50, 0x37, 0x3b, 0x5b, 0xec, 0x1f, 0xfb, - 0xc3, 0x7e, 0x71, 0x12, 0x73, 0x2f, 0x26, 0xcd, 0xb4, 0x9c, 0xc6, 0x8e, 0xe7, 0x93, 0x70, 0xff, - 0x4a, 0x7b, 0x77, 0x9b, 0xb5, 0x1b, 0x92, 0x28, 0xe8, 0x84, 0x0d, 0x92, 0x6e, 0xb8, 0x67, 0xad, - 0xe8, 0x4a, 0x8b, 0xc4, 0x4e, 0x46, 0x77, 0xe7, 0xae, 0xe4, 0xd5, 0x0a, 0x3b, 0x7e, 0xec, 0xb5, - 0xba, 0x9b, 0xf9, 0x78, 0xbf, 0x0a, 0x51, 0x63, 0x87, 0xb4, 0x9c, 0xae, 0x7a, 0x2f, 0xe4, 0xd5, - 0xeb, 0xc4, 0x5e, 0xf3, 0x8a, 0xe7, 0xc7, 0x51, 0x1c, 0xa6, 0x2b, 0xd9, 0x5f, 0xb5, 0xe0, 0xe2, - 0xe2, 0x9d, 0xfa, 0x4a, 0xd3, 0x89, 0x62, 0xaf, 0xb1, 0xd4, 0x0c, 0x1a, 0xbb, 0xf5, 0x38, 0x08, - 0xc9, 0xed, 0xa0, 0xd9, 0x69, 0x91, 0x3a, 0x1b, 0x08, 0xf4, 0x0c, 0x94, 0xf6, 0xd8, 0xff, 0x6a, - 0x65, 0xd6, 0xba, 0x68, 0x5d, 0x2e, 0x2f, 0x4d, 0xff, 0xfa, 0xc1, 0xfc, 0x87, 0xee, 0x1f, 0xcc, - 0x97, 0x6e, 0x8b, 0x72, 0xac, 0x30, 0xd0, 0x25, 0x18, 0xd9, 0x8a, 0x36, 0xf6, 0xdb, 0x64, 0xb6, - 0xc0, 0x70, 0x27, 0x05, 0xee, 0xc8, 0x6a, 0x9d, 0x96, 0x62, 0x01, 0x45, 0x57, 0xa0, 0xdc, 0x76, - 0xc2, 0xd8, 0x8b, 0xbd, 0xc0, 0x9f, 0x2d, 0x5e, 0xb4, 0x2e, 0x0f, 0x2f, 0xcd, 0x08, 0xd4, 0x72, - 0x4d, 0x02, 0x70, 0x82, 0x43, 0xbb, 0x11, 0x12, 0xc7, 0xbd, 0xe9, 0x37, 0xf7, 0x67, 0x87, 0x2e, - 0x5a, 0x97, 0x4b, 0x49, 0x37, 0xb0, 0x28, 0xc7, 0x0a, 0xc3, 0xfe, 0xa1, 0x02, 0x94, 0x16, 0xb7, - 0xb6, 0x3c, 0xdf, 0x8b, 0xf7, 0xd1, 0x6d, 0x18, 0xf7, 0x03, 0x97, 0xc8, 0xff, 0xec, 0x2b, 0xc6, - 0x9e, 0xbf, 0xb8, 0xd0, 0xbd, 0x94, 0x16, 0xd6, 0x35, 0xbc, 0xa5, 0xe9, 0xfb, 0x07, 0xf3, 0xe3, - 0x7a, 0x09, 0x36, 0xe8, 0x20, 0x0c, 0x63, 0xed, 0xc0, 0x55, 0x64, 0x0b, 0x8c, 0xec, 0x7c, 0x16, - 0xd9, 0x5a, 0x82, 0xb6, 0x34, 0x75, 0xff, 0x60, 0x7e, 0x4c, 0x2b, 0xc0, 0x3a, 0x11, 0xb4, 0x09, - 0x53, 0xf4, 0xaf, 0x1f, 0x7b, 0x8a, 0x6e, 0x91, 0xd1, 0x7d, 0x22, 0x8f, 0xae, 0x86, 0xba, 0x74, - 0xea, 0xfe, 0xc1, 0xfc, 0x54, 0xaa, 0x10, 0xa7, 0x09, 0xda, 0xef, 0xc2, 0xe4, 0x62, 0x1c, 0x3b, - 0x8d, 0x1d, 0xe2, 0xf2, 0x19, 0x44, 0x2f, 0xc2, 0x90, 0xef, 0xb4, 0x88, 0x98, 0xdf, 0x8b, 0x62, - 0x60, 0x87, 0xd6, 0x9d, 0x16, 0x39, 0x3c, 0x98, 0x9f, 0xbe, 0xe5, 0x7b, 0xef, 0x74, 0xc4, 0xaa, - 0xa0, 0x65, 0x98, 0x61, 0xa3, 0xe7, 0x01, 0x5c, 0xb2, 0xe7, 0x35, 0x48, 0xcd, 0x89, 0x77, 0xc4, - 0x7c, 0x23, 0x51, 0x17, 0x2a, 0x0a, 0x82, 0x35, 0x2c, 0xfb, 0x1e, 0x94, 0x17, 0xf7, 0x02, 0xcf, - 0xad, 0x05, 0x6e, 0x84, 0x76, 0x61, 0xaa, 0x1d, 0x92, 0x2d, 0x12, 0xaa, 0xa2, 0x59, 0xeb, 0x62, - 0xf1, 0xf2, 0xd8, 0xf3, 0x97, 0x33, 0x3f, 0xd6, 0x44, 0x5d, 0xf1, 0xe3, 0x70, 0x7f, 0xe9, 0x11, - 0xd1, 0xde, 0x54, 0x0a, 0x8a, 0xd3, 0x94, 0xed, 0x7f, 0x5d, 0x80, 0x33, 0x8b, 0xef, 0x76, 0x42, - 0x52, 0xf1, 0xa2, 0xdd, 0xf4, 0x0a, 0x77, 0xbd, 0x68, 0x77, 0x3d, 0x19, 0x01, 0xb5, 0xb4, 0x2a, - 0xa2, 0x1c, 0x2b, 0x0c, 0xf4, 0x2c, 0x8c, 0xd2, 0xdf, 0xb7, 0x70, 0x55, 0x7c, 0xf2, 0x29, 0x81, - 0x3c, 0x56, 0x71, 0x62, 0xa7, 0xc2, 0x41, 0x58, 0xe2, 0xa0, 0x35, 0x18, 0x6b, 0xb0, 0x0d, 0xb9, - 0xbd, 0x16, 0xb8, 0x84, 0x4d, 0x66, 0x79, 0xe9, 0x69, 0x8a, 0xbe, 0x9c, 0x14, 0x1f, 0x1e, 0xcc, - 0xcf, 0xf2, 0xbe, 0x09, 0x12, 0x1a, 0x0c, 0xeb, 0xf5, 0x91, 0xad, 0xf6, 0xd7, 0x10, 0xa3, 0x04, - 0x19, 0x7b, 0xeb, 0xb2, 0xb6, 0x55, 0x86, 0xd9, 0x56, 0x19, 0xcf, 0xde, 0x26, 0xe8, 0x39, 0x18, - 0xda, 0xf5, 0x7c, 0x77, 0x76, 0x84, 0xd1, 0x3a, 0x4f, 0xe7, 0xfc, 0xba, 0xe7, 0xbb, 0x87, 0x07, - 0xf3, 0x33, 0x46, 0x77, 0x68, 0x21, 0x66, 0xa8, 0xf6, 0x9f, 0x58, 0x30, 0xcf, 0x60, 0xab, 0x5e, - 0x93, 0xd4, 0x48, 0x18, 0x79, 0x51, 0x4c, 0xfc, 0xd8, 0x18, 0xd0, 0xe7, 0x01, 0x22, 0xd2, 0x08, - 0x49, 0xac, 0x0d, 0xa9, 0x5a, 0x18, 0x75, 0x05, 0xc1, 0x1a, 0x16, 0x3d, 0x10, 0xa2, 0x1d, 0x27, - 0x64, 0xeb, 0x4b, 0x0c, 0xac, 0x3a, 0x10, 0xea, 0x12, 0x80, 0x13, 0x1c, 0xe3, 0x40, 0x28, 0xf6, - 0x3b, 0x10, 0xd0, 0xa7, 0x60, 0x2a, 0x69, 0x2c, 0x6a, 0x3b, 0x0d, 0x39, 0x80, 0x6c, 0xcb, 0xd4, - 0x4d, 0x10, 0x4e, 0xe3, 0xda, 0xff, 0xc0, 0x12, 0x8b, 0x87, 0x7e, 0xf5, 0xfb, 0xfc, 0x5b, 0xed, - 0x5f, 0xb4, 0x60, 0x74, 0xc9, 0xf3, 0x5d, 0xcf, 0xdf, 0x46, 0x9f, 0x87, 0x12, 0xbd, 0x9b, 0x5c, - 0x27, 0x76, 0xc4, 0xb9, 0xf7, 0x31, 0x6d, 0x6f, 0xa9, 0xab, 0x62, 0xa1, 0xbd, 0xbb, 0x4d, 0x0b, - 0xa2, 0x05, 0x8a, 0x4d, 0x77, 0xdb, 0xcd, 0xcd, 0xb7, 0x49, 0x23, 0x5e, 0x23, 0xb1, 0x93, 0x7c, - 0x4e, 0x52, 0x86, 0x15, 0x55, 0x74, 0x1d, 0x46, 0x62, 0x27, 0xdc, 0x26, 0xb1, 0x38, 0x00, 0x33, - 0x0f, 0x2a, 0x5e, 0x13, 0xd3, 0x1d, 0x49, 0xfc, 0x06, 0x49, 0xae, 0x85, 0x0d, 0x56, 0x15, 0x0b, - 0x12, 0xf6, 0x0f, 0x8c, 0xc2, 0xb9, 0xe5, 0x7a, 0x35, 0x67, 0x5d, 0x5d, 0x82, 0x11, 0x37, 0xf4, - 0xf6, 0x48, 0x28, 0xc6, 0x59, 0x51, 0xa9, 0xb0, 0x52, 0x2c, 0xa0, 0xe8, 0x15, 0x18, 0xe7, 0x17, - 0xd2, 0x35, 0xc7, 0x77, 0x9b, 0x72, 0x88, 0x4f, 0x0b, 0xec, 0xf1, 0xdb, 0x1a, 0x0c, 0x1b, 0x98, - 0x47, 0x5c, 0x54, 0x97, 0x52, 0x9b, 0x31, 0xef, 0xb2, 0xfb, 0xa2, 0x05, 0xd3, 0xbc, 0x99, 0xc5, - 0x38, 0x0e, 0xbd, 0xcd, 0x4e, 0x4c, 0xa2, 0xd9, 0x61, 0x76, 0xd2, 0x2d, 0x67, 0x8d, 0x56, 0xee, - 0x08, 0x2c, 0xdc, 0x4e, 0x51, 0xe1, 0x87, 0xe0, 0xac, 0x68, 0x77, 0x3a, 0x0d, 0xc6, 0x5d, 0xcd, - 0xa2, 0xef, 0xb0, 0x60, 0xae, 0x11, 0xf8, 0x71, 0x18, 0x34, 0x9b, 0x24, 0xac, 0x75, 0x36, 0x9b, - 0x5e, 0xb4, 0xc3, 0xd7, 0x29, 0x26, 0x5b, 0xec, 0x24, 0xc8, 0x99, 0x43, 0x85, 0x24, 0xe6, 0xf0, - 0xc2, 0xfd, 0x83, 0xf9, 0xb9, 0xe5, 0x5c, 0x52, 0xb8, 0x47, 0x33, 0x68, 0x17, 0x10, 0xbd, 0x4a, - 0xeb, 0xb1, 0xb3, 0x4d, 0x92, 0xc6, 0x47, 0x07, 0x6f, 0xfc, 0xec, 0xfd, 0x83, 0x79, 0xb4, 0xde, - 0x45, 0x02, 0x67, 0x90, 0x45, 0xef, 0xc0, 0x69, 0x5a, 0xda, 0xf5, 0xad, 0xa5, 0xc1, 0x9b, 0x9b, - 0xbd, 0x7f, 0x30, 0x7f, 0x7a, 0x3d, 0x83, 0x08, 0xce, 0x24, 0x8d, 0xbe, 0xdd, 0x82, 0x73, 0xc9, - 0xe7, 0xaf, 0xdc, 0x6b, 0x3b, 0xbe, 0x9b, 0x34, 0x5c, 0x1e, 0xbc, 0x61, 0x7a, 0x26, 0x9f, 0x5b, - 0xce, 0xa3, 0x84, 0xf3, 0x1b, 0x99, 0x5b, 0x86, 0x33, 0x99, 0xab, 0x05, 0x4d, 0x43, 0x71, 0x97, - 0x70, 0x2e, 0xa8, 0x8c, 0xe9, 0x4f, 0x74, 0x1a, 0x86, 0xf7, 0x9c, 0x66, 0x47, 0x6c, 0x14, 0xcc, - 0xff, 0x7c, 0xa2, 0xf0, 0x8a, 0x65, 0xff, 0x9b, 0x22, 0x4c, 0x2d, 0xd7, 0xab, 0x0f, 0xb4, 0x0b, - 0xf5, 0x6b, 0xa8, 0xd0, 0xf3, 0x1a, 0x4a, 0x2e, 0xb5, 0x62, 0xee, 0xa5, 0xf6, 0x97, 0x33, 0xb6, - 0xd0, 0x10, 0xdb, 0x42, 0xdf, 0x90, 0xb3, 0x85, 0x8e, 0x79, 0xe3, 0xec, 0xe5, 0xac, 0xa2, 0x61, - 0x36, 0x99, 0x99, 0x1c, 0xcb, 0x8d, 0xa0, 0xe1, 0x34, 0xd3, 0x47, 0xdf, 0x11, 0x97, 0xd2, 0xf1, - 0xcc, 0x63, 0x03, 0xc6, 0x97, 0x9d, 0xb6, 0xb3, 0xe9, 0x35, 0xbd, 0xd8, 0x23, 0x11, 0x7a, 0x12, - 0x8a, 0x8e, 0xeb, 0x32, 0x6e, 0xab, 0xbc, 0x74, 0xe6, 0xfe, 0xc1, 0x7c, 0x71, 0xd1, 0xa5, 0xd7, - 0x3e, 0x28, 0xac, 0x7d, 0x4c, 0x31, 0xd0, 0x47, 0x61, 0xc8, 0x0d, 0x83, 0xf6, 0x6c, 0x81, 0x61, - 0xd2, 0x5d, 0x37, 0x54, 0x09, 0x83, 0x76, 0x0a, 0x95, 0xe1, 0xd8, 0xbf, 0x52, 0x80, 0xc7, 0x96, - 0x49, 0x7b, 0x67, 0xb5, 0x9e, 0x73, 0x7e, 0x5f, 0x86, 0x52, 0x2b, 0xf0, 0xbd, 0x38, 0x08, 0x23, - 0xd1, 0x34, 0x5b, 0x11, 0x6b, 0xa2, 0x0c, 0x2b, 0x28, 0xba, 0x08, 0x43, 0xed, 0x84, 0xa9, 0x1c, - 0x97, 0x0c, 0x29, 0x63, 0x27, 0x19, 0x84, 0x62, 0x74, 0x22, 0x12, 0x8a, 0x15, 0xa3, 0x30, 0x6e, - 0x45, 0x24, 0xc4, 0x0c, 0x92, 0xdc, 0xcc, 0xf4, 0xce, 0x16, 0x27, 0x74, 0xea, 0x66, 0xa6, 0x10, - 0xac, 0x61, 0xa1, 0x1a, 0x94, 0xa3, 0xd4, 0xcc, 0x0e, 0xb4, 0x4d, 0x27, 0xd8, 0xd5, 0xad, 0x66, - 0x32, 0x21, 0x62, 0xdc, 0x28, 0x23, 0x7d, 0xaf, 0xee, 0xaf, 0x14, 0x00, 0xf1, 0x21, 0xfc, 0x0b, - 0x36, 0x70, 0xb7, 0xba, 0x07, 0x6e, 0xf0, 0x2d, 0x71, 0x5c, 0xa3, 0xf7, 0xa7, 0x16, 0x3c, 0xb6, - 0xec, 0xf9, 0x2e, 0x09, 0x73, 0x16, 0xe0, 0xc3, 0x79, 0xcb, 0x1e, 0x8d, 0x69, 0x30, 0x96, 0xd8, - 0xd0, 0x31, 0x2c, 0x31, 0xfb, 0x8f, 0x2c, 0x40, 0xfc, 0xb3, 0xdf, 0x77, 0x1f, 0x7b, 0xab, 0xfb, - 0x63, 0x8f, 0x61, 0x59, 0xd8, 0x37, 0x60, 0x72, 0xb9, 0xe9, 0x11, 0x3f, 0xae, 0xd6, 0x96, 0x03, - 0x7f, 0xcb, 0xdb, 0x46, 0x9f, 0x80, 0xc9, 0xd8, 0x6b, 0x91, 0xa0, 0x13, 0xd7, 0x49, 0x23, 0xf0, - 0xd9, 0x4b, 0xd2, 0xba, 0x3c, 0xbc, 0x84, 0xee, 0x1f, 0xcc, 0x4f, 0x6e, 0x18, 0x10, 0x9c, 0xc2, - 0xb4, 0x7f, 0x9b, 0x8e, 0x5f, 0xd0, 0x6a, 0x07, 0x3e, 0xf1, 0xe3, 0xe5, 0xc0, 0x77, 0xb9, 0xc4, - 0xe1, 0x13, 0x30, 0x14, 0xd3, 0xf1, 0xe0, 0x63, 0x77, 0x49, 0x6e, 0x14, 0x3a, 0x0a, 0x87, 0x07, - 0xf3, 0x67, 0xbb, 0x6b, 0xb0, 0x71, 0x62, 0x75, 0xd0, 0x37, 0xc0, 0x48, 0x14, 0x3b, 0x71, 0x27, - 0x12, 0xa3, 0xf9, 0xb8, 0x1c, 0xcd, 0x3a, 0x2b, 0x3d, 0x3c, 0x98, 0x9f, 0x52, 0xd5, 0x78, 0x11, - 0x16, 0x15, 0xd0, 0x53, 0x30, 0xda, 0x22, 0x51, 0xe4, 0x6c, 0xcb, 0xdb, 0x70, 0x4a, 0xd4, 0x1d, - 0x5d, 0xe3, 0xc5, 0x58, 0xc2, 0xd1, 0x13, 0x30, 0x4c, 0xc2, 0x30, 0x08, 0xc5, 0x1e, 0x9d, 0x10, - 0x88, 0xc3, 0x2b, 0xb4, 0x10, 0x73, 0x98, 0xfd, 0x1f, 0x2c, 0x98, 0x52, 0x7d, 0xe5, 0x6d, 0x9d, - 0xc0, 0xab, 0xe0, 0x4d, 0x80, 0x86, 0xfc, 0xc0, 0x88, 0xdd, 0x1e, 0x63, 0xcf, 0x5f, 0xca, 0xbc, - 0xa8, 0xbb, 0x86, 0x31, 0xa1, 0xac, 0x8a, 0x22, 0xac, 0x51, 0xb3, 0xff, 0xb9, 0x05, 0xa7, 0x52, - 0x5f, 0x74, 0xc3, 0x8b, 0x62, 0xf4, 0x56, 0xd7, 0x57, 0x2d, 0x0c, 0xf6, 0x55, 0xb4, 0x36, 0xfb, - 0x26, 0xb5, 0x94, 0x65, 0x89, 0xf6, 0x45, 0xd7, 0x60, 0xd8, 0x8b, 0x49, 0x4b, 0x7e, 0xcc, 0x13, - 0x3d, 0x3f, 0x86, 0xf7, 0x2a, 0x99, 0x91, 0x2a, 0xad, 0x89, 0x39, 0x01, 0xfb, 0x6f, 0x14, 0xa1, - 0xcc, 0x97, 0xed, 0x9a, 0xd3, 0x3e, 0x81, 0xb9, 0xa8, 0xc2, 0x10, 0xa3, 0xce, 0x3b, 0xfe, 0x64, - 0x76, 0xc7, 0x45, 0x77, 0x16, 0xe8, 0x93, 0x9f, 0x33, 0x47, 0xea, 0x6a, 0xa0, 0x45, 0x98, 0x91, - 0x40, 0x0e, 0xc0, 0xa6, 0xe7, 0x3b, 0xe1, 0x3e, 0x2d, 0x9b, 0x2d, 0x32, 0x82, 0xcf, 0xf6, 0x26, - 0xb8, 0xa4, 0xf0, 0x39, 0x59, 0xd5, 0xd7, 0x04, 0x80, 0x35, 0xa2, 0x73, 0x2f, 0x43, 0x59, 0x21, - 0x1f, 0x85, 0xc7, 0x99, 0xfb, 0x14, 0x4c, 0xa5, 0xda, 0xea, 0x57, 0x7d, 0x5c, 0x67, 0x91, 0x7e, - 0x89, 0x9d, 0x02, 0xa2, 0xd7, 0x2b, 0xfe, 0x9e, 0x38, 0x45, 0xdf, 0x85, 0xd3, 0xcd, 0x8c, 0xc3, - 0x49, 0x4c, 0xd5, 0xe0, 0x87, 0xd9, 0x63, 0xe2, 0xb3, 0x4f, 0x67, 0x41, 0x71, 0x66, 0x1b, 0xf4, - 0xda, 0x0f, 0xda, 0x74, 0xcd, 0x3b, 0x4d, 0x9d, 0x83, 0xbe, 0x29, 0xca, 0xb0, 0x82, 0xd2, 0x23, - 0xec, 0xb4, 0xea, 0xfc, 0x75, 0xb2, 0x5f, 0x27, 0x4d, 0xd2, 0x88, 0x83, 0xf0, 0x6b, 0xda, 0xfd, - 0xf3, 0x7c, 0xf4, 0xf9, 0x09, 0x38, 0x26, 0x08, 0x14, 0xaf, 0x93, 0x7d, 0x3e, 0x15, 0xfa, 0xd7, - 0x15, 0x7b, 0x7e, 0xdd, 0xcf, 0x5a, 0x30, 0xa1, 0xbe, 0xee, 0x04, 0xb6, 0xfa, 0x92, 0xb9, 0xd5, - 0xcf, 0xf7, 0x5c, 0xe0, 0x39, 0x9b, 0xfc, 0x2b, 0x05, 0x38, 0xa7, 0x70, 0x28, 0xbb, 0xcf, 0xff, - 0x88, 0x55, 0x75, 0x05, 0xca, 0xbe, 0x12, 0x44, 0x59, 0xa6, 0x04, 0x28, 0x11, 0x43, 0x25, 0x38, - 0x94, 0x6b, 0xf3, 0x13, 0x69, 0xd1, 0xb8, 0x2e, 0xa1, 0x15, 0xd2, 0xd8, 0x25, 0x28, 0x76, 0x3c, - 0x57, 0xdc, 0x19, 0x1f, 0x93, 0xa3, 0x7d, 0xab, 0x5a, 0x39, 0x3c, 0x98, 0x7f, 0x3c, 0x4f, 0x3b, - 0x40, 0x2f, 0xab, 0x68, 0xe1, 0x56, 0xb5, 0x82, 0x69, 0x65, 0xb4, 0x08, 0x53, 0x52, 0x01, 0x72, - 0x9b, 0x72, 0x50, 0x81, 0x2f, 0xae, 0x16, 0x25, 0x66, 0xc5, 0x26, 0x18, 0xa7, 0xf1, 0x51, 0x05, - 0xa6, 0x77, 0x3b, 0x9b, 0xa4, 0x49, 0x62, 0xfe, 0xc1, 0xd7, 0x09, 0x17, 0x42, 0x96, 0x93, 0xc7, - 0xd6, 0xf5, 0x14, 0x1c, 0x77, 0xd5, 0xb0, 0xff, 0x9c, 0x1d, 0xf1, 0x62, 0xf4, 0x6a, 0x61, 0x40, - 0x17, 0x16, 0xa5, 0xfe, 0xb5, 0x5c, 0xce, 0x83, 0xac, 0x8a, 0xeb, 0x64, 0x7f, 0x23, 0xa0, 0xcc, - 0x76, 0xf6, 0xaa, 0x30, 0xd6, 0xfc, 0x50, 0xcf, 0x35, 0xff, 0x73, 0x05, 0x38, 0xa3, 0x46, 0xc0, - 0xe0, 0xeb, 0xfe, 0xa2, 0x8f, 0xc1, 0x73, 0x30, 0xe6, 0x92, 0x2d, 0xa7, 0xd3, 0x8c, 0x95, 0x44, - 0x7c, 0x98, 0x6b, 0x45, 0x2a, 0x49, 0x31, 0xd6, 0x71, 0x8e, 0x30, 0x6c, 0x3f, 0x3e, 0xc6, 0xee, - 0xd6, 0xd8, 0xa1, 0x6b, 0x5c, 0xed, 0x1a, 0x2b, 0x77, 0xd7, 0x3c, 0x01, 0xc3, 0x5e, 0x8b, 0xf2, - 0x5a, 0x05, 0x93, 0x85, 0xaa, 0xd2, 0x42, 0xcc, 0x61, 0xe8, 0x23, 0x30, 0xda, 0x08, 0x5a, 0x2d, - 0xc7, 0x77, 0xd9, 0x95, 0x57, 0x5e, 0x1a, 0xa3, 0xec, 0xd8, 0x32, 0x2f, 0xc2, 0x12, 0x86, 0x1e, - 0x83, 0x21, 0x27, 0xdc, 0xe6, 0x62, 0x89, 0xf2, 0x52, 0x89, 0xb6, 0xb4, 0x18, 0x6e, 0x47, 0x98, - 0x95, 0xd2, 0x57, 0xd5, 0xdd, 0x20, 0xdc, 0xf5, 0xfc, 0xed, 0x8a, 0x17, 0x8a, 0x2d, 0xa1, 0xee, - 0xc2, 0x3b, 0x0a, 0x82, 0x35, 0x2c, 0xb4, 0x0a, 0xc3, 0xed, 0x20, 0x8c, 0xa3, 0xd9, 0x11, 0x36, - 0xdc, 0x8f, 0xe7, 0x1c, 0x44, 0xfc, 0x6b, 0x6b, 0x41, 0x18, 0x27, 0x1f, 0x40, 0xff, 0x45, 0x98, - 0x57, 0x47, 0x37, 0x60, 0x94, 0xf8, 0x7b, 0xab, 0x61, 0xd0, 0x9a, 0x3d, 0x95, 0x4f, 0x69, 0x85, - 0xa3, 0xf0, 0x65, 0x96, 0xb0, 0x9d, 0xa2, 0x18, 0x4b, 0x12, 0xe8, 0x1b, 0xa0, 0x48, 0xfc, 0xbd, - 0xd9, 0x51, 0x46, 0x69, 0x2e, 0x87, 0xd2, 0x6d, 0x27, 0x4c, 0xce, 0xfc, 0x15, 0x7f, 0x0f, 0xd3, - 0x3a, 0xe8, 0x33, 0x50, 0x96, 0x07, 0x46, 0x24, 0xe4, 0x6f, 0x99, 0x0b, 0x56, 0x1e, 0x33, 0x98, - 0xbc, 0xd3, 0xf1, 0x42, 0xd2, 0x22, 0x7e, 0x1c, 0x25, 0x27, 0xa4, 0x84, 0x46, 0x38, 0xa1, 0x86, - 0x3e, 0x23, 0x85, 0xbe, 0x6b, 0x41, 0xc7, 0x8f, 0xa3, 0xd9, 0x32, 0xeb, 0x5e, 0xa6, 0x3a, 0xee, - 0x76, 0x82, 0x97, 0x96, 0x0a, 0xf3, 0xca, 0xd8, 0x20, 0x85, 0x3e, 0x0b, 0x13, 0xfc, 0x3f, 0x57, - 0x6a, 0x45, 0xb3, 0x67, 0x18, 0xed, 0x8b, 0xf9, 0xb4, 0x39, 0xe2, 0xd2, 0x19, 0x41, 0x7c, 0x42, - 0x2f, 0x8d, 0xb0, 0x49, 0x0d, 0x61, 0x98, 0x68, 0x7a, 0x7b, 0xc4, 0x27, 0x51, 0x54, 0x0b, 0x83, - 0x4d, 0x32, 0x0b, 0x6c, 0x60, 0xce, 0x65, 0x2b, 0xc1, 0x82, 0x4d, 0xb2, 0x34, 0x43, 0x69, 0xde, - 0xd0, 0xeb, 0x60, 0x93, 0x04, 0xba, 0x05, 0x93, 0xf4, 0x11, 0xe6, 0x25, 0x44, 0xc7, 0xfa, 0x11, - 0x65, 0x4f, 0x25, 0x6c, 0x54, 0xc2, 0x29, 0x22, 0xe8, 0x75, 0x28, 0x37, 0xbd, 0x2d, 0xd2, 0xd8, - 0x6f, 0x34, 0xc9, 0xec, 0x38, 0xa3, 0x98, 0x79, 0x06, 0xdc, 0x90, 0x48, 0xfc, 0x11, 0xa7, 0xfe, - 0xe2, 0xa4, 0x3a, 0xba, 0x0d, 0x67, 0x63, 0x12, 0xb6, 0x3c, 0xdf, 0xa1, 0x7b, 0x57, 0x3c, 0x6e, - 0x98, 0x2a, 0x71, 0x82, 0x6d, 0x8e, 0x0b, 0x62, 0xf0, 0xce, 0x6e, 0x64, 0x62, 0xe1, 0x9c, 0xda, - 0xe8, 0x1e, 0xcc, 0x66, 0x40, 0x82, 0xa6, 0xd7, 0xd8, 0x9f, 0x3d, 0xcd, 0x28, 0x7f, 0x52, 0x50, - 0x9e, 0xdd, 0xc8, 0xc1, 0x3b, 0xec, 0x01, 0xc3, 0xb9, 0xd4, 0xd1, 0x4d, 0x98, 0x62, 0x07, 0x46, - 0xad, 0xd3, 0x6c, 0x8a, 0x06, 0x27, 0x59, 0x83, 0x1f, 0x91, 0xd7, 0x67, 0xd5, 0x04, 0x1f, 0x1e, - 0xcc, 0x43, 0xf2, 0x0f, 0xa7, 0x6b, 0xa3, 0x4d, 0xa6, 0xb5, 0xea, 0x84, 0x5e, 0xbc, 0x4f, 0xb7, - 0x39, 0xb9, 0x17, 0xcf, 0x4e, 0xf5, 0x94, 0x18, 0xe8, 0xa8, 0x4a, 0xb5, 0xa5, 0x17, 0xe2, 0x34, - 0x41, 0x7a, 0x02, 0x46, 0xb1, 0xeb, 0xf9, 0xb3, 0xd3, 0xec, 0x60, 0x55, 0x07, 0x48, 0x9d, 0x16, - 0x62, 0x0e, 0x63, 0x1a, 0x2b, 0xfa, 0xe3, 0x26, 0xbd, 0x68, 0x66, 0x18, 0x62, 0xa2, 0xb1, 0x92, - 0x00, 0x9c, 0xe0, 0x50, 0xde, 0x2f, 0x8e, 0xf7, 0x67, 0x11, 0x43, 0x55, 0xe7, 0xc0, 0xc6, 0xc6, - 0x67, 0x30, 0x2d, 0xb7, 0x37, 0x61, 0x52, 0x9d, 0x5b, 0x6c, 0x4c, 0xd0, 0x3c, 0x0c, 0x33, 0x6e, - 0x47, 0xc8, 0xb7, 0xca, 0xb4, 0x0b, 0x8c, 0x13, 0xc2, 0xbc, 0x9c, 0x75, 0xc1, 0x7b, 0x97, 0x2c, - 0xed, 0xc7, 0x84, 0xbf, 0xaa, 0x8b, 0x5a, 0x17, 0x24, 0x00, 0x27, 0x38, 0xf6, 0xff, 0xe3, 0x5c, - 0x63, 0x72, 0x38, 0x0e, 0x70, 0x1d, 0x3c, 0x03, 0xa5, 0x9d, 0x20, 0x8a, 0x29, 0x36, 0x6b, 0x63, - 0x38, 0xe1, 0x13, 0xaf, 0x89, 0x72, 0xac, 0x30, 0xd0, 0xab, 0x30, 0xd1, 0xd0, 0x1b, 0x10, 0x77, - 0x99, 0xda, 0xf5, 0x46, 0xeb, 0xd8, 0xc4, 0x45, 0xaf, 0x40, 0x89, 0x59, 0x61, 0x34, 0x82, 0xa6, - 0x60, 0xb2, 0xe4, 0x85, 0x5c, 0xaa, 0x89, 0xf2, 0x43, 0xed, 0x37, 0x56, 0xd8, 0xe8, 0x12, 0x8c, - 0xd0, 0x2e, 0x54, 0x6b, 0xe2, 0x16, 0x51, 0xa2, 0x9a, 0x6b, 0xac, 0x14, 0x0b, 0xa8, 0xfd, 0xd7, - 0x0b, 0xda, 0x28, 0xd3, 0x17, 0x29, 0x41, 0x35, 0x18, 0xbd, 0xeb, 0x78, 0xb1, 0xe7, 0x6f, 0x0b, - 0x76, 0xe1, 0xa9, 0x9e, 0x57, 0x0a, 0xab, 0x74, 0x87, 0x57, 0xe0, 0x97, 0x9e, 0xf8, 0x83, 0x25, - 0x19, 0x4a, 0x31, 0xec, 0xf8, 0x3e, 0xa5, 0x58, 0x18, 0x94, 0x22, 0xe6, 0x15, 0x38, 0x45, 0xf1, - 0x07, 0x4b, 0x32, 0xe8, 0x2d, 0x00, 0xb9, 0xc3, 0x88, 0x2b, 0xac, 0x1f, 0x9e, 0xe9, 0x4f, 0x74, - 0x43, 0xd5, 0x59, 0x9a, 0xa4, 0x57, 0x6a, 0xf2, 0x1f, 0x6b, 0xf4, 0xec, 0x98, 0xb1, 0x55, 0xdd, - 0x9d, 0x41, 0xdf, 0x4c, 0x97, 0xb8, 0x13, 0xc6, 0xc4, 0x5d, 0x8c, 0xc5, 0xe0, 0x7c, 0x74, 0xb0, - 0x37, 0xc5, 0x86, 0xd7, 0x22, 0xfa, 0x76, 0x10, 0x44, 0x70, 0x42, 0xcf, 0xfe, 0x85, 0x22, 0xcc, - 0xe6, 0x75, 0x97, 0x2e, 0x3a, 0x72, 0xcf, 0x8b, 0x97, 0x29, 0x37, 0x64, 0x99, 0x8b, 0x6e, 0x45, - 0x94, 0x63, 0x85, 0x41, 0x67, 0x3f, 0xf2, 0xb6, 0xe5, 0x93, 0x70, 0x38, 0x99, 0xfd, 0x3a, 0x2b, - 0xc5, 0x02, 0x4a, 0xf1, 0x42, 0xe2, 0x44, 0xc2, 0xbc, 0x46, 0x5b, 0x25, 0x98, 0x95, 0x62, 0x01, - 0xd5, 0xe5, 0x4d, 0x43, 0x7d, 0xe4, 0x4d, 0xc6, 0x10, 0x0d, 0x1f, 0xef, 0x10, 0xa1, 0xcf, 0x01, - 0x6c, 0x79, 0xbe, 0x17, 0xed, 0x30, 0xea, 0x23, 0x47, 0xa6, 0xae, 0x78, 0xa9, 0x55, 0x45, 0x05, - 0x6b, 0x14, 0xd1, 0x4b, 0x30, 0xa6, 0x36, 0x60, 0xb5, 0xc2, 0x74, 0x8d, 0x9a, 0xed, 0x46, 0x72, - 0x1a, 0x55, 0xb0, 0x8e, 0x67, 0xbf, 0x9d, 0x5e, 0x2f, 0x62, 0x07, 0x68, 0xe3, 0x6b, 0x0d, 0x3a, - 0xbe, 0x85, 0xde, 0xe3, 0x6b, 0xff, 0x6a, 0x11, 0xa6, 0x8c, 0xc6, 0x3a, 0xd1, 0x00, 0x67, 0xd6, - 0x55, 0x7a, 0x80, 0x3b, 0x31, 0x11, 0xfb, 0xcf, 0xee, 0xbf, 0x55, 0xf4, 0x43, 0x9e, 0xee, 0x00, - 0x5e, 0x1f, 0x7d, 0x0e, 0xca, 0x4d, 0x27, 0x62, 0xb2, 0x2b, 0x22, 0xf6, 0xdd, 0x20, 0xc4, 0x92, - 0x77, 0x84, 0x13, 0xc5, 0xda, 0xad, 0xc9, 0x69, 0x27, 0x24, 0xe9, 0x4d, 0x43, 0xd9, 0x09, 0x69, - 0xbf, 0xa5, 0x3a, 0x41, 0x79, 0x8e, 0x7d, 0xcc, 0x61, 0xe8, 0x15, 0x18, 0x0f, 0x09, 0x5b, 0x15, - 0xcb, 0x94, 0xf9, 0x62, 0xcb, 0x6c, 0x38, 0xe1, 0xd2, 0xb0, 0x06, 0xc3, 0x06, 0x66, 0xc2, 0xca, - 0x8f, 0xf4, 0x60, 0xe5, 0x9f, 0x82, 0x51, 0xf6, 0x43, 0xad, 0x00, 0x35, 0x1b, 0x55, 0x5e, 0x8c, - 0x25, 0x3c, 0xbd, 0x60, 0x4a, 0x03, 0x2e, 0x98, 0x8f, 0xc2, 0x64, 0xc5, 0x21, 0xad, 0xc0, 0x5f, - 0xf1, 0xdd, 0x76, 0xe0, 0xf9, 0x31, 0x9a, 0x85, 0x21, 0x76, 0x3b, 0xf0, 0xbd, 0x3d, 0x44, 0x29, - 0xe0, 0x21, 0xca, 0x98, 0xdb, 0xdb, 0x70, 0xa6, 0x12, 0xdc, 0xf5, 0xef, 0x3a, 0xa1, 0xbb, 0x58, - 0xab, 0x6a, 0xef, 0xdc, 0x75, 0xf9, 0xce, 0xe2, 0xf6, 0x50, 0x99, 0x67, 0xaa, 0x56, 0x93, 0xb3, - 0x97, 0xab, 0x5e, 0x93, 0xe4, 0x48, 0x23, 0xfe, 0x56, 0xc1, 0x68, 0x29, 0xc1, 0x57, 0x0a, 0x23, - 0x2b, 0x57, 0x61, 0xf4, 0x06, 0x94, 0xb6, 0x3c, 0xd2, 0x74, 0x31, 0xd9, 0x12, 0x4b, 0xec, 0xc9, - 0x7c, 0x13, 0x8f, 0x55, 0x8a, 0x29, 0xa5, 0x4f, 0xfc, 0x95, 0xb6, 0x2a, 0x2a, 0x63, 0x45, 0x06, - 0xed, 0xc2, 0xb4, 0x64, 0xdc, 0x25, 0x54, 0x2c, 0xb8, 0xa7, 0x7a, 0xbd, 0x06, 0x4c, 0xe2, 0xa7, - 0xef, 0x1f, 0xcc, 0x4f, 0xe3, 0x14, 0x19, 0xdc, 0x45, 0x98, 0x3e, 0xcb, 0x5a, 0xf4, 0x68, 0x1d, - 0x62, 0xc3, 0xcf, 0x9e, 0x65, 0xec, 0x85, 0xc9, 0x4a, 0xed, 0x1f, 0xb1, 0xe0, 0x91, 0xae, 0x91, - 0x11, 0x2f, 0xed, 0x63, 0x9e, 0x85, 0xf4, 0xcb, 0xb7, 0xd0, 0xff, 0xe5, 0x6b, 0xff, 0x8c, 0x05, - 0xa7, 0x57, 0x5a, 0xed, 0x78, 0xbf, 0xe2, 0x99, 0xda, 0x9d, 0x97, 0x61, 0xa4, 0x45, 0x5c, 0xaf, - 0xd3, 0x12, 0x33, 0x37, 0x2f, 0x8f, 0x9f, 0x35, 0x56, 0x7a, 0x78, 0x30, 0x3f, 0x51, 0x8f, 0x83, - 0xd0, 0xd9, 0x26, 0xbc, 0x00, 0x0b, 0x74, 0x76, 0x88, 0x7b, 0xef, 0x92, 0x1b, 0x5e, 0xcb, 0x93, - 0x26, 0x3b, 0x3d, 0x65, 0x67, 0x0b, 0x72, 0x40, 0x17, 0xde, 0xe8, 0x38, 0x7e, 0xec, 0xc5, 0xfb, - 0x42, 0x31, 0x23, 0x89, 0xe0, 0x84, 0x9e, 0xfd, 0x55, 0x0b, 0xa6, 0xe4, 0xba, 0x5f, 0x74, 0xdd, - 0x90, 0x44, 0x11, 0x9a, 0x83, 0x82, 0xd7, 0x16, 0xbd, 0x04, 0xd1, 0xcb, 0x42, 0xb5, 0x86, 0x0b, - 0x5e, 0x5b, 0xf2, 0x5b, 0xec, 0x84, 0x2b, 0x9a, 0x3a, 0xaa, 0x6b, 0xa2, 0x1c, 0x2b, 0x0c, 0x74, - 0x19, 0x4a, 0x7e, 0xe0, 0x72, 0xb3, 0x29, 0x7e, 0x57, 0xb1, 0x05, 0xb6, 0x2e, 0xca, 0xb0, 0x82, - 0xa2, 0x1a, 0x94, 0xb9, 0x45, 0x51, 0xb2, 0x68, 0x07, 0xb2, 0x4b, 0x62, 0x5f, 0xb6, 0x21, 0x6b, - 0xe2, 0x84, 0x88, 0xfd, 0xfd, 0x16, 0x8c, 0xcb, 0x2f, 0x1b, 0x90, 0x99, 0xa4, 0x5b, 0x2b, 0x61, - 0x24, 0x93, 0xad, 0x45, 0x99, 0x41, 0x06, 0x31, 0x78, 0xc0, 0xe2, 0x51, 0x78, 0x40, 0xfb, 0x87, - 0x0b, 0x30, 0x29, 0xbb, 0x53, 0xef, 0x6c, 0x46, 0x24, 0x46, 0x1b, 0x50, 0x76, 0xf8, 0x90, 0x13, - 0xb9, 0x62, 0x9f, 0xc8, 0x7e, 0x9c, 0x1b, 0xf3, 0x93, 0x5c, 0xcb, 0x8b, 0xb2, 0x36, 0x4e, 0x08, - 0xa1, 0x26, 0xcc, 0xf8, 0x41, 0xcc, 0x8e, 0x68, 0x05, 0xef, 0xa5, 0x02, 0x49, 0x53, 0x3f, 0x27, - 0xa8, 0xcf, 0xac, 0xa7, 0xa9, 0xe0, 0x6e, 0xc2, 0x68, 0x45, 0x0a, 0x3c, 0x8a, 0xf9, 0x2f, 0x6c, - 0x7d, 0x16, 0xb2, 0xe5, 0x1d, 0xf6, 0x2f, 0x5b, 0x50, 0x96, 0x68, 0x27, 0xa1, 0xed, 0x5a, 0x83, - 0xd1, 0x88, 0x4d, 0x82, 0x1c, 0x1a, 0xbb, 0x57, 0xc7, 0xf9, 0x7c, 0x25, 0x37, 0x0f, 0xff, 0x1f, - 0x61, 0x49, 0x83, 0xc9, 0xbb, 0x55, 0xf7, 0xdf, 0x27, 0xf2, 0x6e, 0xd5, 0x9f, 0x9c, 0x1b, 0xe6, - 0xf7, 0x59, 0x9f, 0x35, 0x01, 0x12, 0x65, 0x90, 0xda, 0x21, 0xd9, 0xf2, 0xee, 0xa5, 0x19, 0xa4, - 0x1a, 0x2b, 0xc5, 0x02, 0x8a, 0xde, 0x82, 0xf1, 0x86, 0x14, 0x74, 0x26, 0xdb, 0xf5, 0x52, 0x4f, - 0xa1, 0xbb, 0xd2, 0xcf, 0x70, 0x23, 0xed, 0x65, 0xad, 0x3e, 0x36, 0xa8, 0x99, 0xea, 0xf6, 0x62, - 0x3f, 0x75, 0x7b, 0x42, 0x37, 0x5f, 0xf9, 0xfc, 0xa3, 0x16, 0x8c, 0x70, 0x01, 0xd7, 0x60, 0xf2, - 0x45, 0x4d, 0x5d, 0x95, 0x8c, 0xdd, 0x6d, 0x5a, 0x28, 0xd4, 0x4f, 0x68, 0x0d, 0xca, 0xec, 0x07, - 0x13, 0xd0, 0x15, 0xf3, 0xad, 0xd3, 0x79, 0xab, 0x7a, 0x07, 0x6f, 0xcb, 0x6a, 0x38, 0xa1, 0x60, - 0xff, 0x60, 0x91, 0x1e, 0x55, 0x09, 0xaa, 0x71, 0x83, 0x5b, 0x0f, 0xef, 0x06, 0x2f, 0x3c, 0xac, - 0x1b, 0x7c, 0x1b, 0xa6, 0x1a, 0x9a, 0x72, 0x2b, 0x99, 0xc9, 0xcb, 0x3d, 0x17, 0x89, 0xa6, 0x07, - 0xe3, 0xb2, 0x90, 0x65, 0x93, 0x08, 0x4e, 0x53, 0x45, 0xdf, 0x0c, 0xe3, 0x7c, 0x9e, 0x45, 0x2b, - 0xdc, 0x62, 0xe1, 0x23, 0xf9, 0xeb, 0x45, 0x6f, 0x82, 0xad, 0xc4, 0xba, 0x56, 0x1d, 0x1b, 0xc4, - 0xec, 0x3f, 0xb6, 0x00, 0xad, 0xb4, 0x77, 0x48, 0x8b, 0x84, 0x4e, 0x33, 0x91, 0x51, 0xff, 0x55, - 0x0b, 0x66, 0x49, 0x57, 0xf1, 0x72, 0xd0, 0x6a, 0x89, 0xa7, 0x45, 0xce, 0xeb, 0x77, 0x25, 0xa7, - 0x8e, 0x32, 0xdf, 0x9f, 0xcd, 0xc3, 0xc0, 0xb9, 0xed, 0xa1, 0x35, 0x38, 0xc5, 0xaf, 0x3c, 0x05, - 0xd0, 0x6c, 0x94, 0x1f, 0x15, 0x84, 0x4f, 0x6d, 0x74, 0xa3, 0xe0, 0xac, 0x7a, 0xf6, 0x97, 0xc7, - 0x20, 0xb7, 0x17, 0x1f, 0x08, 0xe7, 0x3f, 0x10, 0xce, 0x7f, 0x20, 0x9c, 0xff, 0x40, 0x38, 0xff, - 0x81, 0x70, 0xfe, 0xfd, 0x26, 0x9c, 0xff, 0x43, 0x0b, 0x4e, 0x75, 0x9f, 0xda, 0x27, 0xc1, 0x47, - 0x77, 0xe0, 0x54, 0xf7, 0xd5, 0xd4, 0xd3, 0x7c, 0xac, 0xbb, 0x9f, 0xc9, 0x35, 0x95, 0xf1, 0x0d, - 0x38, 0x8b, 0xbe, 0xfd, 0x0b, 0x25, 0x18, 0x5e, 0xd9, 0x23, 0x7e, 0x7c, 0x02, 0x9f, 0xd8, 0x80, - 0x49, 0xcf, 0xdf, 0x0b, 0x9a, 0x7b, 0xc4, 0xe5, 0xf0, 0xa3, 0x3c, 0x4f, 0xcf, 0x0a, 0xd2, 0x93, - 0x55, 0x83, 0x04, 0x4e, 0x91, 0x7c, 0x18, 0xb2, 0xdf, 0xab, 0x30, 0xc2, 0x0f, 0x73, 0x21, 0xf8, - 0xcd, 0x3c, 0xbb, 0xd9, 0x20, 0x8a, 0x2b, 0x2a, 0x91, 0x4b, 0xf3, 0xcb, 0x42, 0x54, 0x47, 0x6f, - 0xc3, 0xe4, 0x96, 0x17, 0x46, 0xf1, 0x86, 0xd7, 0x22, 0x51, 0xec, 0xb4, 0xda, 0x0f, 0x20, 0xeb, - 0x55, 0xe3, 0xb0, 0x6a, 0x50, 0xc2, 0x29, 0xca, 0x68, 0x1b, 0x26, 0x9a, 0x8e, 0xde, 0xd4, 0xe8, - 0x91, 0x9b, 0x52, 0xb7, 0xc4, 0x0d, 0x9d, 0x10, 0x36, 0xe9, 0xd2, 0x7d, 0xda, 0x60, 0xe2, 0xca, - 0x12, 0x7b, 0xeb, 0xab, 0x7d, 0xca, 0xe5, 0x94, 0x1c, 0x46, 0x19, 0x1e, 0x66, 0x50, 0x5a, 0x36, - 0x19, 0x1e, 0xcd, 0x6c, 0xf4, 0xf3, 0x50, 0x26, 0x74, 0x08, 0x29, 0x61, 0x71, 0xd1, 0x5c, 0x19, - 0xac, 0xaf, 0x6b, 0x5e, 0x23, 0x0c, 0x4c, 0x29, 0xfb, 0x8a, 0xa4, 0x84, 0x13, 0xa2, 0x68, 0x19, - 0x46, 0x22, 0x12, 0x7a, 0x24, 0x12, 0x57, 0x4e, 0x8f, 0x69, 0x64, 0x68, 0xdc, 0x17, 0x83, 0xff, - 0xc6, 0xa2, 0x2a, 0x5d, 0x5e, 0x0e, 0x93, 0x53, 0xb2, 0x5b, 0x46, 0x5b, 0x5e, 0x8b, 0xac, 0x14, - 0x0b, 0x28, 0x7a, 0x1d, 0x46, 0x43, 0xd2, 0x64, 0x6a, 0x9c, 0x89, 0xc1, 0x17, 0x39, 0xd7, 0x0a, - 0xf1, 0x7a, 0x58, 0x12, 0x40, 0xd7, 0x01, 0x85, 0x84, 0x32, 0x4c, 0x9e, 0xbf, 0xad, 0xcc, 0x2c, - 0xc5, 0x09, 0xae, 0x76, 0x3c, 0x4e, 0x30, 0xa4, 0x5b, 0x0c, 0xce, 0xa8, 0x86, 0xae, 0xc2, 0x8c, - 0x2a, 0xad, 0xfa, 0x51, 0xec, 0xd0, 0x93, 0x73, 0x8a, 0xd1, 0x52, 0xf2, 0x0a, 0x9c, 0x46, 0xc0, - 0xdd, 0x75, 0xec, 0x9f, 0xb2, 0x80, 0x8f, 0xf3, 0x09, 0xbc, 0xd2, 0x5f, 0x33, 0x5f, 0xe9, 0xe7, - 0x72, 0x67, 0x2e, 0xe7, 0x85, 0x7e, 0xdf, 0x82, 0x31, 0x6d, 0x66, 0x93, 0x35, 0x6b, 0xf5, 0x58, - 0xb3, 0x1d, 0x98, 0xa6, 0x2b, 0xfd, 0xe6, 0x66, 0x44, 0xc2, 0x3d, 0xe2, 0xb2, 0x85, 0x59, 0x78, - 0xb0, 0x85, 0xa9, 0xec, 0xbf, 0x6e, 0xa4, 0x08, 0xe2, 0xae, 0x26, 0xd0, 0xcb, 0x52, 0xa7, 0x51, - 0x34, 0xcc, 0xa7, 0xb9, 0xbe, 0xe2, 0xf0, 0x60, 0x7e, 0x5a, 0xfb, 0x10, 0x5d, 0x87, 0x61, 0x7f, - 0x5e, 0x7e, 0xa3, 0xb2, 0xb3, 0x6b, 0xa8, 0xc5, 0x92, 0xb2, 0xb3, 0x53, 0xcb, 0x01, 0x27, 0x38, - 0x74, 0x8f, 0xee, 0x04, 0x51, 0x9c, 0xb6, 0xb3, 0xbb, 0x16, 0x44, 0x31, 0x66, 0x10, 0xfb, 0x05, - 0x80, 0x95, 0x7b, 0xa4, 0xc1, 0x97, 0xba, 0xfe, 0xfa, 0xb0, 0xf2, 0x5f, 0x1f, 0xf6, 0x7f, 0xb2, - 0x60, 0x72, 0x75, 0xd9, 0x10, 0xe0, 0x2e, 0x00, 0xf0, 0x27, 0xd3, 0x9d, 0x3b, 0xeb, 0x52, 0xeb, - 0xcd, 0x15, 0x97, 0xaa, 0x14, 0x6b, 0x18, 0xe8, 0x1c, 0x14, 0x9b, 0x1d, 0x5f, 0x08, 0x13, 0x47, - 0xe9, 0x85, 0x7d, 0xa3, 0xe3, 0x63, 0x5a, 0xa6, 0xd9, 0xee, 0x17, 0x07, 0xb6, 0xdd, 0xef, 0xeb, - 0x43, 0x8f, 0xe6, 0x61, 0xf8, 0xee, 0x5d, 0xcf, 0xe5, 0x9e, 0x8a, 0x42, 0x23, 0x7f, 0xe7, 0x4e, - 0xb5, 0x12, 0x61, 0x5e, 0x6e, 0x7f, 0xa9, 0x08, 0x73, 0xab, 0x4d, 0x72, 0xef, 0x3d, 0x7a, 0x6b, - 0x0e, 0xea, 0x79, 0x70, 0x34, 0x49, 0xce, 0x51, 0xbd, 0x4b, 0xfa, 0x8f, 0xc7, 0x16, 0x8c, 0x72, - 0x33, 0x33, 0xe9, 0xbb, 0xf9, 0x6a, 0x56, 0xeb, 0xf9, 0x03, 0xb2, 0xc0, 0xcd, 0xd5, 0x84, 0xeb, - 0x99, 0xba, 0x69, 0x45, 0x29, 0x96, 0xc4, 0xe7, 0x3e, 0x01, 0xe3, 0x3a, 0xe6, 0x91, 0xfc, 0xbc, - 0xfe, 0x4a, 0x11, 0xa6, 0x69, 0x0f, 0x1e, 0xea, 0x44, 0xdc, 0xea, 0x9e, 0x88, 0xe3, 0xf6, 0xf5, - 0xe9, 0x3f, 0x1b, 0x6f, 0xa5, 0x67, 0xe3, 0xb9, 0xbc, 0xd9, 0x38, 0xe9, 0x39, 0xf8, 0x0e, 0x0b, - 0x4e, 0xad, 0x36, 0x83, 0xc6, 0x6e, 0xca, 0x1f, 0xe7, 0x25, 0x18, 0xa3, 0xe7, 0x78, 0x64, 0xb8, - 0x8a, 0x1b, 0xc1, 0x03, 0x04, 0x08, 0xeb, 0x78, 0x5a, 0xb5, 0x5b, 0xb7, 0xaa, 0x95, 0xac, 0x98, - 0x03, 0x02, 0x84, 0x75, 0x3c, 0xfb, 0x37, 0x2c, 0x38, 0x7f, 0x75, 0x79, 0x25, 0x59, 0x8a, 0x5d, - 0x61, 0x0f, 0x2e, 0xc1, 0x48, 0xdb, 0xd5, 0xba, 0x92, 0xc8, 0x67, 0x2b, 0xac, 0x17, 0x02, 0xfa, - 0x7e, 0x09, 0xe9, 0xf1, 0x93, 0x16, 0x9c, 0xba, 0xea, 0xc5, 0xf4, 0x5a, 0x4e, 0x3b, 0xe0, 0xd3, - 0x7b, 0x39, 0xf2, 0xe2, 0x20, 0xdc, 0x4f, 0x3b, 0xe0, 0x63, 0x05, 0xc1, 0x1a, 0x16, 0x6f, 0x79, - 0xcf, 0x63, 0x06, 0xce, 0x05, 0x53, 0xed, 0x84, 0x45, 0x39, 0x56, 0x18, 0xf4, 0xc3, 0x5c, 0x2f, - 0x64, 0x42, 0xbe, 0x7d, 0x71, 0xc2, 0xaa, 0x0f, 0xab, 0x48, 0x00, 0x4e, 0x70, 0xe8, 0x03, 0x6a, - 0xfe, 0x6a, 0xb3, 0x13, 0xc5, 0x24, 0xdc, 0x8a, 0x72, 0x4e, 0xc7, 0x17, 0xa0, 0x4c, 0xa4, 0x48, - 0x5d, 0xf4, 0x5a, 0xb1, 0x9a, 0x4a, 0xd6, 0xce, 0xe3, 0x00, 0x28, 0xbc, 0x01, 0xbc, 0xfb, 0x8e, - 0xe6, 0x9e, 0xb5, 0x0a, 0x88, 0xe8, 0x6d, 0xe9, 0x81, 0x11, 0x98, 0x87, 0xf5, 0x4a, 0x17, 0x14, - 0x67, 0xd4, 0xb0, 0x7f, 0xc4, 0x82, 0x33, 0xea, 0x83, 0xdf, 0x77, 0x9f, 0x69, 0x7f, 0xb9, 0x00, - 0x13, 0xd7, 0x36, 0x36, 0x6a, 0x57, 0x49, 0x2c, 0xae, 0xed, 0xfe, 0x5a, 0x6f, 0xac, 0x29, 0xef, - 0x7a, 0xbd, 0x02, 0x3b, 0xb1, 0xd7, 0x5c, 0xe0, 0xf1, 0x75, 0x16, 0xaa, 0x7e, 0x7c, 0x33, 0xac, - 0xc7, 0xa1, 0xe7, 0x6f, 0x67, 0xaa, 0xfb, 0x24, 0x73, 0x51, 0xcc, 0x63, 0x2e, 0xd0, 0x0b, 0x30, - 0xc2, 0x02, 0xfc, 0xc8, 0x49, 0x78, 0x54, 0x3d, 0xa2, 0x58, 0xe9, 0xe1, 0xc1, 0x7c, 0xf9, 0x16, - 0xae, 0xf2, 0x3f, 0x58, 0xa0, 0xa2, 0x5b, 0x30, 0xb6, 0x13, 0xc7, 0xed, 0x6b, 0xc4, 0x71, 0xe9, - 0x6b, 0x99, 0x1f, 0x87, 0x17, 0xb2, 0x8e, 0x43, 0x3a, 0x08, 0x1c, 0x2d, 0x39, 0x41, 0x92, 0xb2, - 0x08, 0xeb, 0x74, 0xec, 0x3a, 0x40, 0x02, 0x3b, 0x26, 0x55, 0x87, 0xfd, 0x7b, 0x16, 0x8c, 0xf2, - 0x58, 0x0b, 0x21, 0xfa, 0x24, 0x0c, 0x91, 0x7b, 0xa4, 0x21, 0x58, 0xe5, 0xcc, 0x0e, 0x27, 0x9c, - 0x16, 0x17, 0xd9, 0xd2, 0xff, 0x98, 0xd5, 0x42, 0xd7, 0x60, 0x94, 0xf6, 0xf6, 0xaa, 0x0a, 0x3c, - 0xf1, 0x78, 0xde, 0x17, 0xab, 0x69, 0xe7, 0xcc, 0x99, 0x28, 0xc2, 0xb2, 0x3a, 0x53, 0x16, 0x37, - 0xda, 0x75, 0x7a, 0x62, 0xc7, 0xbd, 0x18, 0x8b, 0x8d, 0xe5, 0x1a, 0x47, 0x12, 0xd4, 0xb8, 0xb2, - 0x58, 0x16, 0xe2, 0x84, 0x88, 0xbd, 0x01, 0x65, 0x3a, 0xa9, 0x8b, 0x4d, 0xcf, 0xe9, 0xad, 0xff, - 0x7e, 0x1a, 0xca, 0x52, 0xbb, 0x1d, 0x09, 0x1f, 0x6b, 0x46, 0x55, 0x2a, 0xbf, 0x23, 0x9c, 0xc0, - 0xed, 0x2d, 0x38, 0xcd, 0x8c, 0x10, 0x9d, 0x78, 0xc7, 0xd8, 0x63, 0xfd, 0x17, 0xf3, 0x33, 0xe2, - 0xe5, 0xc9, 0x67, 0x66, 0x56, 0x73, 0x63, 0x1c, 0x97, 0x14, 0x93, 0x57, 0xa8, 0xfd, 0x07, 0x43, - 0xf0, 0x68, 0xb5, 0x9e, 0x1f, 0x86, 0xe3, 0x15, 0x18, 0xe7, 0x7c, 0x29, 0x5d, 0xda, 0x4e, 0x53, - 0xb4, 0xab, 0x64, 0xb5, 0x1b, 0x1a, 0x0c, 0x1b, 0x98, 0xe8, 0x3c, 0x14, 0xbd, 0x77, 0xfc, 0xb4, - 0x47, 0x50, 0xf5, 0x8d, 0x75, 0x4c, 0xcb, 0x29, 0x98, 0xb2, 0xb8, 0xfc, 0xee, 0x50, 0x60, 0xc5, - 0xe6, 0xbe, 0x06, 0x93, 0x5e, 0xd4, 0x88, 0xbc, 0xaa, 0x4f, 0xcf, 0x19, 0xed, 0xa4, 0x52, 0x52, - 0x11, 0xda, 0x69, 0x05, 0xc5, 0x29, 0x6c, 0xed, 0x22, 0x1b, 0x1e, 0x98, 0x4d, 0xee, 0xeb, 0x74, - 0x4c, 0x5f, 0x00, 0x6d, 0xf6, 0x75, 0x11, 0x13, 0xba, 0x8b, 0x17, 0x00, 0xff, 0xe0, 0x08, 0x4b, - 0x18, 0x7d, 0x72, 0x36, 0x76, 0x9c, 0xf6, 0x62, 0x27, 0xde, 0xa9, 0x78, 0x51, 0x23, 0xd8, 0x23, - 0xe1, 0x3e, 0x93, 0x16, 0x94, 0x92, 0x27, 0xa7, 0x02, 0x2c, 0x5f, 0x5b, 0xac, 0x51, 0x4c, 0xdc, - 0x5d, 0x07, 0x2d, 0xc2, 0x94, 0x2c, 0xac, 0x93, 0x88, 0x5d, 0x61, 0x63, 0x8c, 0x8c, 0xf2, 0xd1, - 0x11, 0xc5, 0x8a, 0x48, 0x1a, 0xdf, 0xe4, 0xa4, 0xe1, 0x38, 0x38, 0xe9, 0x97, 0x61, 0xc2, 0xf3, - 0xbd, 0xd8, 0x73, 0xe2, 0x80, 0x6b, 0x8c, 0xb8, 0x60, 0x80, 0x89, 0xc2, 0xab, 0x3a, 0x00, 0x9b, - 0x78, 0xf6, 0xff, 0x18, 0x82, 0x19, 0x36, 0x6d, 0x1f, 0xac, 0xb0, 0xaf, 0xa7, 0x15, 0x76, 0xab, - 0x7b, 0x85, 0x1d, 0xc7, 0x13, 0xe1, 0x81, 0x97, 0xd9, 0xdb, 0x50, 0x56, 0x6e, 0x49, 0xd2, 0x2f, - 0xd1, 0xca, 0xf1, 0x4b, 0xec, 0xcf, 0x7d, 0x48, 0x8b, 0xb2, 0x62, 0xa6, 0x45, 0xd9, 0xdf, 0xb1, - 0x20, 0xd1, 0xa9, 0xa0, 0x6b, 0x50, 0x6e, 0x07, 0xcc, 0x02, 0x32, 0x94, 0x66, 0xc5, 0x8f, 0x66, - 0x5e, 0x54, 0xfc, 0x52, 0xe4, 0x1f, 0x5f, 0x93, 0x35, 0x70, 0x52, 0x19, 0x2d, 0xc1, 0x68, 0x3b, - 0x24, 0xf5, 0x98, 0x45, 0xe3, 0xe8, 0x4b, 0x87, 0xaf, 0x11, 0x8e, 0x8f, 0x65, 0x45, 0xfb, 0xe7, - 0x2c, 0x00, 0x6e, 0xb4, 0xe5, 0xf8, 0xdb, 0xe4, 0x04, 0xc4, 0xdd, 0x15, 0x18, 0x8a, 0xda, 0xa4, - 0xd1, 0xcb, 0x36, 0x35, 0xe9, 0x4f, 0xbd, 0x4d, 0x1a, 0xc9, 0x80, 0xd3, 0x7f, 0x98, 0xd5, 0xb6, - 0xbf, 0x0b, 0x60, 0x32, 0x41, 0xab, 0xc6, 0xa4, 0x85, 0x9e, 0x35, 0xbc, 0xf3, 0xcf, 0xa5, 0xbc, - 0xf3, 0xcb, 0x0c, 0x5b, 0x93, 0xac, 0xbe, 0x0d, 0xc5, 0x96, 0x73, 0x4f, 0x88, 0xce, 0x9e, 0xee, - 0xdd, 0x0d, 0x4a, 0x7f, 0x61, 0xcd, 0xb9, 0xc7, 0x1f, 0x89, 0x4f, 0xcb, 0x05, 0xb2, 0xe6, 0xdc, - 0x3b, 0xe4, 0x16, 0xa8, 0xec, 0x90, 0xba, 0xe1, 0x45, 0xf1, 0x17, 0xfe, 0x7b, 0xf2, 0x9f, 0x2d, - 0x3b, 0xda, 0x08, 0x6b, 0xcb, 0xf3, 0x85, 0x09, 0xd3, 0x40, 0x6d, 0x79, 0x7e, 0xba, 0x2d, 0xcf, - 0x1f, 0xa0, 0x2d, 0xcf, 0x47, 0xef, 0xc2, 0xa8, 0x30, 0x17, 0x14, 0xd1, 0x70, 0xae, 0x0c, 0xd0, - 0x9e, 0xb0, 0x36, 0xe4, 0x6d, 0x5e, 0x91, 0x8f, 0x60, 0x51, 0xda, 0xb7, 0x5d, 0xd9, 0x20, 0xfa, - 0x9b, 0x16, 0x4c, 0x8a, 0xdf, 0x98, 0xbc, 0xd3, 0x21, 0x51, 0x2c, 0x78, 0xcf, 0x8f, 0x0f, 0xde, - 0x07, 0x51, 0x91, 0x77, 0xe5, 0xe3, 0xf2, 0x98, 0x35, 0x81, 0x7d, 0x7b, 0x94, 0xea, 0x05, 0xfa, - 0x47, 0x16, 0x9c, 0x6e, 0x39, 0xf7, 0x78, 0x8b, 0xbc, 0x0c, 0x3b, 0xb1, 0x17, 0x08, 0x4d, 0xfd, - 0x27, 0x07, 0x9b, 0xfe, 0xae, 0xea, 0xbc, 0x93, 0x52, 0x3f, 0x79, 0x3a, 0x0b, 0xa5, 0x6f, 0x57, - 0x33, 0xfb, 0x35, 0xb7, 0x05, 0x25, 0xb9, 0xde, 0x32, 0x44, 0x0d, 0x15, 0x9d, 0xb1, 0x3e, 0xb2, - 0xb5, 0xa6, 0xee, 0x22, 0x4f, 0xdb, 0x11, 0x6b, 0xed, 0xa1, 0xb6, 0xf3, 0x36, 0x8c, 0xeb, 0x6b, - 0xec, 0xa1, 0xb6, 0xf5, 0x0e, 0x9c, 0xca, 0x58, 0x4b, 0x0f, 0xb5, 0xc9, 0xbb, 0x70, 0x2e, 0x77, - 0x7d, 0x3c, 0xcc, 0x86, 0xed, 0x2f, 0x5b, 0xfa, 0x39, 0x78, 0x02, 0x3a, 0x87, 0x65, 0x53, 0xe7, - 0x70, 0xa1, 0xf7, 0xce, 0xc9, 0x51, 0x3c, 0xbc, 0xa5, 0x77, 0x9a, 0x9e, 0xea, 0xe8, 0x75, 0x18, - 0x69, 0xd2, 0x12, 0x69, 0xa7, 0x6a, 0xf7, 0xdf, 0x91, 0x09, 0x2f, 0xc5, 0xca, 0x23, 0x2c, 0x28, - 0xd8, 0xbf, 0x68, 0xc1, 0xd0, 0x09, 0x8c, 0x04, 0x36, 0x47, 0xe2, 0xd9, 0x5c, 0xd2, 0x22, 0x50, - 0xef, 0x02, 0x76, 0xee, 0xae, 0xdc, 0x8b, 0x89, 0x1f, 0xb1, 0xa7, 0x62, 0xe6, 0xc0, 0x7c, 0x0b, - 0x9c, 0xba, 0x11, 0x38, 0xee, 0x92, 0xd3, 0x74, 0xfc, 0x06, 0x09, 0xab, 0xfe, 0xf6, 0x91, 0x0c, - 0xa6, 0x0b, 0xfd, 0x0c, 0xa6, 0xed, 0x1d, 0x40, 0x7a, 0x03, 0xc2, 0xa5, 0x04, 0xc3, 0xa8, 0xc7, - 0x9b, 0x12, 0xc3, 0xff, 0x64, 0x36, 0x6b, 0xd6, 0xd5, 0x33, 0xcd, 0x59, 0x82, 0x17, 0x60, 0x49, - 0xc8, 0x7e, 0x05, 0x32, 0xdd, 0xc8, 0xfb, 0x8b, 0x0d, 0xec, 0xcf, 0xc0, 0x0c, 0xab, 0x79, 0xc4, - 0x27, 0xad, 0x9d, 0x92, 0x4a, 0x66, 0xc4, 0x8c, 0xb3, 0xbf, 0x68, 0xc1, 0xd4, 0x7a, 0x2a, 0x94, - 0xd6, 0x25, 0xa6, 0x00, 0xcd, 0x10, 0x86, 0xd7, 0x59, 0x29, 0x16, 0xd0, 0x63, 0x97, 0x41, 0xfd, - 0xb9, 0x05, 0x49, 0x64, 0x87, 0x13, 0x60, 0xbc, 0x96, 0x0d, 0xc6, 0x2b, 0x53, 0x36, 0xa2, 0xba, - 0x93, 0xc7, 0x77, 0xa1, 0xeb, 0x2a, 0x8c, 0x51, 0x0f, 0xb1, 0x48, 0x42, 0x86, 0x07, 0xbd, 0x99, - 0x34, 0x63, 0x1d, 0xc9, 0xc0, 0x46, 0xf6, 0x7f, 0x2d, 0x00, 0x52, 0xb8, 0x03, 0x87, 0x59, 0xea, - 0xae, 0x71, 0x3c, 0x61, 0x96, 0xf6, 0x00, 0x31, 0x15, 0x7e, 0xe8, 0xf8, 0x11, 0x27, 0xeb, 0x09, - 0xa9, 0xdb, 0xd1, 0xec, 0x03, 0xe6, 0x44, 0x93, 0xe8, 0x46, 0x17, 0x35, 0x9c, 0xd1, 0x82, 0x66, - 0x9a, 0x31, 0x3c, 0xa8, 0x69, 0xc6, 0x48, 0x1f, 0xb7, 0xb1, 0x9f, 0xb5, 0x60, 0x42, 0x0d, 0xd3, - 0xfb, 0xc4, 0x5c, 0x5c, 0xf5, 0x27, 0xe7, 0xe8, 0xab, 0x69, 0x5d, 0x66, 0x57, 0xc2, 0x37, 0x32, - 0xf7, 0x3f, 0xa7, 0xe9, 0xbd, 0x4b, 0x54, 0x90, 0xbb, 0x79, 0xe1, 0xce, 0x27, 0x4a, 0x0f, 0x0f, - 0xe6, 0x27, 0xd4, 0x3f, 0x1e, 0x54, 0x37, 0xa9, 0x62, 0xff, 0x38, 0xdd, 0xec, 0xe6, 0x52, 0x44, - 0x2f, 0xc1, 0x70, 0x7b, 0xc7, 0x89, 0x48, 0xca, 0x47, 0x66, 0xb8, 0x46, 0x0b, 0x0f, 0x0f, 0xe6, - 0x27, 0x55, 0x05, 0x56, 0x82, 0x39, 0xf6, 0xe0, 0xc1, 0xab, 0xba, 0x17, 0x67, 0xdf, 0xe0, 0x55, - 0x7f, 0x6c, 0xc1, 0xd0, 0x7a, 0xe0, 0x9e, 0xc4, 0x11, 0xf0, 0x9a, 0x71, 0x04, 0x3c, 0x96, 0x17, - 0xef, 0x3c, 0x77, 0xf7, 0xaf, 0xa6, 0x76, 0xff, 0x85, 0x5c, 0x0a, 0xbd, 0x37, 0x7e, 0x0b, 0xc6, - 0x58, 0x14, 0x75, 0xe1, 0x0f, 0xf4, 0x82, 0xb1, 0xe1, 0xe7, 0x53, 0x1b, 0x7e, 0x4a, 0x43, 0xd5, - 0x76, 0xfa, 0x53, 0x30, 0x2a, 0x7c, 0x52, 0xd2, 0x5e, 0x94, 0x02, 0x17, 0x4b, 0xb8, 0xfd, 0xa3, - 0x45, 0x30, 0xa2, 0xb6, 0xa3, 0x5f, 0xb6, 0x60, 0x21, 0xe4, 0xb6, 0xaa, 0x6e, 0xa5, 0x13, 0x7a, - 0xfe, 0x76, 0xbd, 0xb1, 0x43, 0xdc, 0x4e, 0xd3, 0xf3, 0xb7, 0xab, 0xdb, 0x7e, 0xa0, 0x8a, 0x57, - 0xee, 0x91, 0x46, 0x87, 0xa9, 0xaf, 0xfa, 0x84, 0x88, 0x57, 0x36, 0xdf, 0xcf, 0xdf, 0x3f, 0x98, - 0x5f, 0xc0, 0x47, 0xa2, 0x8d, 0x8f, 0xd8, 0x17, 0xf4, 0x1b, 0x16, 0x5c, 0xe1, 0xc1, 0xcc, 0x07, - 0xef, 0x7f, 0x8f, 0x77, 0x6e, 0x4d, 0x92, 0x4a, 0x88, 0x6c, 0x90, 0xb0, 0xb5, 0xf4, 0xb2, 0x18, - 0xd0, 0x2b, 0xb5, 0xa3, 0xb5, 0x85, 0x8f, 0xda, 0x39, 0xfb, 0x5f, 0x15, 0x61, 0x42, 0x44, 0x44, - 0x12, 0x77, 0xc0, 0x4b, 0xc6, 0x92, 0x78, 0x3c, 0xb5, 0x24, 0x66, 0x0c, 0xe4, 0xe3, 0x39, 0xfe, - 0x23, 0x98, 0xa1, 0x87, 0xf3, 0x35, 0xe2, 0x84, 0xf1, 0x26, 0x71, 0xb8, 0xc5, 0x55, 0xf1, 0xc8, - 0xa7, 0xbf, 0x12, 0xac, 0xdd, 0x48, 0x13, 0xc3, 0xdd, 0xf4, 0xbf, 0x9e, 0xee, 0x1c, 0x1f, 0xa6, - 0xbb, 0x82, 0x5a, 0xbd, 0x09, 0x65, 0xe5, 0x50, 0x21, 0x0e, 0x9d, 0xde, 0xb1, 0xe1, 0xd2, 0x14, - 0xb8, 0xf0, 0x2b, 0x71, 0xe6, 0x49, 0xc8, 0xd9, 0xff, 0xb8, 0x60, 0x34, 0xc8, 0x27, 0x71, 0x1d, - 0x4a, 0x4e, 0x14, 0x79, 0xdb, 0x3e, 0x71, 0xc5, 0x8e, 0xfd, 0x70, 0xde, 0x8e, 0x35, 0x9a, 0x61, - 0x4e, 0x2d, 0x8b, 0xa2, 0x26, 0x56, 0x34, 0xd0, 0x35, 0x6e, 0xd7, 0xb6, 0x27, 0x5f, 0x6a, 0x83, - 0x51, 0x03, 0x69, 0xf9, 0xb6, 0x47, 0xb0, 0xa8, 0x8f, 0x3e, 0xcb, 0x0d, 0x0f, 0xaf, 0xfb, 0xc1, - 0x5d, 0xff, 0x6a, 0x10, 0xc8, 0x30, 0x06, 0x83, 0x11, 0x9c, 0x91, 0xe6, 0x86, 0xaa, 0x3a, 0x36, - 0xa9, 0x0d, 0x16, 0xf8, 0xf1, 0x5b, 0xe1, 0x14, 0x25, 0x6d, 0x3a, 0x23, 0x47, 0x88, 0xc0, 0x94, - 0x08, 0xb7, 0x25, 0xcb, 0xc4, 0xd8, 0x65, 0x3e, 0xc2, 0xcc, 0xda, 0x89, 0x04, 0xf8, 0xba, 0x49, - 0x02, 0xa7, 0x69, 0xda, 0x3f, 0x61, 0x01, 0x73, 0xcc, 0x3c, 0x01, 0x7e, 0xe4, 0x53, 0x26, 0x3f, - 0x32, 0x9b, 0x37, 0xc8, 0x39, 0xac, 0xc8, 0x8b, 0x7c, 0x65, 0xd5, 0xc2, 0xe0, 0xde, 0xbe, 0x30, - 0xfa, 0xe8, 0xff, 0xfe, 0xb0, 0xff, 0xaf, 0xc5, 0x0f, 0x31, 0xe5, 0xee, 0x80, 0xbe, 0x0d, 0x4a, - 0x0d, 0xa7, 0xed, 0x34, 0x78, 0x8a, 0x91, 0x5c, 0x59, 0x9c, 0x51, 0x69, 0x61, 0x59, 0xd4, 0xe0, - 0xb2, 0x25, 0x19, 0xb6, 0xad, 0x24, 0x8b, 0xfb, 0xca, 0x93, 0x54, 0x93, 0x73, 0xbb, 0x30, 0x61, - 0x10, 0x7b, 0xa8, 0x82, 0x88, 0x6f, 0xe3, 0x57, 0xac, 0x0a, 0x33, 0xd8, 0x82, 0x19, 0x5f, 0xfb, - 0x4f, 0x2f, 0x14, 0xf9, 0xb8, 0xfc, 0x70, 0xbf, 0x4b, 0x94, 0xdd, 0x3e, 0x9a, 0x9b, 0x68, 0x8a, - 0x0c, 0xee, 0xa6, 0x6c, 0xff, 0x98, 0x05, 0x8f, 0xe8, 0x88, 0x9a, 0x27, 0x4a, 0x3f, 0xe9, 0x7e, - 0x05, 0x4a, 0x41, 0x9b, 0x84, 0x4e, 0x1c, 0x84, 0xe2, 0xd6, 0xb8, 0x2c, 0x07, 0xfd, 0xa6, 0x28, - 0x3f, 0x14, 0x01, 0xba, 0x25, 0x75, 0x59, 0x8e, 0x55, 0x4d, 0xfa, 0xfa, 0x64, 0x83, 0x11, 0x09, - 0x9f, 0x23, 0x76, 0x06, 0x30, 0x45, 0x77, 0x84, 0x05, 0xc4, 0xfe, 0x03, 0x8b, 0x2f, 0x2c, 0xbd, - 0xeb, 0xe8, 0x1d, 0x98, 0x6e, 0x39, 0x71, 0x63, 0x67, 0xe5, 0x5e, 0x3b, 0xe4, 0xba, 0x12, 0x39, - 0x4e, 0x4f, 0xf7, 0x1b, 0x27, 0xed, 0x23, 0x13, 0x5b, 0xca, 0xb5, 0x14, 0x31, 0xdc, 0x45, 0x1e, - 0x6d, 0xc2, 0x18, 0x2b, 0x63, 0xee, 0x74, 0x51, 0x2f, 0xd6, 0x20, 0xaf, 0x35, 0x65, 0x2b, 0xb0, - 0x96, 0xd0, 0xc1, 0x3a, 0x51, 0xfb, 0x67, 0x8a, 0x7c, 0xb7, 0x33, 0x56, 0xfe, 0x29, 0x18, 0x6d, - 0x07, 0xee, 0x72, 0xb5, 0x82, 0xc5, 0x2c, 0xa8, 0x6b, 0xa4, 0xc6, 0x8b, 0xb1, 0x84, 0xa3, 0xcb, - 0x50, 0x12, 0x3f, 0xa5, 0x6e, 0x8b, 0x9d, 0xcd, 0x02, 0x2f, 0xc2, 0x0a, 0x8a, 0x9e, 0x07, 0x68, - 0x87, 0xc1, 0x9e, 0xe7, 0xb2, 0x60, 0x0c, 0x45, 0xd3, 0xcc, 0xa7, 0xa6, 0x20, 0x58, 0xc3, 0x42, - 0xaf, 0xc2, 0x44, 0xc7, 0x8f, 0x38, 0x3b, 0xe2, 0x6c, 0x8a, 0x58, 0xd6, 0xa5, 0xc4, 0x00, 0xe5, - 0x96, 0x0e, 0xc4, 0x26, 0x2e, 0x5a, 0x84, 0x91, 0xd8, 0x61, 0x66, 0x2b, 0xc3, 0xf9, 0xf6, 0xb6, - 0x1b, 0x14, 0x43, 0xcf, 0x66, 0x41, 0x2b, 0x60, 0x51, 0x11, 0xbd, 0x29, 0x3d, 0x5b, 0xf9, 0xc1, - 0x2e, 0x0c, 0xdd, 0x07, 0xbb, 0x04, 0x34, 0xbf, 0x56, 0x61, 0x40, 0x6f, 0xd0, 0x42, 0xaf, 0x02, - 0x90, 0x7b, 0x31, 0x09, 0x7d, 0xa7, 0xa9, 0xac, 0xc2, 0x94, 0x1d, 0x74, 0x25, 0x58, 0x0f, 0xe2, - 0x5b, 0x11, 0xf9, 0x96, 0x15, 0x85, 0x82, 0x35, 0x74, 0xfb, 0x37, 0xca, 0x00, 0x09, 0xe3, 0x8e, - 0xde, 0xed, 0x3a, 0xb9, 0x9e, 0xe9, 0xcd, 0xea, 0x1f, 0xdf, 0xb1, 0x85, 0xbe, 0xdb, 0x82, 0x31, - 0xa7, 0xd9, 0x0c, 0x1a, 0x4e, 0xcc, 0xa6, 0xa8, 0xd0, 0xfb, 0xe4, 0x14, 0xed, 0x2f, 0x26, 0x35, - 0x78, 0x17, 0x5e, 0x90, 0x4b, 0x54, 0x83, 0xf4, 0xed, 0x85, 0xde, 0x30, 0xfa, 0x98, 0x7c, 0x2b, - 0xf2, 0xb5, 0x35, 0x97, 0x7e, 0x2b, 0x96, 0xd9, 0x25, 0xa1, 0x3f, 0x13, 0x6f, 0x19, 0xcf, 0xc4, - 0xa1, 0x7c, 0xdf, 0x3d, 0x83, 0x7f, 0xed, 0xf7, 0x42, 0x44, 0x35, 0xdd, 0x8f, 0x7f, 0x38, 0xdf, - 0x51, 0x4e, 0x7b, 0x28, 0xf5, 0xf1, 0xe1, 0x7f, 0x1b, 0xa6, 0x5c, 0x93, 0x0b, 0x10, 0x4b, 0xf1, - 0xc9, 0x3c, 0xba, 0x29, 0xa6, 0x21, 0xb9, 0xf7, 0x53, 0x00, 0x9c, 0x26, 0x8c, 0x6a, 0x3c, 0x46, - 0x43, 0xd5, 0xdf, 0x0a, 0x84, 0xb7, 0x85, 0x9d, 0x3b, 0x97, 0xfb, 0x51, 0x4c, 0x5a, 0x14, 0x33, - 0xb9, 0xde, 0xd7, 0x45, 0x5d, 0xac, 0xa8, 0xa0, 0xd7, 0x61, 0x84, 0xb9, 0x5e, 0x45, 0xb3, 0xa5, - 0x7c, 0x61, 0xb1, 0x19, 0x4d, 0x2c, 0xd9, 0x91, 0xec, 0x6f, 0x84, 0x05, 0x05, 0x74, 0x4d, 0xfa, - 0x21, 0x46, 0x55, 0xff, 0x56, 0x44, 0x98, 0x1f, 0x62, 0x79, 0xe9, 0xc3, 0x89, 0x8b, 0x21, 0x2f, - 0xcf, 0x4c, 0x7a, 0x65, 0xd4, 0xa4, 0x6c, 0x94, 0xf8, 0x2f, 0x73, 0x69, 0xcd, 0x42, 0x7e, 0xf7, - 0xcc, 0x7c, 0x5b, 0xc9, 0x70, 0xde, 0x36, 0x49, 0xe0, 0x34, 0x4d, 0xca, 0x92, 0xf2, 0x6d, 0x2f, - 0xfc, 0x35, 0xfa, 0x1d, 0x1e, 0xfc, 0x25, 0xce, 0xae, 0x23, 0x5e, 0x82, 0x45, 0xfd, 0x13, 0xe5, - 0x0f, 0xe6, 0x7c, 0x98, 0x4e, 0x6f, 0xd1, 0x87, 0xca, 0x8f, 0xfc, 0xde, 0x10, 0x4c, 0x9a, 0x4b, - 0x0a, 0x5d, 0x81, 0xb2, 0x20, 0xa2, 0xe2, 0xdf, 0xab, 0x5d, 0xb2, 0x26, 0x01, 0x38, 0xc1, 0x61, - 0x69, 0x0f, 0x58, 0x75, 0xcd, 0xce, 0x36, 0x49, 0x7b, 0xa0, 0x20, 0x58, 0xc3, 0xa2, 0x2f, 0xab, - 0xcd, 0x20, 0x88, 0xd5, 0x8d, 0xa4, 0xd6, 0xdd, 0x12, 0x2b, 0xc5, 0x02, 0x4a, 0x6f, 0xa2, 0x5d, - 0x12, 0xfa, 0xa4, 0x69, 0x86, 0xd5, 0x55, 0x37, 0xd1, 0x75, 0x1d, 0x88, 0x4d, 0x5c, 0x7a, 0x9f, - 0x06, 0x11, 0x5b, 0xc8, 0xe2, 0xfd, 0x96, 0xd8, 0x2d, 0xd7, 0xb9, 0x2b, 0xb4, 0x84, 0xa3, 0xcf, - 0xc0, 0x23, 0x2a, 0x16, 0x11, 0xe6, 0x8a, 0x08, 0xd9, 0xe2, 0x88, 0x21, 0x6e, 0x79, 0x64, 0x39, - 0x1b, 0x0d, 0xe7, 0xd5, 0x47, 0xaf, 0xc1, 0xa4, 0xe0, 0xf1, 0x25, 0xc5, 0x51, 0xd3, 0x36, 0xe6, - 0xba, 0x01, 0xc5, 0x29, 0x6c, 0x19, 0x18, 0x98, 0xb1, 0xd9, 0x92, 0x42, 0xa9, 0x3b, 0x30, 0xb0, - 0x0e, 0xc7, 0x5d, 0x35, 0xd0, 0x22, 0x4c, 0x71, 0x26, 0xcc, 0xf3, 0xb7, 0xf9, 0x9c, 0x08, 0x77, - 0x2a, 0xb5, 0xa5, 0x6e, 0x9a, 0x60, 0x9c, 0xc6, 0x47, 0xaf, 0xc0, 0xb8, 0x13, 0x36, 0x76, 0xbc, - 0x98, 0x34, 0xe2, 0x4e, 0xc8, 0xfd, 0xac, 0x34, 0xe3, 0xa2, 0x45, 0x0d, 0x86, 0x0d, 0x4c, 0xfb, - 0x5d, 0x38, 0x95, 0x11, 0x23, 0x81, 0x2e, 0x1c, 0xa7, 0xed, 0xc9, 0x6f, 0x4a, 0x59, 0x20, 0x2f, - 0xd6, 0xaa, 0xf2, 0x6b, 0x34, 0x2c, 0xba, 0x3a, 0x59, 0x2c, 0x05, 0x2d, 0x75, 0x9e, 0x5a, 0x9d, - 0xab, 0x12, 0x80, 0x13, 0x1c, 0xfb, 0x7f, 0x17, 0x60, 0x2a, 0x43, 0xb9, 0xc2, 0xd2, 0xb7, 0xa5, - 0x5e, 0x29, 0x49, 0xb6, 0x36, 0x33, 0xce, 0x74, 0xe1, 0x08, 0x71, 0xa6, 0x8b, 0xfd, 0xe2, 0x4c, - 0x0f, 0xbd, 0x97, 0x38, 0xd3, 0xe6, 0x88, 0x0d, 0x0f, 0x34, 0x62, 0x19, 0xb1, 0xa9, 0x47, 0x8e, - 0x18, 0x9b, 0xda, 0x18, 0xf4, 0xd1, 0x01, 0x06, 0xfd, 0x07, 0x0b, 0x30, 0x9d, 0x36, 0x82, 0x3c, - 0x01, 0xc1, 0xed, 0xeb, 0x86, 0xe0, 0x36, 0x3b, 0x19, 0x62, 0xda, 0x34, 0x33, 0x4f, 0x88, 0x8b, - 0x53, 0x42, 0xdc, 0x8f, 0x0e, 0x44, 0xad, 0xb7, 0x40, 0xf7, 0xef, 0x15, 0xe0, 0x4c, 0xba, 0xca, - 0x72, 0xd3, 0xf1, 0x5a, 0x27, 0x30, 0x36, 0x37, 0x8d, 0xb1, 0x79, 0x76, 0x90, 0xaf, 0x61, 0x5d, - 0xcb, 0x1d, 0xa0, 0x3b, 0xa9, 0x01, 0xba, 0x32, 0x38, 0xc9, 0xde, 0xa3, 0xf4, 0xd5, 0x22, 0x5c, - 0xc8, 0xac, 0x97, 0xc8, 0x3d, 0x57, 0x0d, 0xb9, 0xe7, 0xf3, 0x29, 0xb9, 0xa7, 0xdd, 0xbb, 0xf6, - 0xf1, 0x08, 0x42, 0x85, 0x8b, 0x2c, 0x8b, 0x20, 0xf0, 0x80, 0x42, 0x50, 0xc3, 0x45, 0x56, 0x11, - 0xc2, 0x26, 0xdd, 0xaf, 0x27, 0xe1, 0xe7, 0xbf, 0xb3, 0xe0, 0x5c, 0xe6, 0xdc, 0x9c, 0x80, 0xb0, - 0x6b, 0xdd, 0x14, 0x76, 0x3d, 0x35, 0xf0, 0x6a, 0xcd, 0x91, 0x7e, 0xfd, 0xda, 0x50, 0xce, 0xb7, - 0xb0, 0xa7, 0xfc, 0x4d, 0x18, 0x73, 0x1a, 0x0d, 0x12, 0x45, 0x6b, 0x81, 0xab, 0x62, 0xf3, 0x3e, - 0xcb, 0xde, 0x59, 0x49, 0xf1, 0xe1, 0xc1, 0xfc, 0x5c, 0x9a, 0x44, 0x02, 0xc6, 0x3a, 0x05, 0xf4, - 0x59, 0x28, 0x45, 0xe2, 0xde, 0x14, 0x73, 0xff, 0xc2, 0x80, 0x83, 0xe3, 0x6c, 0x92, 0xa6, 0x19, - 0x96, 0x48, 0x89, 0x2a, 0x14, 0x49, 0x33, 0x84, 0x49, 0xe1, 0x58, 0x43, 0x98, 0x3c, 0x0f, 0xb0, - 0xa7, 0x1e, 0x03, 0x69, 0x01, 0x84, 0xf6, 0x4c, 0xd0, 0xb0, 0xd0, 0x37, 0xc1, 0x74, 0xc4, 0x83, - 0xf0, 0x2d, 0x37, 0x9d, 0x88, 0xf9, 0xb9, 0x88, 0x55, 0xc8, 0x42, 0x1f, 0xd5, 0x53, 0x30, 0xdc, - 0x85, 0x8d, 0x56, 0x65, 0xab, 0x2c, 0x62, 0x20, 0x5f, 0x98, 0x97, 0x92, 0x16, 0x45, 0xf2, 0xd8, - 0xd3, 0xe9, 0xe1, 0x67, 0x03, 0xaf, 0xd5, 0x44, 0x9f, 0x05, 0xa0, 0xcb, 0x47, 0x08, 0x22, 0x46, - 0xf3, 0x0f, 0x4f, 0x7a, 0xaa, 0xb8, 0x99, 0x66, 0xb9, 0xcc, 0x39, 0xb5, 0xa2, 0x88, 0x60, 0x8d, - 0xa0, 0xfd, 0x83, 0x43, 0xf0, 0x68, 0x8f, 0x33, 0x12, 0x2d, 0x9a, 0x8a, 0xd8, 0xa7, 0xd3, 0x8f, - 0xeb, 0xb9, 0xcc, 0xca, 0xc6, 0x6b, 0x3b, 0xb5, 0x14, 0x0b, 0xef, 0x79, 0x29, 0x7e, 0x9f, 0xa5, - 0x89, 0x3d, 0xb8, 0xb1, 0xe6, 0xa7, 0x8e, 0x78, 0xf6, 0x1f, 0xa3, 0x1c, 0x64, 0x2b, 0x43, 0x98, - 0xf0, 0xfc, 0xc0, 0xdd, 0x19, 0x58, 0xba, 0x70, 0xb2, 0x62, 0xe2, 0x2f, 0x58, 0xf0, 0x78, 0x66, - 0x7f, 0x0d, 0x93, 0x9c, 0x2b, 0x50, 0x6e, 0xd0, 0x42, 0xcd, 0x17, 0x31, 0x71, 0xd2, 0x96, 0x00, - 0x9c, 0xe0, 0x18, 0x96, 0x37, 0x85, 0xbe, 0x96, 0x37, 0xff, 0xd2, 0x82, 0xae, 0xfd, 0x71, 0x02, - 0x07, 0x75, 0xd5, 0x3c, 0xa8, 0x3f, 0x3c, 0xc8, 0x5c, 0xe6, 0x9c, 0xd1, 0x7f, 0x34, 0x05, 0x67, - 0x73, 0x7c, 0x71, 0xf6, 0x60, 0x66, 0xbb, 0x41, 0x4c, 0x2f, 0x4f, 0xf1, 0x31, 0x99, 0x0e, 0xb1, - 0x3d, 0x5d, 0x42, 0x59, 0x26, 0xc8, 0x99, 0x2e, 0x14, 0xdc, 0xdd, 0x04, 0xfa, 0x82, 0x05, 0xa7, - 0x9d, 0xbb, 0x51, 0x57, 0xea, 0x78, 0xb1, 0x66, 0x5e, 0xcc, 0x14, 0x82, 0xf4, 0x49, 0x35, 0xcf, - 0x53, 0x63, 0x66, 0x61, 0xe1, 0xcc, 0xb6, 0x10, 0x16, 0xd1, 0xda, 0x29, 0x3b, 0xdf, 0xc3, 0x0f, - 0x39, 0xcb, 0x69, 0x8a, 0xdf, 0x20, 0x12, 0x82, 0x15, 0x1d, 0xf4, 0x79, 0x28, 0x6f, 0x4b, 0x4f, - 0xc6, 0x8c, 0x1b, 0x2a, 0x19, 0xc8, 0xde, 0xfe, 0x9d, 0x5c, 0x95, 0xa9, 0x90, 0x70, 0x42, 0x14, - 0xbd, 0x06, 0x45, 0x7f, 0x2b, 0xea, 0x95, 0x5d, 0x32, 0x65, 0xb3, 0xc6, 0xbd, 0xfd, 0xd7, 0x57, - 0xeb, 0x98, 0x56, 0x44, 0xd7, 0xa0, 0x18, 0x6e, 0xba, 0x42, 0x82, 0x97, 0x79, 0x86, 0xe3, 0xa5, - 0x4a, 0x4e, 0xaf, 0x18, 0x25, 0xbc, 0x54, 0xc1, 0x94, 0x04, 0xaa, 0xc1, 0x30, 0x73, 0x60, 0x11, - 0xf7, 0x41, 0x26, 0xe7, 0xdb, 0xc3, 0x11, 0x8c, 0x87, 0x04, 0x60, 0x08, 0x98, 0x13, 0x42, 0x1b, - 0x30, 0xd2, 0x60, 0x99, 0x08, 0x45, 0xfc, 0xb0, 0x8f, 0x65, 0xca, 0xea, 0x7a, 0xa4, 0x68, 0x14, - 0xa2, 0x2b, 0x86, 0x81, 0x05, 0x2d, 0x46, 0x95, 0xb4, 0x77, 0xb6, 0x22, 0x91, 0x39, 0x37, 0x9b, - 0x6a, 0x8f, 0xcc, 0xa3, 0x82, 0x2a, 0xc3, 0xc0, 0x82, 0x16, 0xfa, 0x04, 0x14, 0xb6, 0x1a, 0xc2, - 0x39, 0x25, 0x53, 0x68, 0x67, 0x06, 0x6c, 0x58, 0x1a, 0xb9, 0x7f, 0x30, 0x5f, 0x58, 0x5d, 0xc6, - 0x85, 0xad, 0x06, 0x5a, 0x87, 0xd1, 0x2d, 0xee, 0xe2, 0x2d, 0xe4, 0x72, 0x4f, 0x66, 0x7b, 0x9f, - 0x77, 0x79, 0x81, 0x73, 0xbf, 0x0c, 0x01, 0xc0, 0x92, 0x08, 0x0b, 0x7e, 0xae, 0x5c, 0xd5, 0x45, - 0xec, 0xae, 0x85, 0xa3, 0x85, 0x17, 0xe0, 0xf7, 0x73, 0xe2, 0xf0, 0x8e, 0x35, 0x8a, 0x74, 0x55, - 0x3b, 0x32, 0x7d, 0xb9, 0x88, 0xc5, 0x92, 0xb9, 0xaa, 0xfb, 0x64, 0x76, 0xe7, 0xab, 0x5a, 0x21, - 0xe1, 0x84, 0x28, 0xda, 0x85, 0x89, 0xbd, 0xa8, 0xbd, 0x43, 0xe4, 0x96, 0x66, 0xa1, 0x59, 0x72, - 0xae, 0xb0, 0xdb, 0x02, 0xd1, 0x0b, 0xe3, 0x8e, 0xd3, 0xec, 0x3a, 0x85, 0x98, 0xfe, 0xfb, 0xb6, - 0x4e, 0x0c, 0x9b, 0xb4, 0xe9, 0xf0, 0xbf, 0xd3, 0x09, 0x36, 0xf7, 0x63, 0x22, 0x42, 0x6e, 0x65, - 0x0e, 0xff, 0x1b, 0x1c, 0xa5, 0x7b, 0xf8, 0x05, 0x00, 0x4b, 0x22, 0xe8, 0xb6, 0x18, 0x1e, 0x76, - 0x7a, 0x4e, 0xe7, 0x87, 0xb1, 0x5c, 0x94, 0x48, 0x39, 0x83, 0xc2, 0x4e, 0xcb, 0x84, 0x14, 0x3b, - 0x25, 0xdb, 0x3b, 0x41, 0x1c, 0xf8, 0xa9, 0x13, 0x7a, 0x26, 0xff, 0x94, 0xac, 0x65, 0xe0, 0x77, - 0x9f, 0x92, 0x59, 0x58, 0x38, 0xb3, 0x2d, 0xe4, 0xc2, 0x64, 0x3b, 0x08, 0xe3, 0xbb, 0x41, 0x28, - 0xd7, 0x17, 0xea, 0x21, 0x57, 0x30, 0x30, 0x45, 0x8b, 0x2c, 0xf8, 0x9c, 0x09, 0xc1, 0x29, 0x9a, - 0xe8, 0xd3, 0x30, 0x1a, 0x35, 0x9c, 0x26, 0xa9, 0xde, 0x9c, 0x3d, 0x95, 0x7f, 0xfd, 0xd4, 0x39, - 0x4a, 0xce, 0xea, 0x62, 0x93, 0x23, 0x50, 0xb0, 0x24, 0x87, 0x56, 0x61, 0x98, 0xe5, 0xa2, 0x62, - 0xf1, 0xe1, 0x72, 0xa2, 0x71, 0x76, 0x59, 0x10, 0xf3, 0xb3, 0x89, 0x15, 0x63, 0x5e, 0x9d, 0xee, - 0x01, 0xc1, 0x5e, 0x07, 0xd1, 0xec, 0x99, 0xfc, 0x3d, 0x20, 0xb8, 0xf2, 0x9b, 0xf5, 0x5e, 0x7b, - 0x40, 0x21, 0xe1, 0x84, 0x28, 0x3d, 0x99, 0xe9, 0x69, 0x7a, 0xb6, 0x87, 0xe9, 0x4b, 0xee, 0x59, - 0xca, 0x4e, 0x66, 0x7a, 0x92, 0x52, 0x12, 0xf6, 0xef, 0x8c, 0x76, 0xf3, 0x2c, 0xec, 0x41, 0xf6, - 0x9d, 0x56, 0x97, 0xae, 0xee, 0xe3, 0x83, 0xca, 0x87, 0x8e, 0x91, 0x5b, 0xfd, 0x82, 0x05, 0x67, - 0xdb, 0x99, 0x1f, 0x22, 0x18, 0x80, 0xc1, 0xc4, 0x4c, 0xfc, 0xd3, 0x55, 0x2c, 0xc1, 0x6c, 0x38, - 0xce, 0x69, 0x29, 0xfd, 0x22, 0x28, 0xbe, 0xe7, 0x17, 0xc1, 0x1a, 0x94, 0x18, 0x93, 0xd9, 0x27, - 0x33, 0x6f, 0xfa, 0x61, 0xc4, 0x58, 0x89, 0x65, 0x51, 0x11, 0x2b, 0x12, 0xe8, 0xfb, 0x2d, 0x38, - 0x9f, 0xee, 0x3a, 0x26, 0x0c, 0x2c, 0x02, 0x10, 0xf2, 0xb7, 0xe0, 0xaa, 0xf8, 0xfe, 0xf3, 0xb5, - 0x5e, 0xc8, 0x87, 0xfd, 0x10, 0x70, 0xef, 0xc6, 0x50, 0x25, 0xe3, 0x31, 0x3a, 0x62, 0x0a, 0xe0, - 0x07, 0x78, 0x90, 0xbe, 0x08, 0xe3, 0xad, 0xa0, 0xe3, 0xc7, 0xc2, 0x52, 0x46, 0x68, 0xed, 0x99, - 0xb6, 0x7a, 0x4d, 0x2b, 0xc7, 0x06, 0x56, 0xea, 0x19, 0x5b, 0x7a, 0xe0, 0x67, 0xec, 0x5b, 0x30, - 0xee, 0x6b, 0xa6, 0x9d, 0x82, 0x1f, 0xb8, 0x94, 0x1f, 0xeb, 0x53, 0x37, 0x04, 0xe5, 0xbd, 0xd4, - 0x4b, 0xb0, 0x41, 0xed, 0x64, 0xdf, 0x46, 0x3f, 0x65, 0x65, 0x30, 0xf5, 0xfc, 0xb5, 0xfc, 0x49, - 0xf3, 0xb5, 0x7c, 0x29, 0xfd, 0x5a, 0xee, 0x12, 0xbe, 0x1a, 0x0f, 0xe5, 0xc1, 0x13, 0x8e, 0x0c, - 0x1a, 0x27, 0xd0, 0x6e, 0xc2, 0xc5, 0x7e, 0xd7, 0x12, 0x33, 0x99, 0x72, 0x95, 0xaa, 0x2d, 0x31, - 0x99, 0x72, 0xab, 0x15, 0xcc, 0x20, 0x83, 0x06, 0x92, 0xb1, 0xff, 0x97, 0x05, 0xc5, 0x5a, 0xe0, - 0x9e, 0x80, 0x30, 0xf9, 0x53, 0x86, 0x30, 0xf9, 0xd1, 0xec, 0x0b, 0xd1, 0xcd, 0x15, 0x1d, 0xaf, - 0xa4, 0x44, 0xc7, 0xe7, 0xf3, 0x08, 0xf4, 0x16, 0x14, 0xff, 0x78, 0x11, 0xc6, 0x6a, 0x81, 0xab, - 0xec, 0x95, 0x7f, 0xed, 0x41, 0xec, 0x95, 0x73, 0x03, 0xf2, 0x6b, 0x94, 0x99, 0xa5, 0x95, 0x74, - 0xb2, 0xfc, 0x0b, 0x66, 0xb6, 0x7c, 0x87, 0x78, 0xdb, 0x3b, 0x31, 0x71, 0xd3, 0x9f, 0x73, 0x72, - 0x66, 0xcb, 0xff, 0xd3, 0x82, 0xa9, 0x54, 0xeb, 0xa8, 0x09, 0x13, 0x4d, 0x5d, 0x30, 0x29, 0xd6, - 0xe9, 0x03, 0xc9, 0x34, 0x85, 0xd9, 0xa7, 0x56, 0x84, 0x4d, 0xe2, 0x68, 0x01, 0x40, 0x69, 0xea, - 0xa4, 0x04, 0x8c, 0x71, 0xfd, 0x4a, 0x95, 0x17, 0x61, 0x0d, 0x03, 0xbd, 0x04, 0x63, 0x71, 0xd0, - 0x0e, 0x9a, 0xc1, 0xf6, 0xfe, 0x75, 0x22, 0x43, 0x17, 0x29, 0x63, 0xae, 0x8d, 0x04, 0x84, 0x75, - 0x3c, 0xfb, 0x27, 0x8b, 0xfc, 0x43, 0xfd, 0xd8, 0xfb, 0x60, 0x4d, 0xbe, 0xbf, 0xd7, 0xe4, 0x57, - 0x2d, 0x98, 0xa6, 0xad, 0x33, 0x73, 0x11, 0x79, 0xd9, 0xaa, 0xa0, 0xc1, 0x56, 0x8f, 0xa0, 0xc1, - 0x97, 0xe8, 0xd9, 0xe5, 0x06, 0x9d, 0x58, 0x48, 0xd0, 0xb4, 0xc3, 0x89, 0x96, 0x62, 0x01, 0x15, - 0x78, 0x24, 0x0c, 0x85, 0x8f, 0x9b, 0x8e, 0x47, 0xc2, 0x10, 0x0b, 0xa8, 0x8c, 0x29, 0x3c, 0x94, - 0x1d, 0x53, 0x98, 0x07, 0x62, 0x14, 0x86, 0x05, 0x82, 0xed, 0xd1, 0x02, 0x31, 0x4a, 0x8b, 0x83, - 0x04, 0xc7, 0xfe, 0x72, 0x11, 0xc6, 0x6b, 0x81, 0x9b, 0xe8, 0xca, 0x5e, 0x34, 0x74, 0x65, 0x17, - 0x53, 0xba, 0xb2, 0x69, 0x1d, 0xf7, 0x03, 0xcd, 0xd8, 0xd7, 0x4a, 0x33, 0xf6, 0x2f, 0x2c, 0x36, - 0x6b, 0x95, 0xf5, 0x3a, 0xb7, 0x3e, 0x42, 0xcf, 0xc1, 0x18, 0x3b, 0x90, 0x98, 0x53, 0xa5, 0x54, - 0x20, 0xb1, 0x94, 0x47, 0xeb, 0x49, 0x31, 0xd6, 0x71, 0xd0, 0x65, 0x28, 0x45, 0xc4, 0x09, 0x1b, - 0x3b, 0xea, 0x8c, 0x13, 0xda, 0x1e, 0x5e, 0x86, 0x15, 0x14, 0xbd, 0x91, 0xc4, 0x00, 0x2c, 0xe6, - 0x3b, 0x69, 0xe9, 0xfd, 0xe1, 0x5b, 0x24, 0x3f, 0xf0, 0x9f, 0x7d, 0x07, 0x50, 0x37, 0xfe, 0x00, - 0xc1, 0xaf, 0xe6, 0xcd, 0xe0, 0x57, 0xe5, 0xae, 0xc0, 0x57, 0x7f, 0x66, 0xc1, 0x64, 0x2d, 0x70, - 0xe9, 0xd6, 0xfd, 0x7a, 0xda, 0xa7, 0x7a, 0x00, 0xd4, 0x91, 0x1e, 0x01, 0x50, 0x9f, 0x80, 0xe1, - 0x5a, 0xe0, 0x56, 0x6b, 0xbd, 0x9c, 0x9b, 0xed, 0xbf, 0x6f, 0xc1, 0x68, 0x2d, 0x70, 0x4f, 0x40, - 0x38, 0xff, 0x49, 0x53, 0x38, 0xff, 0x48, 0xce, 0xba, 0xc9, 0x91, 0xc7, 0xff, 0x7c, 0x11, 0x26, - 0x68, 0x3f, 0x83, 0x6d, 0x39, 0x95, 0xc6, 0xb0, 0x59, 0x03, 0x0c, 0x1b, 0xe5, 0x85, 0x83, 0x66, - 0x33, 0xb8, 0x9b, 0x9e, 0xd6, 0x55, 0x56, 0x8a, 0x05, 0x14, 0x3d, 0x03, 0xa5, 0x76, 0x48, 0xf6, - 0xbc, 0x40, 0x30, 0x99, 0x9a, 0xaa, 0xa3, 0x26, 0xca, 0xb1, 0xc2, 0xa0, 0x8f, 0xb3, 0xc8, 0xf3, - 0x1b, 0xa4, 0x4e, 0x1a, 0x81, 0xef, 0x72, 0xf9, 0x75, 0x51, 0x24, 0x26, 0xd1, 0xca, 0xb1, 0x81, - 0x85, 0xee, 0x40, 0x99, 0xfd, 0x67, 0xc7, 0xce, 0xd1, 0xd3, 0x3a, 0x8a, 0x6c, 0x60, 0x82, 0x00, - 0x4e, 0x68, 0xa1, 0xe7, 0x01, 0x62, 0x19, 0x22, 0x3b, 0x12, 0x81, 0x8e, 0x14, 0x43, 0xae, 0x82, - 0x67, 0x47, 0x58, 0xc3, 0x42, 0x4f, 0x43, 0x39, 0x76, 0xbc, 0xe6, 0x0d, 0xcf, 0x27, 0x11, 0x93, - 0x4b, 0x17, 0x65, 0x52, 0x2e, 0x51, 0x88, 0x13, 0x38, 0x65, 0x88, 0x58, 0x14, 0x00, 0x9e, 0x14, - 0xb6, 0xc4, 0xb0, 0x19, 0x43, 0x74, 0x43, 0x95, 0x62, 0x0d, 0xc3, 0x7e, 0x05, 0xce, 0xd4, 0x02, - 0xb7, 0x16, 0x84, 0xf1, 0x6a, 0x10, 0xde, 0x75, 0x42, 0x57, 0xce, 0xdf, 0xbc, 0xcc, 0xe5, 0x41, - 0x0f, 0xa8, 0x61, 0xbe, 0x7d, 0x8d, 0x8c, 0x52, 0x2f, 0x30, 0x96, 0xe8, 0x88, 0x3e, 0x22, 0x0d, - 0x76, 0x39, 0xab, 0xac, 0x0d, 0x57, 0x9d, 0x98, 0xa0, 0x9b, 0x2c, 0x67, 0x6c, 0x72, 0x4f, 0x89, - 0xea, 0x4f, 0x69, 0x39, 0x63, 0x13, 0x60, 0xe6, 0xc5, 0x66, 0xd6, 0xb7, 0x7f, 0x66, 0x88, 0x1d, - 0x59, 0xa9, 0x54, 0x02, 0xe8, 0x73, 0x30, 0x19, 0x91, 0x1b, 0x9e, 0xdf, 0xb9, 0x27, 0x5f, 0xea, - 0x3d, 0xbc, 0x7c, 0xea, 0x2b, 0x3a, 0x26, 0x97, 0xf7, 0x99, 0x65, 0x38, 0x45, 0x0d, 0xb5, 0x60, - 0xf2, 0xae, 0xe7, 0xbb, 0xc1, 0xdd, 0x48, 0xd2, 0x2f, 0xe5, 0x8b, 0xfd, 0xee, 0x70, 0xcc, 0x54, - 0x1f, 0x8d, 0xe6, 0xee, 0x18, 0xc4, 0x70, 0x8a, 0x38, 0x5d, 0x16, 0x61, 0xc7, 0x5f, 0x8c, 0x6e, - 0x45, 0x24, 0x14, 0xd9, 0x7f, 0xd9, 0xb2, 0xc0, 0xb2, 0x10, 0x27, 0x70, 0xba, 0x2c, 0xd8, 0x9f, - 0xab, 0x61, 0xd0, 0xe1, 0xe1, 0xe5, 0xc5, 0xb2, 0xc0, 0xaa, 0x14, 0x6b, 0x18, 0x74, 0xdb, 0xb0, - 0x7f, 0xeb, 0x81, 0x8f, 0x83, 0x20, 0x96, 0x1b, 0x8d, 0xe5, 0x9b, 0xd4, 0xca, 0xb1, 0x81, 0x85, - 0x56, 0x01, 0x45, 0x9d, 0x76, 0xbb, 0xc9, 0xac, 0x07, 0x9c, 0x26, 0x23, 0xc5, 0x35, 0xb7, 0x45, - 0x1e, 0x3c, 0xb3, 0xde, 0x05, 0xc5, 0x19, 0x35, 0xe8, 0x09, 0xba, 0x25, 0xba, 0x3a, 0xcc, 0xba, - 0xca, 0x55, 0x04, 0x75, 0xde, 0x4f, 0x09, 0x43, 0x2b, 0x30, 0x1a, 0xed, 0x47, 0x8d, 0x58, 0x44, - 0x01, 0xcb, 0x49, 0xee, 0x52, 0x67, 0x28, 0x5a, 0x6e, 0x31, 0x5e, 0x05, 0xcb, 0xba, 0xf6, 0xb7, - 0xb1, 0x0b, 0x9a, 0xe5, 0x8a, 0x8d, 0x3b, 0x21, 0x41, 0x2d, 0x98, 0x68, 0xb3, 0x15, 0x26, 0xe2, - 0xa5, 0x8b, 0x65, 0xf2, 0xe2, 0x80, 0x2f, 0xed, 0xbb, 0xf4, 0x5c, 0x53, 0x92, 0x30, 0xf6, 0x84, - 0xa9, 0xe9, 0xe4, 0xb0, 0x49, 0xdd, 0xfe, 0xea, 0x59, 0x76, 0xc4, 0xd7, 0xf9, 0xf3, 0x79, 0x54, - 0x98, 0x3b, 0x8b, 0xb7, 0xc2, 0x5c, 0xbe, 0x1c, 0x27, 0xf9, 0x22, 0x61, 0x32, 0x8d, 0x65, 0x5d, - 0xf4, 0x59, 0x98, 0xa4, 0xac, 0xb7, 0x96, 0x2f, 0xe2, 0x74, 0xbe, 0x5f, 0x7a, 0x92, 0x26, 0x42, - 0xcb, 0xa5, 0xa0, 0x57, 0xc6, 0x29, 0x62, 0xe8, 0x0d, 0xa6, 0x98, 0x37, 0x53, 0x51, 0xf4, 0x21, - 0xad, 0xeb, 0xe0, 0x25, 0x59, 0x8d, 0x48, 0x5e, 0x9a, 0x0b, 0xfb, 0xe1, 0xa6, 0xb9, 0x40, 0x37, - 0x60, 0x42, 0x24, 0x4c, 0x15, 0xe2, 0xc7, 0xa2, 0x21, 0x5e, 0x9a, 0xc0, 0x3a, 0xf0, 0x30, 0x5d, - 0x80, 0xcd, 0xca, 0x68, 0x1b, 0xce, 0x6b, 0xb9, 0x56, 0xae, 0x86, 0x0e, 0xd3, 0x11, 0x7b, 0xec, - 0x24, 0xd2, 0x2e, 0x9f, 0xc7, 0xef, 0x1f, 0xcc, 0x9f, 0xdf, 0xe8, 0x85, 0x88, 0x7b, 0xd3, 0x41, - 0x37, 0xe1, 0x0c, 0xf7, 0xaa, 0xac, 0x10, 0xc7, 0x6d, 0x7a, 0xbe, 0xba, 0xdd, 0xf8, 0x6e, 0x39, - 0x77, 0xff, 0x60, 0xfe, 0xcc, 0x62, 0x16, 0x02, 0xce, 0xae, 0x87, 0x3e, 0x09, 0x65, 0xd7, 0x8f, - 0xc4, 0x18, 0x8c, 0x18, 0xe9, 0x6c, 0xca, 0x95, 0xf5, 0xba, 0xfa, 0xfe, 0xe4, 0x0f, 0x4e, 0x2a, - 0xa0, 0x6d, 0x2e, 0x82, 0x54, 0x2f, 0xfe, 0xd1, 0xae, 0x78, 0x30, 0x69, 0xd9, 0x91, 0xe1, 0x57, - 0xc5, 0x65, 0xef, 0xca, 0xda, 0xd8, 0x70, 0xb9, 0x32, 0x08, 0xa3, 0xd7, 0x01, 0x51, 0x96, 0xd8, - 0x6b, 0x90, 0xc5, 0x06, 0x0b, 0xc6, 0xcf, 0x24, 0xb6, 0x25, 0xc3, 0x3b, 0x05, 0xd5, 0xbb, 0x30, - 0x70, 0x46, 0x2d, 0x74, 0x8d, 0xde, 0x06, 0x7a, 0xa9, 0xb0, 0x9a, 0x56, 0xb9, 0xc2, 0x2a, 0xa4, - 0x1d, 0x92, 0x86, 0x13, 0x13, 0xd7, 0xa4, 0x88, 0x53, 0xf5, 0x90, 0x0b, 0x8f, 0x39, 0x9d, 0x38, - 0x60, 0xd2, 0x5d, 0x13, 0x75, 0x23, 0xd8, 0x25, 0x3e, 0x53, 0xac, 0x94, 0x96, 0x2e, 0xde, 0x3f, - 0x98, 0x7f, 0x6c, 0xb1, 0x07, 0x1e, 0xee, 0x49, 0x85, 0xb2, 0x3d, 0x2a, 0xd3, 0x27, 0x98, 0x61, - 0x6e, 0x32, 0xb2, 0x7d, 0xbe, 0x04, 0x63, 0x3b, 0x41, 0x14, 0xaf, 0x93, 0xf8, 0x6e, 0x10, 0xee, - 0x8a, 0x60, 0x85, 0x49, 0x80, 0xdb, 0x04, 0x84, 0x75, 0x3c, 0xfa, 0xae, 0x61, 0x6a, 0xff, 0x6a, - 0x85, 0x69, 0x5c, 0x4b, 0xc9, 0x19, 0x73, 0x8d, 0x17, 0x63, 0x09, 0x97, 0xa8, 0xd5, 0xda, 0x32, - 0xd3, 0x9e, 0xa6, 0x50, 0xab, 0xb5, 0x65, 0x2c, 0xe1, 0x74, 0xb9, 0x46, 0x3b, 0x4e, 0x48, 0x6a, - 0x61, 0xd0, 0x20, 0x91, 0x16, 0x56, 0xf9, 0x51, 0x1e, 0x8a, 0x91, 0x2e, 0xd7, 0x7a, 0x16, 0x02, - 0xce, 0xae, 0x87, 0x48, 0x77, 0x9e, 0xa1, 0xc9, 0x7c, 0xb1, 0x77, 0x37, 0x2b, 0x30, 0x60, 0xaa, - 0x21, 0x1f, 0xa6, 0x55, 0x86, 0x23, 0x1e, 0x7c, 0x31, 0x9a, 0x9d, 0x62, 0x6b, 0x7b, 0xf0, 0xc8, - 0x8d, 0x4a, 0x91, 0x50, 0x4d, 0x51, 0xc2, 0x5d, 0xb4, 0x8d, 0x48, 0x46, 0xd3, 0x7d, 0x53, 0xbf, - 0x5e, 0x81, 0x72, 0xd4, 0xd9, 0x74, 0x83, 0x96, 0xe3, 0xf9, 0x4c, 0x7b, 0xaa, 0x31, 0xd8, 0x75, - 0x09, 0xc0, 0x09, 0x0e, 0x5a, 0x85, 0x92, 0x23, 0xb5, 0x04, 0x28, 0x3f, 0x00, 0x86, 0xd2, 0x0d, - 0x70, 0x9f, 0x70, 0xa9, 0x17, 0x50, 0x75, 0xd1, 0xab, 0x30, 0x21, 0xbc, 0x02, 0x45, 0x2e, 0xbc, - 0x53, 0xa6, 0xe7, 0x46, 0x5d, 0x07, 0x62, 0x13, 0x17, 0xdd, 0x82, 0xb1, 0x38, 0x68, 0x32, 0xf7, - 0x03, 0xca, 0x21, 0x9d, 0xcd, 0x0f, 0xa2, 0xb5, 0xa1, 0xd0, 0x74, 0x01, 0x9d, 0xaa, 0x8a, 0x75, - 0x3a, 0x68, 0x83, 0xaf, 0x77, 0x16, 0x5e, 0x98, 0x44, 0xb3, 0x8f, 0xe4, 0xdf, 0x49, 0x2a, 0x0a, - 0xb1, 0xb9, 0x1d, 0x44, 0x4d, 0xac, 0x93, 0x41, 0x57, 0x61, 0xa6, 0x1d, 0x7a, 0x01, 0x5b, 0x13, - 0x4a, 0x41, 0x34, 0x6b, 0x26, 0x45, 0xa9, 0xa5, 0x11, 0x70, 0x77, 0x1d, 0xe6, 0xd4, 0x29, 0x0a, - 0x67, 0xcf, 0xf1, 0xdc, 0xb7, 0xfc, 0xbd, 0xc2, 0xcb, 0xb0, 0x82, 0xa2, 0x35, 0x76, 0x12, 0xf3, - 0xa7, 0xf6, 0xec, 0x5c, 0x7e, 0xcc, 0x0d, 0xfd, 0x49, 0xce, 0xf9, 0x3e, 0xf5, 0x17, 0x27, 0x14, - 0x90, 0xab, 0xe5, 0x55, 0xa3, 0xcc, 0x76, 0x34, 0xfb, 0x58, 0x0f, 0xdb, 0xab, 0x14, 0x67, 0x9e, - 0x30, 0x04, 0x46, 0x71, 0x84, 0x53, 0x34, 0xd1, 0x37, 0xc1, 0xb4, 0x88, 0xf1, 0x95, 0x0c, 0xd3, - 0xf9, 0xc4, 0xa8, 0x13, 0xa7, 0x60, 0xb8, 0x0b, 0x9b, 0x87, 0x5d, 0x77, 0x36, 0x9b, 0x44, 0x1c, - 0x7d, 0x37, 0x3c, 0x7f, 0x37, 0x9a, 0xbd, 0xc0, 0xce, 0x07, 0x11, 0x76, 0x3d, 0x0d, 0xc5, 0x19, - 0x35, 0xd0, 0x06, 0x4c, 0xb7, 0x43, 0x42, 0x5a, 0x8c, 0x47, 0x16, 0xf7, 0xd9, 0x3c, 0xf7, 0x69, - 0xa6, 0x3d, 0xa9, 0xa5, 0x60, 0x87, 0x19, 0x65, 0xb8, 0x8b, 0x02, 0xba, 0x0b, 0xa5, 0x60, 0x8f, - 0x84, 0x3b, 0xc4, 0x71, 0x67, 0x2f, 0xf6, 0x30, 0x32, 0x16, 0x97, 0xdb, 0x4d, 0x81, 0x9b, 0x52, - 0x2a, 0xcb, 0xe2, 0xfe, 0x4a, 0x65, 0xd9, 0x18, 0xfa, 0x01, 0x0b, 0xce, 0x49, 0x39, 0x74, 0xbd, - 0x4d, 0x47, 0x7d, 0x39, 0xf0, 0xa3, 0x38, 0xe4, 0x5e, 0xb8, 0x8f, 0xe7, 0x3b, 0xa6, 0x6e, 0xe4, - 0x54, 0x52, 0xd2, 0xbe, 0x73, 0x79, 0x18, 0x11, 0xce, 0x6f, 0x71, 0xee, 0x1b, 0x61, 0xa6, 0xeb, - 0xe6, 0x3e, 0x4a, 0x26, 0x88, 0xb9, 0x5d, 0x98, 0x30, 0x46, 0xe7, 0xa1, 0xea, 0x13, 0xff, 0xed, - 0x28, 0x94, 0x95, 0xae, 0x09, 0x5d, 0x31, 0x55, 0x88, 0xe7, 0xd2, 0x2a, 0xc4, 0x12, 0x7d, 0xcd, - 0xea, 0x5a, 0xc3, 0x8d, 0x8c, 0x98, 0x47, 0x79, 0x7b, 0x71, 0x70, 0x5f, 0x56, 0x4d, 0x74, 0x58, - 0x1c, 0x58, 0x17, 0x39, 0xd4, 0x53, 0x1a, 0x79, 0x15, 0x66, 0xfc, 0x80, 0xb1, 0x8b, 0xc4, 0x95, - 0xbc, 0x00, 0xbb, 0xf2, 0xcb, 0x7a, 0x10, 0x81, 0x14, 0x02, 0xee, 0xae, 0x43, 0x1b, 0xe4, 0x77, - 0x76, 0x5a, 0xfc, 0xc9, 0xaf, 0x74, 0x2c, 0xa0, 0xe8, 0x09, 0x18, 0x6e, 0x07, 0x6e, 0xb5, 0x26, - 0x58, 0x45, 0x2d, 0x89, 0xa7, 0x5b, 0xad, 0x61, 0x0e, 0x43, 0x8b, 0x30, 0xc2, 0x7e, 0x44, 0xb3, - 0xe3, 0xf9, 0xde, 0xe2, 0xac, 0x86, 0x96, 0x67, 0x83, 0x55, 0xc0, 0xa2, 0x22, 0x13, 0xc3, 0x50, - 0xfe, 0x9a, 0x89, 0x61, 0x46, 0x1f, 0x50, 0x0c, 0x23, 0x09, 0xe0, 0x84, 0x16, 0xba, 0x07, 0x67, - 0x8c, 0x37, 0x0d, 0x5f, 0x22, 0x24, 0x12, 0x0e, 0xab, 0x4f, 0xf4, 0x7c, 0xcc, 0x08, 0xdd, 0xe5, - 0x79, 0xd1, 0xe9, 0x33, 0xd5, 0x2c, 0x4a, 0x38, 0xbb, 0x01, 0xd4, 0x84, 0x99, 0x46, 0x57, 0xab, - 0xa5, 0xc1, 0x5b, 0x55, 0x13, 0xda, 0xdd, 0x62, 0x37, 0x61, 0xf4, 0x2a, 0x94, 0xde, 0x09, 0x22, - 0x76, 0xcc, 0x0a, 0xf6, 0x56, 0x7a, 0x3b, 0x96, 0xde, 0xb8, 0x59, 0x67, 0xe5, 0x87, 0x07, 0xf3, - 0x63, 0xb5, 0xc0, 0x95, 0x7f, 0xb1, 0xaa, 0x80, 0xbe, 0xc7, 0x82, 0xb9, 0xee, 0x47, 0x93, 0xea, - 0xf4, 0xc4, 0xe0, 0x9d, 0xb6, 0x45, 0xa3, 0x73, 0x2b, 0xb9, 0xe4, 0x70, 0x8f, 0xa6, 0xec, 0x5f, - 0xe2, 0x7a, 0x46, 0xa1, 0x8d, 0x20, 0x51, 0xa7, 0x79, 0x12, 0x79, 0x09, 0x57, 0x0c, 0x45, 0xc9, - 0x03, 0xeb, 0xb2, 0x7f, 0xd5, 0x62, 0xba, 0xec, 0x0d, 0xd2, 0x6a, 0x37, 0x9d, 0xf8, 0x24, 0x9c, - 0xe5, 0xde, 0x80, 0x52, 0x2c, 0x5a, 0xeb, 0x95, 0x4a, 0x51, 0xeb, 0x14, 0xd3, 0xe7, 0x2b, 0x66, - 0x53, 0x96, 0x62, 0x45, 0xc6, 0xfe, 0xa7, 0x7c, 0x06, 0x24, 0xe4, 0x04, 0xe4, 0xd1, 0x15, 0x53, - 0x1e, 0x3d, 0xdf, 0xe7, 0x0b, 0x72, 0xe4, 0xd2, 0xff, 0xc4, 0xec, 0x37, 0x13, 0xb2, 0xbc, 0xdf, - 0x8d, 0x28, 0xec, 0x1f, 0xb2, 0xe0, 0x74, 0x96, 0xd5, 0x21, 0x7d, 0x20, 0x70, 0x11, 0x8f, 0x32, - 0x2a, 0x51, 0x23, 0x78, 0x5b, 0x94, 0x63, 0x85, 0x31, 0x70, 0x96, 0xa2, 0xa3, 0x45, 0xed, 0xbc, - 0x09, 0x13, 0xb5, 0x90, 0x68, 0x17, 0xda, 0x6b, 0xdc, 0xfb, 0x95, 0xf7, 0xe7, 0x99, 0x23, 0x7b, - 0xbe, 0xda, 0x3f, 0x5d, 0x80, 0xd3, 0x5c, 0x2b, 0xbc, 0xb8, 0x17, 0x78, 0x6e, 0x2d, 0x70, 0x45, - 0x86, 0xa9, 0x37, 0x61, 0xbc, 0xad, 0xc9, 0xe5, 0x7a, 0x45, 0xa0, 0xd3, 0xe5, 0x77, 0x89, 0x24, - 0x41, 0x2f, 0xc5, 0x06, 0x2d, 0xe4, 0xc2, 0x38, 0xd9, 0xf3, 0x1a, 0x4a, 0xb5, 0x58, 0x38, 0xf2, - 0xe5, 0xa2, 0x5a, 0x59, 0xd1, 0xe8, 0x60, 0x83, 0xea, 0x43, 0x48, 0x3a, 0x6a, 0xff, 0xb0, 0x05, - 0x8f, 0xe4, 0xc4, 0xab, 0xa3, 0xcd, 0xdd, 0x65, 0xfa, 0x77, 0x91, 0xbf, 0x50, 0x35, 0xc7, 0xb5, - 0xf2, 0x58, 0x40, 0xd1, 0xa7, 0x01, 0xb8, 0x56, 0x9d, 0xbe, 0x50, 0xfb, 0x05, 0xf6, 0x32, 0x62, - 0x12, 0x69, 0xe1, 0x65, 0x64, 0x7d, 0xac, 0xd1, 0xb2, 0x7f, 0xa2, 0x08, 0xc3, 0x3c, 0xf3, 0xf2, - 0x2a, 0x8c, 0xee, 0xf0, 0xb8, 0xfb, 0x83, 0x84, 0xf8, 0x4f, 0x64, 0x07, 0xbc, 0x00, 0xcb, 0xca, - 0x68, 0x0d, 0x4e, 0xf1, 0xbc, 0x05, 0xcd, 0x0a, 0x69, 0x3a, 0xfb, 0x52, 0xd0, 0xc5, 0x73, 0xfe, - 0x29, 0x81, 0x5f, 0xb5, 0x1b, 0x05, 0x67, 0xd5, 0x43, 0xaf, 0xc1, 0x24, 0x7d, 0x78, 0x04, 0x9d, - 0x58, 0x52, 0xe2, 0x19, 0x0b, 0xd4, 0x4b, 0x67, 0xc3, 0x80, 0xe2, 0x14, 0x36, 0x7d, 0xfb, 0xb6, - 0xbb, 0x44, 0x7a, 0xc3, 0xc9, 0xdb, 0xd7, 0x14, 0xe3, 0x99, 0xb8, 0xcc, 0xdc, 0xb0, 0xc3, 0x8c, - 0x2b, 0x37, 0x76, 0x42, 0x12, 0xed, 0x04, 0x4d, 0x97, 0x31, 0x5a, 0xc3, 0x9a, 0xb9, 0x61, 0x0a, - 0x8e, 0xbb, 0x6a, 0x50, 0x2a, 0x5b, 0x8e, 0xd7, 0xec, 0x84, 0x24, 0xa1, 0x32, 0x62, 0x52, 0x59, - 0x4d, 0xc1, 0x71, 0x57, 0x0d, 0xba, 0x8e, 0xce, 0xd4, 0xc2, 0x80, 0x1e, 0x5e, 0x32, 0x06, 0x87, - 0xb2, 0x21, 0x1d, 0x95, 0xee, 0x82, 0x3d, 0xc2, 0x55, 0x09, 0x2b, 0x3b, 0x4e, 0xc1, 0x50, 0x20, - 0xd7, 0x85, 0xa3, 0xa0, 0xa4, 0x82, 0x9e, 0x83, 0x31, 0x11, 0x8d, 0x9e, 0x99, 0x3a, 0xf2, 0xa9, - 0x63, 0x0a, 0xef, 0x4a, 0x52, 0x8c, 0x75, 0x1c, 0xfb, 0x7b, 0x0b, 0x70, 0x2a, 0xc3, 0x56, 0x9d, - 0x1f, 0x55, 0xdb, 0x5e, 0x14, 0xab, 0xbc, 0x66, 0xda, 0x51, 0xc5, 0xcb, 0xb1, 0xc2, 0xa0, 0xfb, - 0x81, 0x1f, 0x86, 0xe9, 0x03, 0x50, 0xd8, 0x82, 0x0a, 0xe8, 0x11, 0x33, 0x84, 0x5d, 0x84, 0xa1, - 0x4e, 0x44, 0x64, 0xa0, 0x39, 0x75, 0x7e, 0x33, 0x8d, 0x0b, 0x83, 0x50, 0xf6, 0x78, 0x5b, 0x29, - 0x2f, 0x34, 0xf6, 0x98, 0xab, 0x2f, 0x38, 0x8c, 0x76, 0x2e, 0x26, 0xbe, 0xe3, 0xc7, 0x82, 0x89, - 0x4e, 0x22, 0x26, 0xb1, 0x52, 0x2c, 0xa0, 0xf6, 0x97, 0x8a, 0x70, 0x2e, 0xd7, 0x7b, 0x85, 0x76, - 0xbd, 0x15, 0xf8, 0x5e, 0x1c, 0x28, 0x4b, 0x02, 0x1e, 0x25, 0x89, 0xb4, 0x77, 0xd6, 0x44, 0x39, - 0x56, 0x18, 0xe8, 0x12, 0x0c, 0x33, 0xa1, 0x53, 0x57, 0x86, 0xb7, 0xa5, 0x0a, 0x8f, 0x9a, 0xc1, - 0xc1, 0x03, 0x67, 0xcf, 0x7c, 0x02, 0x86, 0xda, 0x41, 0xd0, 0x4c, 0x1f, 0x5a, 0xb4, 0xbb, 0x41, - 0xd0, 0xc4, 0x0c, 0x88, 0x3e, 0x22, 0xc6, 0x2b, 0xa5, 0x3a, 0xc7, 0x8e, 0x1b, 0x44, 0xda, 0xa0, - 0x3d, 0x05, 0xa3, 0xbb, 0x64, 0x3f, 0xf4, 0xfc, 0xed, 0xb4, 0x49, 0xc5, 0x75, 0x5e, 0x8c, 0x25, - 0xdc, 0x4c, 0xd6, 0x33, 0x7a, 0xdc, 0x69, 0x2f, 0x4b, 0x7d, 0xaf, 0xc0, 0xef, 0x2b, 0xc2, 0x14, - 0x5e, 0xaa, 0x7c, 0x30, 0x11, 0xb7, 0xba, 0x27, 0xe2, 0xb8, 0xd3, 0x5e, 0xf6, 0x9f, 0x8d, 0x9f, - 0xb7, 0x60, 0x8a, 0xc5, 0xc4, 0x17, 0xe1, 0x75, 0xbc, 0xc0, 0x3f, 0x01, 0x16, 0xef, 0x09, 0x18, - 0x0e, 0x69, 0xa3, 0xe9, 0xd4, 0x6e, 0xac, 0x27, 0x98, 0xc3, 0xd0, 0x63, 0x30, 0xc4, 0xba, 0x40, - 0x27, 0x6f, 0x9c, 0x67, 0xc5, 0xa9, 0x38, 0xb1, 0x83, 0x59, 0x29, 0x8b, 0x19, 0x81, 0x49, 0xbb, - 0xe9, 0xf1, 0x4e, 0x27, 0x2a, 0xc1, 0xf7, 0x47, 0xcc, 0x88, 0xcc, 0xae, 0xbd, 0xb7, 0x98, 0x11, - 0xd9, 0x24, 0x7b, 0x3f, 0x9f, 0xfe, 0xb0, 0x00, 0x17, 0x32, 0xeb, 0x0d, 0x1c, 0x33, 0xa2, 0x77, - 0xed, 0x87, 0x19, 0x3b, 0xbd, 0x78, 0x82, 0x06, 0x6b, 0x43, 0x83, 0x72, 0x98, 0xc3, 0x03, 0x84, - 0x72, 0xc8, 0x1c, 0xb2, 0xf7, 0x49, 0x28, 0x87, 0xcc, 0xbe, 0xe5, 0x3c, 0xff, 0xfe, 0xbc, 0x90, - 0xf3, 0x2d, 0xec, 0x21, 0x78, 0x99, 0x9e, 0x33, 0x0c, 0x18, 0x09, 0x8e, 0x79, 0x9c, 0x9f, 0x31, - 0xbc, 0x0c, 0x2b, 0x28, 0x5a, 0x84, 0xa9, 0x96, 0xe7, 0xd3, 0xc3, 0x67, 0xdf, 0x64, 0xfc, 0x54, - 0xa4, 0x9d, 0x35, 0x13, 0x8c, 0xd3, 0xf8, 0xc8, 0xd3, 0xc2, 0x3c, 0x14, 0xf2, 0x93, 0x25, 0xe7, - 0xf6, 0x76, 0xc1, 0x54, 0x97, 0xaa, 0x51, 0xcc, 0x08, 0xf9, 0xb0, 0xa6, 0xbd, 0xff, 0x8b, 0x83, - 0xbf, 0xff, 0xc7, 0xb3, 0xdf, 0xfe, 0x73, 0xaf, 0xc2, 0xc4, 0x03, 0x0b, 0x7c, 0xed, 0xaf, 0x16, - 0xe1, 0xd1, 0x1e, 0xdb, 0x9e, 0x9f, 0xf5, 0xc6, 0x1c, 0x68, 0x67, 0x7d, 0xd7, 0x3c, 0xd4, 0xe0, - 0xf4, 0x56, 0xa7, 0xd9, 0xdc, 0x67, 0x36, 0xe1, 0xc4, 0x95, 0x18, 0x82, 0xa7, 0x7c, 0x4c, 0xe6, - 0x21, 0x5a, 0xcd, 0xc0, 0xc1, 0x99, 0x35, 0x29, 0x43, 0x4f, 0x6f, 0x92, 0x7d, 0x45, 0x2a, 0xc5, - 0xd0, 0x63, 0x1d, 0x88, 0x4d, 0x5c, 0x74, 0x15, 0x66, 0x9c, 0x3d, 0xc7, 0xe3, 0xc1, 0x32, 0x25, - 0x01, 0xce, 0xd1, 0x2b, 0x39, 0xdd, 0x62, 0x1a, 0x01, 0x77, 0xd7, 0x41, 0xaf, 0x03, 0x0a, 0x44, - 0xb2, 0xf7, 0xab, 0xc4, 0x17, 0x5a, 0x2d, 0x36, 0x77, 0xc5, 0xe4, 0x48, 0xb8, 0xd9, 0x85, 0x81, - 0x33, 0x6a, 0xa5, 0xc2, 0x26, 0x8c, 0xe4, 0x87, 0x4d, 0xe8, 0x7d, 0x2e, 0xf6, 0x0d, 0xdb, 0xff, - 0xdf, 0x2c, 0x7a, 0x7d, 0x71, 0x26, 0xdf, 0x8c, 0xfe, 0xf5, 0x2a, 0x33, 0xe8, 0xe2, 0x32, 0x3c, - 0x2d, 0x82, 0xc1, 0x19, 0xcd, 0xa0, 0x2b, 0x01, 0x62, 0x13, 0x97, 0x2f, 0x88, 0x28, 0x71, 0x9c, - 0x33, 0x58, 0x7c, 0x11, 0xa2, 0x44, 0x61, 0xa0, 0xcf, 0xc0, 0xa8, 0xeb, 0xed, 0x79, 0x51, 0x10, - 0x8a, 0x95, 0x7e, 0x44, 0x75, 0x41, 0x72, 0x0e, 0x56, 0x38, 0x19, 0x2c, 0xe9, 0xd9, 0xdf, 0x57, - 0x80, 0x09, 0xd9, 0xe2, 0x1b, 0x9d, 0x20, 0x76, 0x4e, 0xe0, 0x5a, 0xbe, 0x6a, 0x5c, 0xcb, 0x1f, - 0xe9, 0x15, 0xa7, 0x85, 0x75, 0x29, 0xf7, 0x3a, 0xbe, 0x99, 0xba, 0x8e, 0x9f, 0xec, 0x4f, 0xaa, - 0xf7, 0x35, 0xfc, 0xcf, 0x2c, 0x98, 0x31, 0xf0, 0x4f, 0xe0, 0x36, 0x58, 0x35, 0x6f, 0x83, 0xc7, - 0xfb, 0x7e, 0x43, 0xce, 0x2d, 0xf0, 0x5d, 0xc5, 0x54, 0xdf, 0xd9, 0xe9, 0xff, 0x0e, 0x0c, 0xed, - 0x38, 0xa1, 0xdb, 0x2b, 0x30, 0x75, 0x57, 0xa5, 0x85, 0x6b, 0x4e, 0x28, 0xd4, 0x7a, 0xcf, 0xa8, - 0x5c, 0xc5, 0x4e, 0xd8, 0x5f, 0xa5, 0xc7, 0x9a, 0x42, 0xaf, 0xc0, 0x48, 0xd4, 0x08, 0xda, 0xca, - 0x8a, 0xfb, 0x22, 0xcf, 0x63, 0x4c, 0x4b, 0x0e, 0x0f, 0xe6, 0x91, 0xd9, 0x1c, 0x2d, 0xc6, 0x02, - 0x1f, 0xbd, 0x09, 0x13, 0xec, 0x97, 0xb2, 0xb1, 0x29, 0xe6, 0x27, 0xb1, 0xa9, 0xeb, 0x88, 0xdc, - 0x00, 0xcd, 0x28, 0xc2, 0x26, 0xa9, 0xb9, 0x6d, 0x28, 0xab, 0xcf, 0x7a, 0xa8, 0xfa, 0xb8, 0xff, - 0x58, 0x84, 0x53, 0x19, 0x6b, 0x0e, 0x45, 0xc6, 0x4c, 0x3c, 0x37, 0xe0, 0x52, 0x7d, 0x8f, 0x73, - 0x11, 0xb1, 0xd7, 0x90, 0x2b, 0xd6, 0xd6, 0xc0, 0x8d, 0xde, 0x8a, 0x48, 0xba, 0x51, 0x5a, 0xd4, - 0xbf, 0x51, 0xda, 0xd8, 0x89, 0x0d, 0x35, 0x6d, 0x48, 0xf5, 0xf4, 0xa1, 0xce, 0xe9, 0x9f, 0x14, - 0xe1, 0x74, 0x56, 0xe8, 0x28, 0xf4, 0xad, 0xa9, 0x84, 0x66, 0x2f, 0x0e, 0x1a, 0x74, 0x8a, 0x67, - 0x39, 0xe3, 0x32, 0xe0, 0xa5, 0x05, 0x33, 0xc5, 0x59, 0xdf, 0x61, 0x16, 0x6d, 0x32, 0xa7, 0xf0, - 0x90, 0x27, 0xa2, 0x93, 0xc7, 0xc7, 0xc7, 0x07, 0xee, 0x80, 0xc8, 0x60, 0x17, 0xa5, 0xf4, 0xf7, - 0xb2, 0xb8, 0xbf, 0xfe, 0x5e, 0xb6, 0x3c, 0xe7, 0xc1, 0x98, 0xf6, 0x35, 0x0f, 0x75, 0xc6, 0x77, - 0xe9, 0x6d, 0xa5, 0xf5, 0xfb, 0xa1, 0xce, 0xfa, 0x0f, 0x5b, 0x90, 0xb2, 0x86, 0x56, 0x62, 0x31, - 0x2b, 0x57, 0x2c, 0x76, 0x11, 0x86, 0xc2, 0xa0, 0x49, 0xd2, 0xf9, 0xc3, 0x70, 0xd0, 0x24, 0x98, - 0x41, 0x28, 0x46, 0x9c, 0x08, 0x3b, 0xc6, 0xf5, 0x87, 0x9c, 0x78, 0xa2, 0x3d, 0x01, 0xc3, 0x4d, - 0xb2, 0x47, 0x9a, 0xe9, 0x34, 0x0f, 0x37, 0x68, 0x21, 0xe6, 0x30, 0xfb, 0xe7, 0x87, 0xe0, 0x7c, - 0xcf, 0xb0, 0x0a, 0xf4, 0x39, 0xb4, 0xed, 0xc4, 0xe4, 0xae, 0xb3, 0x9f, 0x8e, 0xc7, 0x7e, 0x95, - 0x17, 0x63, 0x09, 0x67, 0x5e, 0x24, 0x3c, 0xaa, 0x6a, 0x4a, 0x88, 0x28, 0x82, 0xa9, 0x0a, 0xa8, - 0x29, 0x94, 0x2a, 0x1e, 0x87, 0x50, 0xea, 0x79, 0x80, 0x28, 0x6a, 0x72, 0xc3, 0x17, 0x57, 0xb8, - 0xa7, 0x24, 0xd1, 0x77, 0xeb, 0x37, 0x04, 0x04, 0x6b, 0x58, 0xa8, 0x02, 0xd3, 0xed, 0x30, 0x88, - 0xb9, 0x4c, 0xb6, 0xc2, 0x6d, 0xc3, 0x86, 0x4d, 0x8f, 0xf6, 0x5a, 0x0a, 0x8e, 0xbb, 0x6a, 0xa0, - 0x97, 0x60, 0x4c, 0x78, 0xb9, 0xd7, 0x82, 0xa0, 0x29, 0xc4, 0x40, 0xca, 0x5c, 0xaa, 0x9e, 0x80, - 0xb0, 0x8e, 0xa7, 0x55, 0x63, 0x82, 0xde, 0xd1, 0xcc, 0x6a, 0x5c, 0xd8, 0xab, 0xe1, 0xa5, 0xc2, - 0xc8, 0x95, 0x06, 0x0a, 0x23, 0x97, 0x08, 0xc6, 0xca, 0x03, 0xeb, 0xb6, 0xa0, 0xaf, 0x28, 0xe9, - 0x67, 0x87, 0xe0, 0x94, 0x58, 0x38, 0x0f, 0x7b, 0xb9, 0xdc, 0xea, 0x5e, 0x2e, 0xc7, 0x21, 0x3a, - 0xfb, 0x60, 0xcd, 0x9c, 0xf4, 0x9a, 0xf9, 0x7e, 0x0b, 0x4c, 0xf6, 0x0a, 0xfd, 0xa5, 0xdc, 0x84, - 0x16, 0x2f, 0xe5, 0xb2, 0x6b, 0xae, 0xbc, 0x40, 0xde, 0x63, 0x6a, 0x0b, 0xfb, 0xbf, 0x58, 0xf0, - 0x78, 0x5f, 0x8a, 0x68, 0x05, 0xca, 0x8c, 0x07, 0xd4, 0x5e, 0x67, 0x4f, 0x2a, 0xdb, 0x51, 0x09, - 0xc8, 0x61, 0x49, 0x93, 0x9a, 0x68, 0xa5, 0x2b, 0x73, 0xc8, 0x53, 0x19, 0x99, 0x43, 0xce, 0x18, - 0xc3, 0xf3, 0x80, 0xa9, 0x43, 0x7e, 0xa9, 0x08, 0x23, 0x7c, 0xc5, 0x9f, 0xc0, 0x33, 0x6c, 0x55, - 0xc8, 0x6d, 0x7b, 0xc4, 0xa9, 0xe3, 0x7d, 0x59, 0xa8, 0x38, 0xb1, 0xc3, 0xd9, 0x04, 0x75, 0x5b, - 0x25, 0x12, 0x5e, 0xf4, 0x39, 0x80, 0x28, 0x0e, 0x3d, 0x7f, 0x9b, 0x96, 0x89, 0x08, 0x86, 0x1f, - 0xed, 0x41, 0xad, 0xae, 0x90, 0x39, 0xcd, 0x64, 0xe7, 0x2a, 0x00, 0xd6, 0x28, 0xa2, 0x05, 0xe3, - 0xbe, 0x9c, 0x4b, 0x09, 0x3e, 0x81, 0x53, 0x4d, 0x6e, 0xcf, 0xb9, 0x97, 0xa1, 0xac, 0x88, 0xf7, - 0x93, 0xe2, 0x8c, 0xeb, 0xcc, 0xc5, 0xa7, 0x60, 0x2a, 0xd5, 0xb7, 0x23, 0x09, 0x81, 0x7e, 0xc1, - 0x82, 0x29, 0xde, 0x99, 0x15, 0x7f, 0x4f, 0x9c, 0xa9, 0xef, 0xc2, 0xe9, 0x66, 0xc6, 0xd9, 0x26, - 0x66, 0x74, 0xf0, 0xb3, 0x50, 0x09, 0x7d, 0xb2, 0xa0, 0x38, 0xb3, 0x0d, 0x74, 0x99, 0xae, 0x5b, - 0x7a, 0x76, 0x39, 0x4d, 0xe1, 0x6c, 0x38, 0xce, 0xd7, 0x2c, 0x2f, 0xc3, 0x0a, 0x6a, 0xff, 0x96, - 0x05, 0x33, 0xbc, 0xe7, 0xd7, 0xc9, 0xbe, 0xda, 0xe1, 0x5f, 0xcb, 0xbe, 0x8b, 0x64, 0x3e, 0x85, - 0x9c, 0x64, 0x3e, 0xfa, 0xa7, 0x15, 0x7b, 0x7e, 0xda, 0x4f, 0x5b, 0x20, 0x56, 0xc8, 0x09, 0x3c, - 0xe5, 0xbf, 0xd1, 0x7c, 0xca, 0xcf, 0xe5, 0x6f, 0x82, 0x9c, 0x37, 0xfc, 0x9f, 0x59, 0x30, 0xcd, - 0x11, 0x12, 0x9d, 0xf3, 0xd7, 0x74, 0x1e, 0x06, 0x49, 0xf9, 0x79, 0x9d, 0xec, 0x6f, 0x04, 0x35, - 0x27, 0xde, 0xc9, 0xfe, 0x28, 0x63, 0xb2, 0x86, 0x7a, 0x4e, 0x96, 0x2b, 0x37, 0xd0, 0x11, 0xf2, - 0x08, 0x1f, 0x39, 0xd4, 0xbd, 0xfd, 0x07, 0x16, 0x20, 0xde, 0x8c, 0xc1, 0xfe, 0x50, 0xa6, 0x82, - 0x95, 0x6a, 0xd7, 0x45, 0x72, 0x34, 0x29, 0x08, 0xd6, 0xb0, 0x8e, 0x65, 0x78, 0x52, 0x86, 0x03, - 0xc5, 0xfe, 0x86, 0x03, 0x47, 0x18, 0xd1, 0xdf, 0x1f, 0x86, 0xb4, 0x07, 0x08, 0xba, 0x0d, 0xe3, - 0x0d, 0xa7, 0xed, 0x6c, 0x7a, 0x4d, 0x2f, 0xf6, 0x48, 0xd4, 0xcb, 0xe2, 0x68, 0x59, 0xc3, 0x13, - 0xaa, 0x5e, 0xad, 0x04, 0x1b, 0x74, 0xd0, 0x02, 0x40, 0x3b, 0xf4, 0xf6, 0xbc, 0x26, 0xd9, 0x66, - 0x12, 0x07, 0xe6, 0xde, 0xcc, 0xcd, 0x68, 0x64, 0x29, 0xd6, 0x30, 0x32, 0x3c, 0x55, 0x8b, 0x0f, - 0xd9, 0x53, 0x15, 0x4e, 0xcc, 0x53, 0x75, 0xe8, 0x48, 0x9e, 0xaa, 0xa5, 0x23, 0x7b, 0xaa, 0x0e, - 0x0f, 0xe4, 0xa9, 0x8a, 0xe1, 0xac, 0xe4, 0xe0, 0xe8, 0xff, 0x55, 0xaf, 0x49, 0x04, 0xdb, 0xce, - 0x7d, 0xb2, 0xe7, 0xee, 0x1f, 0xcc, 0x9f, 0xc5, 0x99, 0x18, 0x38, 0xa7, 0x26, 0xfa, 0x34, 0xcc, - 0x3a, 0xcd, 0x66, 0x70, 0x57, 0x4d, 0xea, 0x4a, 0xd4, 0x70, 0x9a, 0x5c, 0x94, 0x3f, 0xca, 0xa8, - 0x3e, 0x76, 0xff, 0x60, 0x7e, 0x76, 0x31, 0x07, 0x07, 0xe7, 0xd6, 0x46, 0x9f, 0x84, 0x72, 0x3b, - 0x0c, 0x1a, 0x6b, 0x9a, 0x9b, 0xda, 0x05, 0x3a, 0x80, 0x35, 0x59, 0x78, 0x78, 0x30, 0x3f, 0xa1, - 0xfe, 0xb0, 0x0b, 0x3f, 0xa9, 0x60, 0xef, 0xc2, 0xa9, 0x3a, 0x09, 0x3d, 0x96, 0x15, 0xd8, 0x4d, - 0xce, 0x8f, 0x0d, 0x28, 0x87, 0xa9, 0x13, 0x73, 0xa0, 0xd8, 0x6e, 0x5a, 0x4c, 0x70, 0x79, 0x42, - 0x26, 0x84, 0xec, 0xff, 0x63, 0xc1, 0xa8, 0xf0, 0xc8, 0x38, 0x01, 0x46, 0x6d, 0xd1, 0x90, 0x97, - 0xcf, 0x67, 0xdf, 0x2a, 0xac, 0x33, 0xb9, 0x92, 0xf2, 0x6a, 0x4a, 0x52, 0xfe, 0x78, 0x2f, 0x22, - 0xbd, 0x65, 0xe4, 0x7f, 0xbb, 0x08, 0x93, 0xa6, 0xeb, 0xde, 0x09, 0x0c, 0xc1, 0x3a, 0x8c, 0x46, - 0xc2, 0x37, 0xad, 0x90, 0x6f, 0x91, 0x9d, 0x9e, 0xc4, 0xc4, 0x5a, 0x4b, 0x78, 0xa3, 0x49, 0x22, - 0x99, 0x4e, 0x6f, 0xc5, 0x87, 0xe8, 0xf4, 0xd6, 0xcf, 0x7b, 0x72, 0xe8, 0x38, 0xbc, 0x27, 0xed, - 0xaf, 0xb0, 0x9b, 0x4d, 0x2f, 0x3f, 0x01, 0xa6, 0xe7, 0xaa, 0x79, 0x07, 0xda, 0x3d, 0x56, 0x96, - 0xe8, 0x54, 0x0e, 0xf3, 0xf3, 0x73, 0x16, 0x9c, 0xcf, 0xf8, 0x2a, 0x8d, 0x13, 0x7a, 0x06, 0x4a, - 0x4e, 0xc7, 0xf5, 0xd4, 0x5e, 0xd6, 0xb4, 0x66, 0x8b, 0xa2, 0x1c, 0x2b, 0x0c, 0xb4, 0x0c, 0x33, - 0xe4, 0x5e, 0xdb, 0xe3, 0x0a, 0x43, 0xdd, 0xa4, 0xb2, 0xc8, 0xe3, 0x5d, 0xaf, 0xa4, 0x81, 0xb8, - 0x1b, 0x5f, 0x05, 0x7b, 0x28, 0xe6, 0x06, 0x7b, 0xf8, 0x87, 0x16, 0x8c, 0x29, 0xef, 0xac, 0x87, - 0x3e, 0xda, 0xdf, 0x64, 0x8e, 0xf6, 0xa3, 0x3d, 0x46, 0x3b, 0x67, 0x98, 0xff, 0x6e, 0x41, 0xf5, - 0xb7, 0x16, 0x84, 0xf1, 0x00, 0x1c, 0xd6, 0x2b, 0x50, 0x6a, 0x87, 0x41, 0x1c, 0x34, 0x82, 0xa6, - 0x60, 0xb0, 0x1e, 0x4b, 0x62, 0x91, 0xf0, 0xf2, 0x43, 0xed, 0x37, 0x56, 0xd8, 0x6c, 0xf4, 0x82, - 0x30, 0x16, 0x4c, 0x4d, 0x32, 0x7a, 0x41, 0x18, 0x63, 0x06, 0x41, 0x2e, 0x40, 0xec, 0x84, 0xdb, - 0x24, 0xa6, 0x65, 0x22, 0xf6, 0x51, 0xfe, 0xe1, 0xd1, 0x89, 0xbd, 0xe6, 0x82, 0xe7, 0xc7, 0x51, - 0x1c, 0x2e, 0x54, 0xfd, 0xf8, 0x66, 0xc8, 0xdf, 0x6b, 0x5a, 0x70, 0x11, 0x45, 0x0b, 0x6b, 0x74, - 0xa5, 0x5b, 0x31, 0x6b, 0x63, 0xd8, 0xd4, 0xbf, 0xaf, 0x8b, 0x72, 0xac, 0x30, 0xec, 0x97, 0xd9, - 0x55, 0xc2, 0x06, 0xe8, 0x68, 0x71, 0x3f, 0xbe, 0xb3, 0xac, 0x86, 0x96, 0x29, 0xdf, 0x2a, 0x7a, - 0x74, 0x91, 0xde, 0x27, 0x37, 0x6d, 0x58, 0x77, 0x31, 0x4a, 0x42, 0x90, 0xa0, 0x6f, 0xee, 0xb2, - 0xa9, 0x78, 0xb6, 0xcf, 0x15, 0x70, 0x04, 0x2b, 0x0a, 0x16, 0x83, 0x9f, 0x45, 0x28, 0xaf, 0xd6, - 0xc4, 0x22, 0xd7, 0x62, 0xf0, 0x0b, 0x00, 0x4e, 0x70, 0xd0, 0x15, 0xf1, 0x1a, 0x1f, 0x32, 0x32, - 0x4f, 0xca, 0xd7, 0xb8, 0xfc, 0x7c, 0x4d, 0x98, 0xfd, 0x1c, 0x8c, 0xa9, 0x0c, 0x94, 0x35, 0x9e, - 0xd8, 0x50, 0x44, 0x82, 0x5a, 0x49, 0x8a, 0xb1, 0x8e, 0x83, 0x36, 0x60, 0x2a, 0xe2, 0xa2, 0x1e, - 0x15, 0xf0, 0x93, 0x8b, 0xcc, 0x3e, 0x2a, 0x0d, 0x51, 0xea, 0x26, 0xf8, 0x90, 0x15, 0xf1, 0xa3, - 0x43, 0xba, 0xf2, 0xa6, 0x49, 0xa0, 0xd7, 0x60, 0xb2, 0x19, 0x38, 0xee, 0x92, 0xd3, 0x74, 0xfc, - 0x06, 0xfb, 0xde, 0x92, 0x99, 0xc8, 0xec, 0x86, 0x01, 0xc5, 0x29, 0x6c, 0xca, 0xf9, 0xe8, 0x25, - 0x22, 0x48, 0xad, 0xe3, 0x6f, 0x93, 0x48, 0xe4, 0x13, 0x64, 0x9c, 0xcf, 0x8d, 0x1c, 0x1c, 0x9c, - 0x5b, 0x1b, 0xbd, 0x02, 0xe3, 0xf2, 0xf3, 0x35, 0xcf, 0xf7, 0xc4, 0xf6, 0x5e, 0x83, 0x61, 0x03, - 0x13, 0xdd, 0x85, 0x33, 0xf2, 0xff, 0x46, 0xe8, 0x6c, 0x6d, 0x79, 0x0d, 0xe1, 0x0e, 0xca, 0x1d, - 0xe3, 0x16, 0xa5, 0xf7, 0xd6, 0x4a, 0x16, 0xd2, 0xe1, 0xc1, 0xfc, 0x45, 0x31, 0x6a, 0x99, 0x70, - 0x36, 0x89, 0xd9, 0xf4, 0xd1, 0x1a, 0x9c, 0xda, 0x21, 0x4e, 0x33, 0xde, 0x59, 0xde, 0x21, 0x8d, - 0x5d, 0xb9, 0x89, 0x98, 0x3f, 0xbd, 0x66, 0xb1, 0x7e, 0xad, 0x1b, 0x05, 0x67, 0xd5, 0x43, 0x6f, - 0xc1, 0x6c, 0xbb, 0xb3, 0xd9, 0xf4, 0xa2, 0x9d, 0xf5, 0x20, 0x66, 0xd6, 0x28, 0x2a, 0xa1, 0xa5, - 0x70, 0xbc, 0x57, 0x11, 0x0b, 0x6a, 0x39, 0x78, 0x38, 0x97, 0x02, 0x7a, 0x17, 0xce, 0xa4, 0x16, - 0x83, 0x70, 0x3d, 0x9e, 0xcc, 0x0f, 0xf9, 0x5d, 0xcf, 0xaa, 0x20, 0xbc, 0xf8, 0xb3, 0x40, 0x38, - 0xbb, 0x09, 0xf4, 0x22, 0x94, 0xbc, 0xf6, 0xaa, 0xd3, 0xf2, 0x9a, 0xfb, 0x2c, 0x66, 0x79, 0x99, - 0xc5, 0xf1, 0x2e, 0x55, 0x6b, 0xbc, 0xec, 0x50, 0xfb, 0x8d, 0x15, 0xe6, 0x7b, 0xb3, 0x46, 0x7a, - 0x87, 0x56, 0xd6, 0x58, 0x39, 0xf4, 0x79, 0x18, 0xd7, 0xd7, 0x9e, 0xb8, 0x96, 0x2e, 0x65, 0x73, - 0x3a, 0xda, 0x1a, 0xe5, 0x8c, 0xa0, 0x5a, 0x87, 0x3a, 0x0c, 0x1b, 0x14, 0x6d, 0x02, 0xd9, 0xa3, - 0x82, 0x6e, 0x40, 0xa9, 0xd1, 0xf4, 0x88, 0x1f, 0x57, 0x6b, 0xbd, 0x02, 0x11, 0x2d, 0x0b, 0x1c, - 0x31, 0xcc, 0x22, 0xb2, 0x32, 0x2f, 0xc3, 0x8a, 0x82, 0xfd, 0x2b, 0x05, 0x98, 0xef, 0x13, 0xa6, - 0x3b, 0x25, 0x34, 0xb7, 0x06, 0x12, 0x9a, 0x2f, 0xca, 0xa4, 0x9e, 0xeb, 0x29, 0x49, 0x42, 0x2a, - 0x61, 0x67, 0x22, 0x4f, 0x48, 0xe3, 0x0f, 0x6c, 0xc4, 0xac, 0xcb, 0xdd, 0x87, 0xfa, 0x9a, 0xe1, - 0x1b, 0xfa, 0xb6, 0xe1, 0xc1, 0x9f, 0x2f, 0xb9, 0xba, 0x13, 0xfb, 0x2b, 0x05, 0x38, 0xa3, 0x86, - 0xf0, 0xeb, 0x77, 0xe0, 0x6e, 0x75, 0x0f, 0xdc, 0x31, 0x68, 0x9e, 0xec, 0x9b, 0x30, 0xc2, 0x23, - 0x2b, 0x0d, 0xc0, 0x36, 0x3d, 0x61, 0x86, 0x06, 0x54, 0x97, 0xbb, 0x11, 0x1e, 0xf0, 0x7b, 0x2c, - 0x98, 0xda, 0x58, 0xae, 0xd5, 0x83, 0xc6, 0x2e, 0x89, 0x17, 0x39, 0x9b, 0x8b, 0x05, 0xd7, 0x64, - 0x3d, 0x20, 0x37, 0x94, 0xc5, 0x67, 0x5d, 0x84, 0xa1, 0x9d, 0x20, 0x8a, 0xd3, 0x6a, 0xe9, 0x6b, - 0x41, 0x14, 0x63, 0x06, 0xb1, 0x7f, 0xdb, 0x82, 0x61, 0x96, 0xc7, 0xba, 0x5f, 0x26, 0xf5, 0x41, - 0xbe, 0x0b, 0xbd, 0x04, 0x23, 0x64, 0x6b, 0x8b, 0x34, 0x62, 0x31, 0xab, 0xd2, 0x8f, 0x78, 0x64, - 0x85, 0x95, 0x52, 0x56, 0x81, 0x35, 0xc6, 0xff, 0x62, 0x81, 0x8c, 0xee, 0x40, 0x39, 0xf6, 0x5a, - 0x64, 0xd1, 0x75, 0x85, 0x62, 0xef, 0x01, 0x7c, 0xa1, 0x37, 0x24, 0x01, 0x9c, 0xd0, 0xb2, 0xbf, - 0x54, 0x00, 0x48, 0xe2, 0x6a, 0xf4, 0xfb, 0xc4, 0xa5, 0x2e, 0x95, 0xcf, 0xa5, 0x0c, 0x95, 0x0f, - 0x4a, 0x08, 0x66, 0xe8, 0x7b, 0xd4, 0x30, 0x15, 0x07, 0x1a, 0xa6, 0xa1, 0xa3, 0x0c, 0xd3, 0x32, - 0xcc, 0x24, 0x71, 0x41, 0xcc, 0xb0, 0x48, 0xec, 0x69, 0xb3, 0x91, 0x06, 0xe2, 0x6e, 0x7c, 0x9b, - 0xc0, 0x45, 0x15, 0x1e, 0x41, 0xdc, 0x35, 0xcc, 0x6e, 0xf4, 0x08, 0x49, 0xf5, 0x13, 0x9d, 0x56, - 0x21, 0x57, 0xa7, 0xf5, 0x63, 0x16, 0x9c, 0x4e, 0xb7, 0xc3, 0x1c, 0xf9, 0xbe, 0x68, 0xc1, 0x19, - 0xa6, 0xd9, 0x63, 0xad, 0x76, 0xeb, 0x11, 0x5f, 0xec, 0x19, 0xf2, 0x21, 0xa7, 0xc7, 0x89, 0xc3, - 0xfa, 0x5a, 0x16, 0x69, 0x9c, 0xdd, 0xa2, 0xfd, 0x9f, 0x0b, 0x30, 0x9b, 0x17, 0x2b, 0x82, 0x99, - 0x95, 0x3b, 0xf7, 0xea, 0xbb, 0xe4, 0xae, 0x30, 0xde, 0x4d, 0xcc, 0xca, 0x79, 0x31, 0x96, 0xf0, - 0x74, 0xe4, 0xe5, 0xc2, 0x60, 0x91, 0x97, 0xd1, 0x0e, 0xcc, 0xdc, 0xdd, 0x21, 0xfe, 0x2d, 0x3f, - 0x72, 0x62, 0x2f, 0xda, 0xf2, 0x58, 0x46, 0x74, 0xbe, 0x6e, 0x3e, 0x21, 0x4d, 0x6c, 0xef, 0xa4, - 0x11, 0x0e, 0x0f, 0xe6, 0xcf, 0x1b, 0x05, 0x49, 0x97, 0xf9, 0x41, 0x82, 0xbb, 0x89, 0x76, 0x07, - 0xae, 0x1e, 0x7a, 0x88, 0x81, 0xab, 0xed, 0x2f, 0x5a, 0x70, 0x2e, 0x37, 0xb1, 0x1c, 0xba, 0x0c, - 0x25, 0xa7, 0xed, 0x71, 0x11, 0xa8, 0x38, 0x46, 0xd9, 0x53, 0xbe, 0x56, 0xe5, 0x02, 0x50, 0x05, - 0x55, 0x09, 0x6f, 0x0b, 0xb9, 0x09, 0x6f, 0xfb, 0xe6, 0xaf, 0xb5, 0xbf, 0xdb, 0x02, 0xe1, 0x12, - 0x37, 0xc0, 0xd9, 0xfd, 0xa6, 0xcc, 0x17, 0x6e, 0x24, 0xb7, 0xb8, 0x98, 0xef, 0x23, 0x28, 0x52, - 0x5a, 0x28, 0x5e, 0xc9, 0x48, 0x64, 0x61, 0xd0, 0xb2, 0x5d, 0x10, 0xd0, 0x0a, 0x61, 0x02, 0xc4, - 0xfe, 0xbd, 0x79, 0x1e, 0xc0, 0x65, 0xb8, 0x5a, 0xd6, 0x60, 0x75, 0x33, 0x57, 0x14, 0x04, 0x6b, - 0x58, 0xf6, 0xbf, 0x2f, 0xc0, 0x98, 0x4c, 0xa6, 0xd0, 0xf1, 0x07, 0x79, 0xe6, 0x1f, 0x29, 0xbb, - 0x1a, 0x4b, 0xb3, 0x4d, 0x09, 0xd7, 0x12, 0xe9, 0x48, 0x92, 0x66, 0x5b, 0x02, 0x70, 0x82, 0x43, - 0x77, 0x51, 0xd4, 0xd9, 0x64, 0xe8, 0x29, 0x07, 0xae, 0x3a, 0x2f, 0xc6, 0x12, 0x8e, 0x3e, 0x0d, - 0xd3, 0xbc, 0x5e, 0x18, 0xb4, 0x9d, 0x6d, 0x2e, 0x5b, 0x1e, 0x56, 0x9e, 0xd7, 0xd3, 0x6b, 0x29, - 0xd8, 0xe1, 0xc1, 0xfc, 0xe9, 0x74, 0x19, 0x53, 0x9a, 0x74, 0x51, 0x61, 0x86, 0x18, 0xbc, 0x11, - 0xba, 0xfb, 0xbb, 0xec, 0x37, 0x12, 0x10, 0xd6, 0xf1, 0xec, 0xcf, 0x03, 0xea, 0x4e, 0x2b, 0x81, - 0x5e, 0xe7, 0xd6, 0x77, 0x5e, 0x48, 0xdc, 0x5e, 0x4a, 0x14, 0xdd, 0xbf, 0x58, 0xfa, 0x5e, 0xf0, - 0x5a, 0x58, 0xd5, 0xb7, 0xff, 0x5a, 0x11, 0xa6, 0xd3, 0xde, 0xa6, 0xe8, 0x1a, 0x8c, 0x70, 0xd6, - 0x43, 0x90, 0xef, 0xa1, 0xa3, 0xd7, 0x7c, 0x54, 0xd9, 0x21, 0x2c, 0xb8, 0x17, 0x51, 0x1f, 0xbd, - 0x05, 0x63, 0x6e, 0x70, 0xd7, 0xbf, 0xeb, 0x84, 0xee, 0x62, 0xad, 0x2a, 0x96, 0x73, 0xe6, 0xbb, - 0xa7, 0x92, 0xa0, 0xe9, 0x7e, 0xaf, 0x4c, 0x1f, 0x95, 0x80, 0xb0, 0x4e, 0x0e, 0x6d, 0xb0, 0x28, - 0xb8, 0x5b, 0xde, 0xf6, 0x9a, 0xd3, 0xee, 0x65, 0x8a, 0xbd, 0x2c, 0x91, 0x34, 0xca, 0x13, 0x22, - 0x54, 0x2e, 0x07, 0xe0, 0x84, 0x10, 0xfa, 0x56, 0x38, 0x15, 0xe5, 0x88, 0x4a, 0xf3, 0xb2, 0x0c, - 0xf5, 0x92, 0x1e, 0x2e, 0x3d, 0x42, 0x5f, 0xa4, 0x59, 0x42, 0xd5, 0xac, 0x66, 0xec, 0x5f, 0x3d, - 0x05, 0xc6, 0x26, 0x36, 0x92, 0xce, 0x59, 0xc7, 0x94, 0x74, 0x0e, 0x43, 0x89, 0xb4, 0xda, 0xf1, - 0x7e, 0xc5, 0x0b, 0x7b, 0x65, 0x2d, 0x5d, 0x11, 0x38, 0xdd, 0x34, 0x25, 0x04, 0x2b, 0x3a, 0xd9, - 0x99, 0x01, 0x8b, 0x5f, 0xc3, 0xcc, 0x80, 0x43, 0x27, 0x98, 0x19, 0x70, 0x1d, 0x46, 0xb7, 0xbd, - 0x18, 0x93, 0x76, 0x20, 0x98, 0xfe, 0xcc, 0x75, 0x78, 0x95, 0xa3, 0x74, 0xe7, 0xa0, 0x12, 0x00, - 0x2c, 0x89, 0xa0, 0xd7, 0xd5, 0x0e, 0x1c, 0xc9, 0x7f, 0x33, 0x77, 0x2b, 0x93, 0x33, 0xf7, 0xa0, - 0xc8, 0xff, 0x37, 0xfa, 0xa0, 0xf9, 0xff, 0x56, 0x65, 0xd6, 0xbe, 0x52, 0xbe, 0xdf, 0x04, 0x4b, - 0xca, 0xd7, 0x27, 0x57, 0xdf, 0x6d, 0x3d, 0xd3, 0x61, 0x39, 0xff, 0x24, 0x50, 0x49, 0x0c, 0x07, - 0xcc, 0x6f, 0xf8, 0xdd, 0x16, 0x9c, 0x69, 0x67, 0x25, 0xfd, 0x14, 0x7a, 0xd7, 0x97, 0x06, 0xce, - 0x6a, 0x6a, 0x34, 0xc8, 0x44, 0x2e, 0x99, 0x68, 0x38, 0xbb, 0x39, 0x3a, 0xd0, 0xe1, 0xa6, 0x2b, - 0x12, 0xf4, 0x3d, 0x91, 0x93, 0x28, 0xb1, 0x47, 0x7a, 0xc4, 0x8d, 0x8c, 0xa4, 0x7c, 0x1f, 0xce, - 0x4b, 0xca, 0x37, 0x70, 0x2a, 0xbe, 0xd7, 0x55, 0x8a, 0xc4, 0x89, 0xfc, 0xa5, 0xc4, 0x13, 0x20, - 0xf6, 0x4d, 0x8c, 0xf8, 0xba, 0x4a, 0x8c, 0xd8, 0x23, 0x22, 0x24, 0x4f, 0x7b, 0xd8, 0x37, 0x1d, - 0xa2, 0x96, 0xd2, 0x70, 0xea, 0x78, 0x52, 0x1a, 0x1a, 0x57, 0x0d, 0xcf, 0xaa, 0xf7, 0x74, 0x9f, - 0xab, 0xc6, 0xa0, 0xdb, 0xfb, 0xb2, 0xe1, 0xe9, 0x1b, 0x67, 0x1e, 0x28, 0x7d, 0xe3, 0x6d, 0x3d, - 0x1d, 0x22, 0xea, 0x93, 0xef, 0x8f, 0x22, 0x0d, 0x98, 0x04, 0xf1, 0xb6, 0x7e, 0x01, 0x9e, 0xca, - 0xa7, 0xab, 0xee, 0xb9, 0x6e, 0xba, 0x99, 0x57, 0x60, 0x57, 0x72, 0xc5, 0xd3, 0x27, 0x93, 0x5c, - 0xf1, 0xcc, 0xb1, 0x27, 0x57, 0x3c, 0x7b, 0x02, 0xc9, 0x15, 0x1f, 0x39, 0xc1, 0xe4, 0x8a, 0xb7, - 0x99, 0xb1, 0x02, 0x0f, 0x2c, 0x22, 0x22, 0x58, 0x66, 0x47, 0x4b, 0xcc, 0x8a, 0x3e, 0xc2, 0x3f, - 0x4e, 0x81, 0x70, 0x42, 0x2a, 0x23, 0x69, 0xe3, 0xec, 0x43, 0x48, 0xda, 0xb8, 0x9e, 0x24, 0x6d, - 0x3c, 0x97, 0x3f, 0xd5, 0x19, 0x46, 0xe2, 0x39, 0xa9, 0x1a, 0x6f, 0xeb, 0x29, 0x16, 0x1f, 0xed, - 0x21, 0x54, 0xcf, 0x12, 0x3c, 0xf6, 0x48, 0xac, 0xf8, 0x1a, 0x4f, 0xac, 0xf8, 0x58, 0xfe, 0x49, - 0x9e, 0xbe, 0xee, 0xcc, 0x74, 0x8a, 0xdf, 0x5b, 0x80, 0x0b, 0xbd, 0xf7, 0x45, 0x22, 0xf5, 0xac, - 0x25, 0xba, 0xbd, 0x94, 0xd4, 0x93, 0xbf, 0xad, 0x12, 0xac, 0x81, 0x63, 0x4e, 0x5d, 0x85, 0x19, - 0x65, 0x05, 0xde, 0xf4, 0x1a, 0xfb, 0x5a, 0x06, 0x79, 0xe5, 0x39, 0x5b, 0x4f, 0x23, 0xe0, 0xee, - 0x3a, 0x68, 0x11, 0xa6, 0x8c, 0xc2, 0x6a, 0x45, 0xbc, 0xa1, 0x94, 0x98, 0xb5, 0x6e, 0x82, 0x71, - 0x1a, 0xdf, 0xfe, 0x29, 0x0b, 0x1e, 0xc9, 0xc9, 0x5b, 0x34, 0x70, 0x48, 0xa5, 0x2d, 0x98, 0x6a, - 0x9b, 0x55, 0xfb, 0x44, 0x5e, 0x33, 0xb2, 0x23, 0xa9, 0xbe, 0xa6, 0x00, 0x38, 0x4d, 0xd4, 0xfe, - 0x53, 0x0b, 0xce, 0xf7, 0x34, 0xc8, 0x42, 0x18, 0xce, 0x6e, 0xb7, 0x22, 0x67, 0x39, 0x24, 0x2e, - 0xf1, 0x63, 0xcf, 0x69, 0xd6, 0xdb, 0xa4, 0xa1, 0xc9, 0xad, 0x99, 0x65, 0xd3, 0xd5, 0xb5, 0xfa, - 0x62, 0x37, 0x06, 0xce, 0xa9, 0x89, 0x56, 0x01, 0x75, 0x43, 0xc4, 0x0c, 0xb3, 0xe8, 0xac, 0xdd, - 0xf4, 0x70, 0x46, 0x0d, 0xf4, 0x32, 0x4c, 0x28, 0x43, 0x2f, 0x6d, 0xc6, 0xd9, 0x01, 0x8c, 0x75, - 0x00, 0x36, 0xf1, 0x96, 0x2e, 0xff, 0xfa, 0xef, 0x5e, 0xf8, 0xd0, 0x6f, 0xfe, 0xee, 0x85, 0x0f, - 0xfd, 0xd6, 0xef, 0x5e, 0xf8, 0xd0, 0xb7, 0xdf, 0xbf, 0x60, 0xfd, 0xfa, 0xfd, 0x0b, 0xd6, 0x6f, - 0xde, 0xbf, 0x60, 0xfd, 0xd6, 0xfd, 0x0b, 0xd6, 0xef, 0xdc, 0xbf, 0x60, 0x7d, 0xe9, 0xf7, 0x2e, - 0x7c, 0xe8, 0xcd, 0xc2, 0xde, 0x73, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x97, 0xfc, 0x5b, 0x6d, - 0x4b, 0xfb, 0x00, 0x00, + // 13567 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x7b, 0x70, 0x24, 0x49, + 0x5a, 0x18, 0x7e, 0xd5, 0xad, 0x47, 0xf7, 0xa7, 0x77, 0xce, 0x63, 0x35, 0xda, 0x9d, 0xd1, 0x6c, + 0xed, 0xdd, 0xec, 0xec, 0xed, 0xae, 0xe6, 0xf6, 0x75, 0xbb, 0xdc, 0xde, 0x2d, 0x48, 0x6a, 0x69, + 0xa6, 0x77, 0x46, 0x9a, 0xde, 0x6c, 0xcd, 0xcc, 0xdd, 0xb2, 0x77, 0x5c, 0xa9, 0x2b, 0x25, 0xd5, + 0xaa, 0xbb, 0xaa, 0xb7, 0xaa, 0x5a, 0x33, 0xda, 0x1f, 0xc4, 0x0f, 0x1f, 0xcf, 0x33, 0xe0, 0xb8, + 0xb0, 0x09, 0x3f, 0x80, 0xc0, 0x11, 0x18, 0x07, 0x60, 0xb0, 0xc3, 0x18, 0x0c, 0x98, 0xc3, 0x36, + 0x06, 0xdb, 0x81, 0xfd, 0x07, 0xc6, 0x0e, 0xdb, 0x47, 0x04, 0x61, 0x19, 0x06, 0x87, 0x89, 0xfb, + 0xc3, 0x40, 0x18, 0xfc, 0x87, 0x65, 0xc2, 0x38, 0xf2, 0x59, 0x99, 0xd5, 0x55, 0xdd, 0xad, 0x59, + 0x8d, 0x6e, 0xb9, 0xd8, 0xff, 0xba, 0xf3, 0xfb, 0xf2, 0xcb, 0xac, 0x7c, 0x7e, 0xf9, 0x3d, 0xe1, + 0xd5, 0xdd, 0x57, 0xa2, 0x05, 0x2f, 0xb8, 0xb2, 0xdb, 0xd9, 0x24, 0xa1, 0x4f, 0x62, 0x12, 0x5d, + 0xd9, 0x23, 0xbe, 0x1b, 0x84, 0x57, 0x04, 0xc0, 0x69, 0x7b, 0x57, 0x1a, 0x41, 0x48, 0xae, 0xec, + 0x3d, 0x77, 0x65, 0x9b, 0xf8, 0x24, 0x74, 0x62, 0xe2, 0x2e, 0xb4, 0xc3, 0x20, 0x0e, 0x10, 0xe2, + 0x38, 0x0b, 0x4e, 0xdb, 0x5b, 0xa0, 0x38, 0x0b, 0x7b, 0xcf, 0xcd, 0x3d, 0xbb, 0xed, 0xc5, 0x3b, + 0x9d, 0xcd, 0x85, 0x46, 0xd0, 0xba, 0xb2, 0x1d, 0x6c, 0x07, 0x57, 0x18, 0xea, 0x66, 0x67, 0x8b, + 0xfd, 0x63, 0x7f, 0xd8, 0x2f, 0x4e, 0x62, 0xee, 0xc5, 0xa4, 0x99, 0x96, 0xd3, 0xd8, 0xf1, 0x7c, + 0x12, 0xee, 0x5f, 0x69, 0xef, 0x6e, 0xb3, 0x76, 0x43, 0x12, 0x05, 0x9d, 0xb0, 0x41, 0xd2, 0x0d, + 0xf7, 0xac, 0x15, 0x5d, 0x69, 0x91, 0xd8, 0xc9, 0xe8, 0xee, 0xdc, 0x95, 0xbc, 0x5a, 0x61, 0xc7, + 0x8f, 0xbd, 0x56, 0x77, 0x33, 0x1f, 0xef, 0x57, 0x21, 0x6a, 0xec, 0x90, 0x96, 0xd3, 0x55, 0xef, + 0x85, 0xbc, 0x7a, 0x9d, 0xd8, 0x6b, 0x5e, 0xf1, 0xfc, 0x38, 0x8a, 0xc3, 0x74, 0x25, 0xfb, 0x2b, + 0x16, 0x5c, 0x5c, 0xbc, 0x53, 0x5f, 0x69, 0x3a, 0x51, 0xec, 0x35, 0x96, 0x9a, 0x41, 0x63, 0xb7, + 0x1e, 0x07, 0x21, 0xb9, 0x1d, 0x34, 0x3b, 0x2d, 0x52, 0x67, 0x03, 0x81, 0x9e, 0x81, 0xd2, 0x1e, + 0xfb, 0x5f, 0xad, 0xcc, 0x5a, 0x17, 0xad, 0xcb, 0xe5, 0xa5, 0xe9, 0xdf, 0x38, 0x98, 0xff, 0xd0, + 0xfd, 0x83, 0xf9, 0xd2, 0x6d, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x04, 0x23, 0x5b, 0xd1, 0xc6, 0x7e, + 0x9b, 0xcc, 0x16, 0x18, 0xee, 0xa4, 0xc0, 0x1d, 0x59, 0xad, 0xd3, 0x52, 0x2c, 0xa0, 0xe8, 0x0a, + 0x94, 0xdb, 0x4e, 0x18, 0x7b, 0xb1, 0x17, 0xf8, 0xb3, 0xc5, 0x8b, 0xd6, 0xe5, 0xe1, 0xa5, 0x19, + 0x81, 0x5a, 0xae, 0x49, 0x00, 0x4e, 0x70, 0x68, 0x37, 0x42, 0xe2, 0xb8, 0x37, 0xfd, 0xe6, 0xfe, + 0xec, 0xd0, 0x45, 0xeb, 0x72, 0x29, 0xe9, 0x06, 0x16, 0xe5, 0x58, 0x61, 0xd8, 0x3f, 0x54, 0x80, + 0xd2, 0xe2, 0xd6, 0x96, 0xe7, 0x7b, 0xf1, 0x3e, 0xba, 0x0d, 0xe3, 0x7e, 0xe0, 0x12, 0xf9, 0x9f, + 0x7d, 0xc5, 0xd8, 0xf3, 0x17, 0x17, 0xba, 0x97, 0xd2, 0xc2, 0xba, 0x86, 0xb7, 0x34, 0x7d, 0xff, + 0x60, 0x7e, 0x5c, 0x2f, 0xc1, 0x06, 0x1d, 0x84, 0x61, 0xac, 0x1d, 0xb8, 0x8a, 0x6c, 0x81, 0x91, + 0x9d, 0xcf, 0x22, 0x5b, 0x4b, 0xd0, 0x96, 0xa6, 0xee, 0x1f, 0xcc, 0x8f, 0x69, 0x05, 0x58, 0x27, + 0x82, 0x36, 0x61, 0x8a, 0xfe, 0xf5, 0x63, 0x4f, 0xd1, 0x2d, 0x32, 0xba, 0x4f, 0xe4, 0xd1, 0xd5, + 0x50, 0x97, 0x4e, 0xdd, 0x3f, 0x98, 0x9f, 0x4a, 0x15, 0xe2, 0x34, 0x41, 0xfb, 0x5d, 0x98, 0x5c, + 0x8c, 0x63, 0xa7, 0xb1, 0x43, 0x5c, 0x3e, 0x83, 0xe8, 0x45, 0x18, 0xf2, 0x9d, 0x16, 0x11, 0xf3, + 0x7b, 0x51, 0x0c, 0xec, 0xd0, 0xba, 0xd3, 0x22, 0x87, 0x07, 0xf3, 0xd3, 0xb7, 0x7c, 0xef, 0x9d, + 0x8e, 0x58, 0x15, 0xb4, 0x0c, 0x33, 0x6c, 0xf4, 0x3c, 0x80, 0x4b, 0xf6, 0xbc, 0x06, 0xa9, 0x39, + 0xf1, 0x8e, 0x98, 0x6f, 0x24, 0xea, 0x42, 0x45, 0x41, 0xb0, 0x86, 0x65, 0xdf, 0x83, 0xf2, 0xe2, + 0x5e, 0xe0, 0xb9, 0xb5, 0xc0, 0x8d, 0xd0, 0x2e, 0x4c, 0xb5, 0x43, 0xb2, 0x45, 0x42, 0x55, 0x34, + 0x6b, 0x5d, 0x2c, 0x5e, 0x1e, 0x7b, 0xfe, 0x72, 0xe6, 0xc7, 0x9a, 0xa8, 0x2b, 0x7e, 0x1c, 0xee, + 0x2f, 0x3d, 0x22, 0xda, 0x9b, 0x4a, 0x41, 0x71, 0x9a, 0xb2, 0xfd, 0x2f, 0x0b, 0x70, 0x66, 0xf1, + 0xdd, 0x4e, 0x48, 0x2a, 0x5e, 0xb4, 0x9b, 0x5e, 0xe1, 0xae, 0x17, 0xed, 0xae, 0x27, 0x23, 0xa0, + 0x96, 0x56, 0x45, 0x94, 0x63, 0x85, 0x81, 0x9e, 0x85, 0x51, 0xfa, 0xfb, 0x16, 0xae, 0x8a, 0x4f, + 0x3e, 0x25, 0x90, 0xc7, 0x2a, 0x4e, 0xec, 0x54, 0x38, 0x08, 0x4b, 0x1c, 0xb4, 0x06, 0x63, 0x0d, + 0xb6, 0x21, 0xb7, 0xd7, 0x02, 0x97, 0xb0, 0xc9, 0x2c, 0x2f, 0x3d, 0x4d, 0xd1, 0x97, 0x93, 0xe2, + 0xc3, 0x83, 0xf9, 0x59, 0xde, 0x37, 0x41, 0x42, 0x83, 0x61, 0xbd, 0x3e, 0xb2, 0xd5, 0xfe, 0x1a, + 0x62, 0x94, 0x20, 0x63, 0x6f, 0x5d, 0xd6, 0xb6, 0xca, 0x30, 0xdb, 0x2a, 0xe3, 0xd9, 0xdb, 0x04, + 0x3d, 0x07, 0x43, 0xbb, 0x9e, 0xef, 0xce, 0x8e, 0x30, 0x5a, 0xe7, 0xe9, 0x9c, 0x5f, 0xf7, 0x7c, + 0xf7, 0xf0, 0x60, 0x7e, 0xc6, 0xe8, 0x0e, 0x2d, 0xc4, 0x0c, 0xd5, 0xfe, 0x13, 0x0b, 0xe6, 0x19, + 0x6c, 0xd5, 0x6b, 0x92, 0x1a, 0x09, 0x23, 0x2f, 0x8a, 0x89, 0x1f, 0x1b, 0x03, 0xfa, 0x3c, 0x40, + 0x44, 0x1a, 0x21, 0x89, 0xb5, 0x21, 0x55, 0x0b, 0xa3, 0xae, 0x20, 0x58, 0xc3, 0xa2, 0x07, 0x42, + 0xb4, 0xe3, 0x84, 0x6c, 0x7d, 0x89, 0x81, 0x55, 0x07, 0x42, 0x5d, 0x02, 0x70, 0x82, 0x63, 0x1c, + 0x08, 0xc5, 0x7e, 0x07, 0x02, 0xfa, 0x14, 0x4c, 0x25, 0x8d, 0x45, 0x6d, 0xa7, 0x21, 0x07, 0x90, + 0x6d, 0x99, 0xba, 0x09, 0xc2, 0x69, 0x5c, 0xfb, 0xef, 0x59, 0x62, 0xf1, 0xd0, 0xaf, 0x7e, 0x9f, + 0x7f, 0xab, 0xfd, 0x4b, 0x16, 0x8c, 0x2e, 0x79, 0xbe, 0xeb, 0xf9, 0xdb, 0xe8, 0xf3, 0x50, 0xa2, + 0x77, 0x93, 0xeb, 0xc4, 0x8e, 0x38, 0xf7, 0x3e, 0xa6, 0xed, 0x2d, 0x75, 0x55, 0x2c, 0xb4, 0x77, + 0xb7, 0x69, 0x41, 0xb4, 0x40, 0xb1, 0xe9, 0x6e, 0xbb, 0xb9, 0xf9, 0x36, 0x69, 0xc4, 0x6b, 0x24, + 0x76, 0x92, 0xcf, 0x49, 0xca, 0xb0, 0xa2, 0x8a, 0xae, 0xc3, 0x48, 0xec, 0x84, 0xdb, 0x24, 0x16, + 0x07, 0x60, 0xe6, 0x41, 0xc5, 0x6b, 0x62, 0xba, 0x23, 0x89, 0xdf, 0x20, 0xc9, 0xb5, 0xb0, 0xc1, + 0xaa, 0x62, 0x41, 0xc2, 0xfe, 0x81, 0x51, 0x38, 0xb7, 0x5c, 0xaf, 0xe6, 0xac, 0xab, 0x4b, 0x30, + 0xe2, 0x86, 0xde, 0x1e, 0x09, 0xc5, 0x38, 0x2b, 0x2a, 0x15, 0x56, 0x8a, 0x05, 0x14, 0xbd, 0x02, + 0xe3, 0xfc, 0x42, 0xba, 0xe6, 0xf8, 0x6e, 0x53, 0x0e, 0xf1, 0x69, 0x81, 0x3d, 0x7e, 0x5b, 0x83, + 0x61, 0x03, 0xf3, 0x88, 0x8b, 0xea, 0x52, 0x6a, 0x33, 0xe6, 0x5d, 0x76, 0x5f, 0xb4, 0x60, 0x9a, + 0x37, 0xb3, 0x18, 0xc7, 0xa1, 0xb7, 0xd9, 0x89, 0x49, 0x34, 0x3b, 0xcc, 0x4e, 0xba, 0xe5, 0xac, + 0xd1, 0xca, 0x1d, 0x81, 0x85, 0xdb, 0x29, 0x2a, 0xfc, 0x10, 0x9c, 0x15, 0xed, 0x4e, 0xa7, 0xc1, + 0xb8, 0xab, 0x59, 0xf4, 0x1d, 0x16, 0xcc, 0x35, 0x02, 0x3f, 0x0e, 0x83, 0x66, 0x93, 0x84, 0xb5, + 0xce, 0x66, 0xd3, 0x8b, 0x76, 0xf8, 0x3a, 0xc5, 0x64, 0x8b, 0x9d, 0x04, 0x39, 0x73, 0xa8, 0x90, + 0xc4, 0x1c, 0x5e, 0xb8, 0x7f, 0x30, 0x3f, 0xb7, 0x9c, 0x4b, 0x0a, 0xf7, 0x68, 0x06, 0xed, 0x02, + 0xa2, 0x57, 0x69, 0x3d, 0x76, 0xb6, 0x49, 0xd2, 0xf8, 0xe8, 0xe0, 0x8d, 0x9f, 0xbd, 0x7f, 0x30, + 0x8f, 0xd6, 0xbb, 0x48, 0xe0, 0x0c, 0xb2, 0xe8, 0x1d, 0x38, 0x4d, 0x4b, 0xbb, 0xbe, 0xb5, 0x34, + 0x78, 0x73, 0xb3, 0xf7, 0x0f, 0xe6, 0x4f, 0xaf, 0x67, 0x10, 0xc1, 0x99, 0xa4, 0xd1, 0xb7, 0x5b, + 0x70, 0x2e, 0xf9, 0xfc, 0x95, 0x7b, 0x6d, 0xc7, 0x77, 0x93, 0x86, 0xcb, 0x83, 0x37, 0x4c, 0xcf, + 0xe4, 0x73, 0xcb, 0x79, 0x94, 0x70, 0x7e, 0x23, 0x73, 0xcb, 0x70, 0x26, 0x73, 0xb5, 0xa0, 0x69, + 0x28, 0xee, 0x12, 0xce, 0x05, 0x95, 0x31, 0xfd, 0x89, 0x4e, 0xc3, 0xf0, 0x9e, 0xd3, 0xec, 0x88, + 0x8d, 0x82, 0xf9, 0x9f, 0x4f, 0x14, 0x5e, 0xb1, 0xec, 0x7f, 0x55, 0x84, 0xa9, 0xe5, 0x7a, 0xf5, + 0x81, 0x76, 0xa1, 0x7e, 0x0d, 0x15, 0x7a, 0x5e, 0x43, 0xc9, 0xa5, 0x56, 0xcc, 0xbd, 0xd4, 0xfe, + 0xff, 0x8c, 0x2d, 0x34, 0xc4, 0xb6, 0xd0, 0x37, 0xe4, 0x6c, 0xa1, 0x63, 0xde, 0x38, 0x7b, 0x39, + 0xab, 0x68, 0x98, 0x4d, 0x66, 0x26, 0xc7, 0x72, 0x23, 0x68, 0x38, 0xcd, 0xf4, 0xd1, 0x77, 0xc4, + 0xa5, 0x74, 0x3c, 0xf3, 0xd8, 0x80, 0xf1, 0x65, 0xa7, 0xed, 0x6c, 0x7a, 0x4d, 0x2f, 0xf6, 0x48, + 0x84, 0x9e, 0x84, 0xa2, 0xe3, 0xba, 0x8c, 0xdb, 0x2a, 0x2f, 0x9d, 0xb9, 0x7f, 0x30, 0x5f, 0x5c, + 0x74, 0xe9, 0xb5, 0x0f, 0x0a, 0x6b, 0x1f, 0x53, 0x0c, 0xf4, 0x51, 0x18, 0x72, 0xc3, 0xa0, 0x3d, + 0x5b, 0x60, 0x98, 0x74, 0xd7, 0x0d, 0x55, 0xc2, 0xa0, 0x9d, 0x42, 0x65, 0x38, 0xf6, 0xaf, 0x16, + 0xe0, 0xb1, 0x65, 0xd2, 0xde, 0x59, 0xad, 0xe7, 0x9c, 0xdf, 0x97, 0xa1, 0xd4, 0x0a, 0x7c, 0x2f, + 0x0e, 0xc2, 0x48, 0x34, 0xcd, 0x56, 0xc4, 0x9a, 0x28, 0xc3, 0x0a, 0x8a, 0x2e, 0xc2, 0x50, 0x3b, + 0x61, 0x2a, 0xc7, 0x25, 0x43, 0xca, 0xd8, 0x49, 0x06, 0xa1, 0x18, 0x9d, 0x88, 0x84, 0x62, 0xc5, + 0x28, 0x8c, 0x5b, 0x11, 0x09, 0x31, 0x83, 0x24, 0x37, 0x33, 0xbd, 0xb3, 0xc5, 0x09, 0x9d, 0xba, + 0x99, 0x29, 0x04, 0x6b, 0x58, 0xa8, 0x06, 0xe5, 0x28, 0x35, 0xb3, 0x03, 0x6d, 0xd3, 0x09, 0x76, + 0x75, 0xab, 0x99, 0x4c, 0x88, 0x18, 0x37, 0xca, 0x48, 0xdf, 0xab, 0xfb, 0xcb, 0x05, 0x40, 0x7c, + 0x08, 0xff, 0x82, 0x0d, 0xdc, 0xad, 0xee, 0x81, 0x1b, 0x7c, 0x4b, 0x1c, 0xd7, 0xe8, 0xfd, 0xa9, + 0x05, 0x8f, 0x2d, 0x7b, 0xbe, 0x4b, 0xc2, 0x9c, 0x05, 0xf8, 0x70, 0xde, 0xb2, 0x47, 0x63, 0x1a, + 0x8c, 0x25, 0x36, 0x74, 0x0c, 0x4b, 0xcc, 0xfe, 0x23, 0x0b, 0x10, 0xff, 0xec, 0xf7, 0xdd, 0xc7, + 0xde, 0xea, 0xfe, 0xd8, 0x63, 0x58, 0x16, 0xf6, 0x0d, 0x98, 0x5c, 0x6e, 0x7a, 0xc4, 0x8f, 0xab, + 0xb5, 0xe5, 0xc0, 0xdf, 0xf2, 0xb6, 0xd1, 0x27, 0x60, 0x32, 0xf6, 0x5a, 0x24, 0xe8, 0xc4, 0x75, + 0xd2, 0x08, 0x7c, 0xf6, 0x92, 0xb4, 0x2e, 0x0f, 0x2f, 0xa1, 0xfb, 0x07, 0xf3, 0x93, 0x1b, 0x06, + 0x04, 0xa7, 0x30, 0xed, 0xdf, 0xa1, 0xe3, 0x17, 0xb4, 0xda, 0x81, 0x4f, 0xfc, 0x78, 0x39, 0xf0, + 0x5d, 0x2e, 0x71, 0xf8, 0x04, 0x0c, 0xc5, 0x74, 0x3c, 0xf8, 0xd8, 0x5d, 0x92, 0x1b, 0x85, 0x8e, + 0xc2, 0xe1, 0xc1, 0xfc, 0xd9, 0xee, 0x1a, 0x6c, 0x9c, 0x58, 0x1d, 0xf4, 0x0d, 0x30, 0x12, 0xc5, + 0x4e, 0xdc, 0x89, 0xc4, 0x68, 0x3e, 0x2e, 0x47, 0xb3, 0xce, 0x4a, 0x0f, 0x0f, 0xe6, 0xa7, 0x54, + 0x35, 0x5e, 0x84, 0x45, 0x05, 0xf4, 0x14, 0x8c, 0xb6, 0x48, 0x14, 0x39, 0xdb, 0xf2, 0x36, 0x9c, + 0x12, 0x75, 0x47, 0xd7, 0x78, 0x31, 0x96, 0x70, 0xf4, 0x04, 0x0c, 0x93, 0x30, 0x0c, 0x42, 0xb1, + 0x47, 0x27, 0x04, 0xe2, 0xf0, 0x0a, 0x2d, 0xc4, 0x1c, 0x66, 0xff, 0x3b, 0x0b, 0xa6, 0x54, 0x5f, + 0x79, 0x5b, 0x27, 0xf0, 0x2a, 0x78, 0x13, 0xa0, 0x21, 0x3f, 0x30, 0x62, 0xb7, 0xc7, 0xd8, 0xf3, + 0x97, 0x32, 0x2f, 0xea, 0xae, 0x61, 0x4c, 0x28, 0xab, 0xa2, 0x08, 0x6b, 0xd4, 0xec, 0x7f, 0x6a, + 0xc1, 0xa9, 0xd4, 0x17, 0xdd, 0xf0, 0xa2, 0x18, 0xbd, 0xd5, 0xf5, 0x55, 0x0b, 0x83, 0x7d, 0x15, + 0xad, 0xcd, 0xbe, 0x49, 0x2d, 0x65, 0x59, 0xa2, 0x7d, 0xd1, 0x35, 0x18, 0xf6, 0x62, 0xd2, 0x92, + 0x1f, 0xf3, 0x44, 0xcf, 0x8f, 0xe1, 0xbd, 0x4a, 0x66, 0xa4, 0x4a, 0x6b, 0x62, 0x4e, 0xc0, 0xfe, + 0x6b, 0x45, 0x28, 0xf3, 0x65, 0xbb, 0xe6, 0xb4, 0x4f, 0x60, 0x2e, 0xaa, 0x30, 0xc4, 0xa8, 0xf3, + 0x8e, 0x3f, 0x99, 0xdd, 0x71, 0xd1, 0x9d, 0x05, 0xfa, 0xe4, 0xe7, 0xcc, 0x91, 0xba, 0x1a, 0x68, + 0x11, 0x66, 0x24, 0x90, 0x03, 0xb0, 0xe9, 0xf9, 0x4e, 0xb8, 0x4f, 0xcb, 0x66, 0x8b, 0x8c, 0xe0, + 0xb3, 0xbd, 0x09, 0x2e, 0x29, 0x7c, 0x4e, 0x56, 0xf5, 0x35, 0x01, 0x60, 0x8d, 0xe8, 0xdc, 0xcb, + 0x50, 0x56, 0xc8, 0x47, 0xe1, 0x71, 0xe6, 0x3e, 0x05, 0x53, 0xa9, 0xb6, 0xfa, 0x55, 0x1f, 0xd7, + 0x59, 0xa4, 0x5f, 0x66, 0xa7, 0x80, 0xe8, 0xf5, 0x8a, 0xbf, 0x27, 0x4e, 0xd1, 0x77, 0xe1, 0x74, + 0x33, 0xe3, 0x70, 0x12, 0x53, 0x35, 0xf8, 0x61, 0xf6, 0x98, 0xf8, 0xec, 0xd3, 0x59, 0x50, 0x9c, + 0xd9, 0x06, 0xbd, 0xf6, 0x83, 0x36, 0x5d, 0xf3, 0x4e, 0x53, 0xe7, 0xa0, 0x6f, 0x8a, 0x32, 0xac, + 0xa0, 0xf4, 0x08, 0x3b, 0xad, 0x3a, 0x7f, 0x9d, 0xec, 0xd7, 0x49, 0x93, 0x34, 0xe2, 0x20, 0xfc, + 0x9a, 0x76, 0xff, 0x3c, 0x1f, 0x7d, 0x7e, 0x02, 0x8e, 0x09, 0x02, 0xc5, 0xeb, 0x64, 0x9f, 0x4f, + 0x85, 0xfe, 0x75, 0xc5, 0x9e, 0x5f, 0xf7, 0xb3, 0x16, 0x4c, 0xa8, 0xaf, 0x3b, 0x81, 0xad, 0xbe, + 0x64, 0x6e, 0xf5, 0xf3, 0x3d, 0x17, 0x78, 0xce, 0x26, 0xff, 0x72, 0x01, 0xce, 0x29, 0x1c, 0xca, + 0xee, 0xf3, 0x3f, 0x62, 0x55, 0x5d, 0x81, 0xb2, 0xaf, 0x04, 0x51, 0x96, 0x29, 0x01, 0x4a, 0xc4, + 0x50, 0x09, 0x0e, 0xe5, 0xda, 0xfc, 0x44, 0x5a, 0x34, 0xae, 0x4b, 0x68, 0x85, 0x34, 0x76, 0x09, + 0x8a, 0x1d, 0xcf, 0x15, 0x77, 0xc6, 0xc7, 0xe4, 0x68, 0xdf, 0xaa, 0x56, 0x0e, 0x0f, 0xe6, 0x1f, + 0xcf, 0xd3, 0x0e, 0xd0, 0xcb, 0x2a, 0x5a, 0xb8, 0x55, 0xad, 0x60, 0x5a, 0x19, 0x2d, 0xc2, 0x94, + 0x54, 0x80, 0xdc, 0xa6, 0x1c, 0x54, 0xe0, 0x8b, 0xab, 0x45, 0x89, 0x59, 0xb1, 0x09, 0xc6, 0x69, + 0x7c, 0x54, 0x81, 0xe9, 0xdd, 0xce, 0x26, 0x69, 0x92, 0x98, 0x7f, 0xf0, 0x75, 0xc2, 0x85, 0x90, + 0xe5, 0xe4, 0xb1, 0x75, 0x3d, 0x05, 0xc7, 0x5d, 0x35, 0xec, 0x3f, 0x67, 0x47, 0xbc, 0x18, 0xbd, + 0x5a, 0x18, 0xd0, 0x85, 0x45, 0xa9, 0x7f, 0x2d, 0x97, 0xf3, 0x20, 0xab, 0xe2, 0x3a, 0xd9, 0xdf, + 0x08, 0x28, 0xb3, 0x9d, 0xbd, 0x2a, 0x8c, 0x35, 0x3f, 0xd4, 0x73, 0xcd, 0xff, 0x7c, 0x01, 0xce, + 0xa8, 0x11, 0x30, 0xf8, 0xba, 0xbf, 0xe8, 0x63, 0xf0, 0x1c, 0x8c, 0xb9, 0x64, 0xcb, 0xe9, 0x34, + 0x63, 0x25, 0x11, 0x1f, 0xe6, 0x5a, 0x91, 0x4a, 0x52, 0x8c, 0x75, 0x9c, 0x23, 0x0c, 0xdb, 0xff, + 0x1a, 0x63, 0x77, 0x6b, 0xec, 0xd0, 0x35, 0xae, 0x76, 0x8d, 0x95, 0xbb, 0x6b, 0x9e, 0x80, 0x61, + 0xaf, 0x45, 0x79, 0xad, 0x82, 0xc9, 0x42, 0x55, 0x69, 0x21, 0xe6, 0x30, 0xf4, 0x11, 0x18, 0x6d, + 0x04, 0xad, 0x96, 0xe3, 0xbb, 0xec, 0xca, 0x2b, 0x2f, 0x8d, 0x51, 0x76, 0x6c, 0x99, 0x17, 0x61, + 0x09, 0x43, 0x8f, 0xc1, 0x90, 0x13, 0x6e, 0x73, 0xb1, 0x44, 0x79, 0xa9, 0x44, 0x5b, 0x5a, 0x0c, + 0xb7, 0x23, 0xcc, 0x4a, 0xe9, 0xab, 0xea, 0x6e, 0x10, 0xee, 0x7a, 0xfe, 0x76, 0xc5, 0x0b, 0xc5, + 0x96, 0x50, 0x77, 0xe1, 0x1d, 0x05, 0xc1, 0x1a, 0x16, 0x5a, 0x85, 0xe1, 0x76, 0x10, 0xc6, 0xd1, + 0xec, 0x08, 0x1b, 0xee, 0xc7, 0x73, 0x0e, 0x22, 0xfe, 0xb5, 0xb5, 0x20, 0x8c, 0x93, 0x0f, 0xa0, + 0xff, 0x22, 0xcc, 0xab, 0xa3, 0x1b, 0x30, 0x4a, 0xfc, 0xbd, 0xd5, 0x30, 0x68, 0xcd, 0x9e, 0xca, + 0xa7, 0xb4, 0xc2, 0x51, 0xf8, 0x32, 0x4b, 0xd8, 0x4e, 0x51, 0x8c, 0x25, 0x09, 0xf4, 0x0d, 0x50, + 0x24, 0xfe, 0xde, 0xec, 0x28, 0xa3, 0x34, 0x97, 0x43, 0xe9, 0xb6, 0x13, 0x26, 0x67, 0xfe, 0x8a, + 0xbf, 0x87, 0x69, 0x1d, 0xf4, 0x19, 0x28, 0xcb, 0x03, 0x23, 0x12, 0xf2, 0xb7, 0xcc, 0x05, 0x2b, + 0x8f, 0x19, 0x4c, 0xde, 0xe9, 0x78, 0x21, 0x69, 0x11, 0x3f, 0x8e, 0x92, 0x13, 0x52, 0x42, 0x23, + 0x9c, 0x50, 0x43, 0x9f, 0x91, 0x42, 0xdf, 0xb5, 0xa0, 0xe3, 0xc7, 0xd1, 0x6c, 0x99, 0x75, 0x2f, + 0x53, 0x1d, 0x77, 0x3b, 0xc1, 0x4b, 0x4b, 0x85, 0x79, 0x65, 0x6c, 0x90, 0x42, 0x9f, 0x85, 0x09, + 0xfe, 0x9f, 0x2b, 0xb5, 0xa2, 0xd9, 0x33, 0x8c, 0xf6, 0xc5, 0x7c, 0xda, 0x1c, 0x71, 0xe9, 0x8c, + 0x20, 0x3e, 0xa1, 0x97, 0x46, 0xd8, 0xa4, 0x86, 0x30, 0x4c, 0x34, 0xbd, 0x3d, 0xe2, 0x93, 0x28, + 0xaa, 0x85, 0xc1, 0x26, 0x99, 0x05, 0x36, 0x30, 0xe7, 0xb2, 0x95, 0x60, 0xc1, 0x26, 0x59, 0x9a, + 0xa1, 0x34, 0x6f, 0xe8, 0x75, 0xb0, 0x49, 0x02, 0xdd, 0x82, 0x49, 0xfa, 0x08, 0xf3, 0x12, 0xa2, + 0x63, 0xfd, 0x88, 0xb2, 0xa7, 0x12, 0x36, 0x2a, 0xe1, 0x14, 0x11, 0x74, 0x13, 0xc6, 0xa3, 0xd8, + 0x09, 0xe3, 0x4e, 0x9b, 0x13, 0x3d, 0xdb, 0x8f, 0x28, 0xd3, 0xa1, 0xd6, 0xb5, 0x2a, 0xd8, 0x20, + 0x80, 0x5e, 0x87, 0x72, 0xd3, 0xdb, 0x22, 0x8d, 0xfd, 0x46, 0x93, 0xcc, 0x8e, 0x33, 0x6a, 0x99, + 0x87, 0xca, 0x0d, 0x89, 0xc4, 0x5f, 0x85, 0xea, 0x2f, 0x4e, 0xaa, 0xa3, 0xdb, 0x70, 0x36, 0x26, + 0x61, 0xcb, 0xf3, 0x1d, 0x7a, 0x18, 0x88, 0xd7, 0x12, 0xd3, 0x4d, 0x4e, 0xb0, 0xdd, 0x76, 0x41, + 0xcc, 0xc6, 0xd9, 0x8d, 0x4c, 0x2c, 0x9c, 0x53, 0x1b, 0xdd, 0x83, 0xd9, 0x0c, 0x48, 0xd0, 0xf4, + 0x1a, 0xfb, 0xb3, 0xa7, 0x19, 0xe5, 0x4f, 0x0a, 0xca, 0xb3, 0x1b, 0x39, 0x78, 0x87, 0x3d, 0x60, + 0x38, 0x97, 0x3a, 0xba, 0x09, 0x53, 0xec, 0x04, 0xaa, 0x75, 0x9a, 0x4d, 0xd1, 0xe0, 0x24, 0x6b, + 0xf0, 0x23, 0xf2, 0x3e, 0xae, 0x9a, 0xe0, 0xc3, 0x83, 0x79, 0x48, 0xfe, 0xe1, 0x74, 0x6d, 0xb4, + 0xc9, 0xd4, 0x60, 0x9d, 0xd0, 0x8b, 0xf7, 0xe9, 0xb9, 0x41, 0xee, 0xc5, 0xb3, 0x53, 0x3d, 0x45, + 0x10, 0x3a, 0xaa, 0xd2, 0x95, 0xe9, 0x85, 0x38, 0x4d, 0x90, 0x1e, 0xa9, 0x51, 0xec, 0x7a, 0xfe, + 0xec, 0x34, 0x3b, 0xa9, 0xd5, 0x89, 0x54, 0xa7, 0x85, 0x98, 0xc3, 0x98, 0x0a, 0x8c, 0xfe, 0xb8, + 0x49, 0x6f, 0xae, 0x19, 0x86, 0x98, 0xa8, 0xc0, 0x24, 0x00, 0x27, 0x38, 0x94, 0x99, 0x8c, 0xe3, + 0xfd, 0x59, 0xc4, 0x50, 0xd5, 0xc1, 0xb2, 0xb1, 0xf1, 0x19, 0x4c, 0xcb, 0xed, 0x4d, 0x98, 0x54, + 0x07, 0x21, 0x1b, 0x13, 0x34, 0x0f, 0xc3, 0x8c, 0x7d, 0x12, 0x02, 0xb3, 0x32, 0xed, 0x02, 0x63, + 0xad, 0x30, 0x2f, 0x67, 0x5d, 0xf0, 0xde, 0x25, 0x4b, 0xfb, 0x31, 0xe1, 0xcf, 0xf4, 0xa2, 0xd6, + 0x05, 0x09, 0xc0, 0x09, 0x8e, 0xfd, 0x7f, 0x39, 0x1b, 0x9a, 0x9c, 0xb6, 0x03, 0xdc, 0x2f, 0xcf, + 0x40, 0x69, 0x27, 0x88, 0x62, 0x8a, 0xcd, 0xda, 0x18, 0x4e, 0x18, 0xcf, 0x6b, 0xa2, 0x1c, 0x2b, + 0x0c, 0xf4, 0x2a, 0x4c, 0x34, 0xf4, 0x06, 0xc4, 0xe5, 0xa8, 0x8e, 0x11, 0xa3, 0x75, 0x6c, 0xe2, + 0xa2, 0x57, 0xa0, 0xc4, 0xcc, 0x3a, 0x1a, 0x41, 0x53, 0x70, 0x6d, 0xf2, 0x86, 0x2f, 0xd5, 0x44, + 0xf9, 0xa1, 0xf6, 0x1b, 0x2b, 0x6c, 0x74, 0x09, 0x46, 0x68, 0x17, 0xaa, 0x35, 0x71, 0x2d, 0x29, + 0xd9, 0xcf, 0x35, 0x56, 0x8a, 0x05, 0xd4, 0xfe, 0xab, 0x05, 0x6d, 0x94, 0xe9, 0x13, 0x97, 0xa0, + 0x1a, 0x8c, 0xde, 0x75, 0xbc, 0xd8, 0xf3, 0xb7, 0x05, 0xff, 0xf1, 0x54, 0xcf, 0x3b, 0x8a, 0x55, + 0xba, 0xc3, 0x2b, 0xf0, 0x5b, 0x54, 0xfc, 0xc1, 0x92, 0x0c, 0xa5, 0x18, 0x76, 0x7c, 0x9f, 0x52, + 0x2c, 0x0c, 0x4a, 0x11, 0xf3, 0x0a, 0x9c, 0xa2, 0xf8, 0x83, 0x25, 0x19, 0xf4, 0x16, 0x80, 0xdc, + 0x61, 0xc4, 0x15, 0xe6, 0x14, 0xcf, 0xf4, 0x27, 0xba, 0xa1, 0xea, 0x2c, 0x4d, 0xd2, 0x3b, 0x3a, + 0xf9, 0x8f, 0x35, 0x7a, 0x76, 0xcc, 0xf8, 0xb4, 0xee, 0xce, 0xa0, 0x6f, 0xa6, 0x4b, 0xdc, 0x09, + 0x63, 0xe2, 0x2e, 0xc6, 0x62, 0x70, 0x3e, 0x3a, 0xd8, 0x23, 0x65, 0xc3, 0x6b, 0x11, 0x7d, 0x3b, + 0x08, 0x22, 0x38, 0xa1, 0x67, 0xff, 0x62, 0x11, 0x66, 0xf3, 0xba, 0x4b, 0x17, 0x1d, 0xb9, 0xe7, + 0xc5, 0xcb, 0x94, 0xbd, 0xb2, 0xcc, 0x45, 0xb7, 0x22, 0xca, 0xb1, 0xc2, 0xa0, 0xb3, 0x1f, 0x79, + 0xdb, 0xf2, 0x8d, 0x39, 0x9c, 0xcc, 0x7e, 0x9d, 0x95, 0x62, 0x01, 0xa5, 0x78, 0x21, 0x71, 0x22, + 0x61, 0xaf, 0xa3, 0xad, 0x12, 0xcc, 0x4a, 0xb1, 0x80, 0xea, 0x02, 0xac, 0xa1, 0x3e, 0x02, 0x2c, + 0x63, 0x88, 0x86, 0x8f, 0x77, 0x88, 0xd0, 0xe7, 0x00, 0xb6, 0x3c, 0xdf, 0x8b, 0x76, 0x18, 0xf5, + 0x91, 0x23, 0x53, 0x57, 0xcc, 0xd9, 0xaa, 0xa2, 0x82, 0x35, 0x8a, 0xe8, 0x25, 0x18, 0x53, 0x1b, + 0xb0, 0x5a, 0x61, 0xca, 0x4b, 0xcd, 0x18, 0x24, 0x39, 0x8d, 0x2a, 0x58, 0xc7, 0xb3, 0xdf, 0x4e, + 0xaf, 0x17, 0xb1, 0x03, 0xb4, 0xf1, 0xb5, 0x06, 0x1d, 0xdf, 0x42, 0xef, 0xf1, 0xb5, 0xbf, 0x5a, + 0x84, 0x29, 0xa3, 0xb1, 0x4e, 0x34, 0xc0, 0x99, 0x75, 0x95, 0x1e, 0xe0, 0x4e, 0x4c, 0xc4, 0xfe, + 0xb3, 0xfb, 0x6f, 0x15, 0xfd, 0x90, 0xa7, 0x3b, 0x80, 0xd7, 0x47, 0x9f, 0x83, 0x72, 0xd3, 0x89, + 0x98, 0x30, 0x8c, 0x88, 0x7d, 0x37, 0x08, 0xb1, 0xe4, 0x61, 0xe2, 0x44, 0xb1, 0x76, 0x6b, 0x72, + 0xda, 0x09, 0x49, 0x7a, 0xd3, 0x50, 0xfe, 0x44, 0x1a, 0x84, 0xa9, 0x4e, 0x50, 0x26, 0x66, 0x1f, + 0x73, 0x18, 0x7a, 0x05, 0xc6, 0x43, 0xc2, 0x56, 0xc5, 0x32, 0xe5, 0xe6, 0xd8, 0x32, 0x1b, 0x4e, + 0xd8, 0x3e, 0xac, 0xc1, 0xb0, 0x81, 0x99, 0xbc, 0x0d, 0x46, 0x7a, 0xbc, 0x0d, 0x9e, 0x82, 0x51, + 0xf6, 0x43, 0xad, 0x00, 0x35, 0x1b, 0x55, 0x5e, 0x8c, 0x25, 0x3c, 0xbd, 0x60, 0x4a, 0x83, 0x2d, + 0x18, 0xfa, 0xfa, 0x10, 0x8b, 0x9a, 0x29, 0x8e, 0x4b, 0xfc, 0x94, 0x13, 0x4b, 0x1e, 0x4b, 0x98, + 0xfd, 0x51, 0x98, 0xac, 0x38, 0xa4, 0x15, 0xf8, 0x2b, 0xbe, 0xdb, 0x0e, 0x3c, 0x3f, 0x46, 0xb3, + 0x30, 0xc4, 0x2e, 0x11, 0x7e, 0x04, 0x0c, 0xd1, 0x86, 0xf0, 0x10, 0x7d, 0x10, 0xd8, 0xdb, 0x70, + 0xa6, 0x12, 0xdc, 0xf5, 0xef, 0x3a, 0xa1, 0xbb, 0x58, 0xab, 0x6a, 0xef, 0xeb, 0x75, 0xf9, 0xbe, + 0xe3, 0x76, 0x58, 0x99, 0x47, 0xaf, 0x56, 0x93, 0xb3, 0xb5, 0xab, 0x5e, 0x93, 0xe4, 0x48, 0x41, + 0xfe, 0x46, 0xc1, 0x68, 0x29, 0xc1, 0x57, 0x8a, 0x2a, 0x2b, 0x57, 0x51, 0xf5, 0x06, 0x94, 0xb6, + 0x3c, 0xd2, 0x74, 0x31, 0xd9, 0x12, 0x2b, 0xf1, 0xc9, 0x7c, 0xd3, 0x92, 0x55, 0x8a, 0x29, 0xa5, + 0x5e, 0xfc, 0x75, 0xb8, 0x2a, 0x2a, 0x63, 0x45, 0x06, 0xed, 0xc2, 0xb4, 0x7c, 0x30, 0x48, 0xa8, + 0x58, 0x97, 0x4f, 0xf5, 0x7a, 0x85, 0x98, 0xc4, 0x4f, 0xdf, 0x3f, 0x98, 0x9f, 0xc6, 0x29, 0x32, + 0xb8, 0x8b, 0x30, 0x7d, 0x0e, 0xb6, 0xe8, 0x09, 0x3c, 0xc4, 0x86, 0x9f, 0x3d, 0x07, 0xd9, 0xcb, + 0x96, 0x95, 0xda, 0x3f, 0x62, 0xc1, 0x23, 0x5d, 0x23, 0x23, 0x5e, 0xf8, 0xc7, 0x3c, 0x0b, 0xe9, + 0x17, 0x77, 0xa1, 0xff, 0x8b, 0xdb, 0xfe, 0x19, 0x0b, 0x4e, 0xaf, 0xb4, 0xda, 0xf1, 0x7e, 0xc5, + 0x33, 0xb5, 0x4a, 0x2f, 0xc3, 0x48, 0x8b, 0xb8, 0x5e, 0xa7, 0x25, 0x66, 0x6e, 0x5e, 0x9e, 0x52, + 0x6b, 0xac, 0xf4, 0xf0, 0x60, 0x7e, 0xa2, 0x1e, 0x07, 0xa1, 0xb3, 0x4d, 0x78, 0x01, 0x16, 0xe8, + 0xec, 0xac, 0xf7, 0xde, 0x25, 0x37, 0xbc, 0x96, 0x27, 0x4d, 0x85, 0x7a, 0xca, 0xec, 0x16, 0xe4, + 0x80, 0x2e, 0xbc, 0xd1, 0x71, 0xfc, 0xd8, 0x8b, 0xf7, 0x85, 0x42, 0x48, 0x12, 0xc1, 0x09, 0x3d, + 0xfb, 0x2b, 0x16, 0x4c, 0xc9, 0x75, 0xbf, 0xe8, 0xba, 0x21, 0x89, 0x22, 0x34, 0x07, 0x05, 0xaf, + 0x2d, 0x7a, 0x09, 0xa2, 0x97, 0x85, 0x6a, 0x0d, 0x17, 0xbc, 0xb6, 0x64, 0xcb, 0xd8, 0x41, 0x58, + 0x34, 0x75, 0x63, 0xd7, 0x44, 0x39, 0x56, 0x18, 0xe8, 0x32, 0x94, 0xfc, 0xc0, 0xe5, 0xe6, 0x5a, + 0xfc, 0x4a, 0x63, 0x0b, 0x6c, 0x5d, 0x94, 0x61, 0x05, 0x45, 0x35, 0x28, 0x73, 0x4b, 0xa6, 0x64, + 0xd1, 0x0e, 0x64, 0x0f, 0xc5, 0xbe, 0x6c, 0x43, 0xd6, 0xc4, 0x09, 0x11, 0xfb, 0xfb, 0x2d, 0x18, + 0x97, 0x5f, 0x36, 0x20, 0xcf, 0x49, 0xb7, 0x56, 0xc2, 0x6f, 0x26, 0x5b, 0x8b, 0xf2, 0x8c, 0x0c, + 0x62, 0xb0, 0x8a, 0xc5, 0xa3, 0xb0, 0x8a, 0xf6, 0x0f, 0x17, 0x60, 0x52, 0x76, 0xa7, 0xde, 0xd9, + 0x8c, 0x48, 0x8c, 0x36, 0xa0, 0xec, 0xf0, 0x21, 0x27, 0x72, 0xc5, 0x3e, 0x91, 0x2d, 0x14, 0x30, + 0xe6, 0x27, 0xb9, 0xbd, 0x17, 0x65, 0x6d, 0x9c, 0x10, 0x42, 0x4d, 0x98, 0xf1, 0x83, 0x98, 0x9d, + 0xe4, 0x0a, 0xde, 0x4b, 0xf5, 0x92, 0xa6, 0x7e, 0x4e, 0x50, 0x9f, 0x59, 0x4f, 0x53, 0xc1, 0xdd, + 0x84, 0xd1, 0x8a, 0x14, 0xb4, 0x14, 0xf3, 0x5f, 0xf6, 0xfa, 0x2c, 0x64, 0xcb, 0x59, 0xec, 0x5f, + 0xb1, 0xa0, 0x2c, 0xd1, 0x4e, 0x42, 0xcb, 0xb6, 0x06, 0xa3, 0x11, 0x9b, 0x04, 0x39, 0x34, 0x76, + 0xaf, 0x8e, 0xf3, 0xf9, 0x4a, 0x2e, 0x28, 0xfe, 0x3f, 0xc2, 0x92, 0x06, 0x93, 0xb3, 0xab, 0xee, + 0xbf, 0x4f, 0xe4, 0xec, 0xaa, 0x3f, 0x39, 0x37, 0xcc, 0x1f, 0xb0, 0x3e, 0x6b, 0x82, 0x2b, 0xca, + 0x47, 0xb5, 0x43, 0xb2, 0xe5, 0xdd, 0x4b, 0xf3, 0x51, 0x35, 0x56, 0x8a, 0x05, 0x14, 0xbd, 0x05, + 0xe3, 0x0d, 0x29, 0x60, 0x4d, 0xb6, 0xeb, 0xa5, 0x9e, 0xc2, 0x7e, 0xa5, 0x17, 0xe2, 0x82, 0x8d, + 0x65, 0xad, 0x3e, 0x36, 0xa8, 0x99, 0x6a, 0xfe, 0x62, 0x3f, 0x35, 0x7f, 0x42, 0x37, 0x5f, 0xe9, + 0xfd, 0xa3, 0x16, 0x8c, 0x70, 0xc1, 0xda, 0x60, 0x72, 0x4d, 0x4d, 0x4d, 0x96, 0x8c, 0xdd, 0x6d, + 0x5a, 0x28, 0xd4, 0x5e, 0x68, 0x0d, 0xca, 0xec, 0x07, 0x13, 0x0c, 0x16, 0xf3, 0xad, 0xe2, 0x79, + 0xab, 0x7a, 0x07, 0x6f, 0xcb, 0x6a, 0x38, 0xa1, 0x60, 0xff, 0x60, 0x91, 0x1e, 0x55, 0x09, 0xaa, + 0x71, 0x83, 0x5b, 0x0f, 0xef, 0x06, 0x2f, 0x3c, 0xac, 0x1b, 0x7c, 0x1b, 0xa6, 0x1a, 0x9a, 0x52, + 0x2d, 0x99, 0xc9, 0xcb, 0x3d, 0x17, 0x89, 0xa6, 0x7f, 0xe3, 0x22, 0x93, 0x65, 0x93, 0x08, 0x4e, + 0x53, 0x45, 0xdf, 0x0c, 0xe3, 0x7c, 0x9e, 0x45, 0x2b, 0xdc, 0x52, 0xe2, 0x23, 0xf9, 0xeb, 0x45, + 0x6f, 0x82, 0x8b, 0xd8, 0xb4, 0xea, 0xd8, 0x20, 0x66, 0xff, 0xb1, 0x05, 0x68, 0xa5, 0xbd, 0x43, + 0x5a, 0x24, 0x74, 0x9a, 0x89, 0x6c, 0xfc, 0x2f, 0x5b, 0x30, 0x4b, 0xba, 0x8a, 0x97, 0x83, 0x56, + 0x4b, 0xbc, 0x40, 0x72, 0x1e, 0xc9, 0x2b, 0x39, 0x75, 0x94, 0xdb, 0xc0, 0x6c, 0x1e, 0x06, 0xce, + 0x6d, 0x0f, 0xad, 0xc1, 0x29, 0x7e, 0xe5, 0x29, 0x80, 0x66, 0x1b, 0xfd, 0xa8, 0x20, 0x7c, 0x6a, + 0xa3, 0x1b, 0x05, 0x67, 0xd5, 0xb3, 0xbf, 0x73, 0x1c, 0x72, 0x7b, 0xf1, 0x81, 0x52, 0xe0, 0x03, + 0xa5, 0xc0, 0x07, 0x4a, 0x81, 0x0f, 0x94, 0x02, 0x1f, 0x28, 0x05, 0xbe, 0xee, 0x95, 0x02, 0x7f, + 0x68, 0xc1, 0xa9, 0xee, 0x6b, 0xe0, 0x24, 0x18, 0xf3, 0x0e, 0x9c, 0xea, 0xbe, 0xeb, 0x7a, 0xda, + 0xc1, 0x75, 0xf7, 0x33, 0xb9, 0xf7, 0x32, 0xbe, 0x01, 0x67, 0xd1, 0xb7, 0x7f, 0xb1, 0x04, 0xc3, + 0x2b, 0x7b, 0xc4, 0x8f, 0x4f, 0xe0, 0x13, 0x1b, 0x30, 0xe9, 0xf9, 0x7b, 0x41, 0x73, 0x8f, 0xb8, + 0x1c, 0x7e, 0x94, 0xf7, 0xee, 0x59, 0x41, 0x7a, 0xb2, 0x6a, 0x90, 0xc0, 0x29, 0x92, 0x0f, 0x43, + 0xe6, 0x7c, 0x15, 0x46, 0xf8, 0xed, 0x20, 0x04, 0xce, 0x99, 0x97, 0x01, 0x1b, 0x44, 0x71, 0xe7, + 0x25, 0xf2, 0x70, 0x7e, 0xfb, 0x88, 0xea, 0xe8, 0x6d, 0x98, 0xdc, 0xf2, 0xc2, 0x28, 0xde, 0xf0, + 0x5a, 0x24, 0x8a, 0x9d, 0x56, 0xfb, 0x01, 0x64, 0xcc, 0x6a, 0x1c, 0x56, 0x0d, 0x4a, 0x38, 0x45, + 0x19, 0x6d, 0xc3, 0x44, 0xd3, 0xd1, 0x9b, 0x1a, 0x3d, 0x72, 0x53, 0xea, 0xda, 0xb9, 0xa1, 0x13, + 0xc2, 0x26, 0x5d, 0xba, 0x4f, 0x1b, 0x4c, 0x4c, 0x5a, 0x62, 0xc2, 0x03, 0xb5, 0x4f, 0xb9, 0x7c, + 0x94, 0xc3, 0x28, 0x07, 0xc5, 0x2c, 0x63, 0xcb, 0x26, 0x07, 0xa5, 0xd9, 0xbf, 0x7e, 0x1e, 0xca, + 0x84, 0x0e, 0x21, 0x25, 0x2c, 0x6e, 0xae, 0x2b, 0x83, 0xf5, 0x75, 0xcd, 0x6b, 0x84, 0x81, 0x29, + 0xdd, 0x5f, 0x91, 0x94, 0x70, 0x42, 0x14, 0x2d, 0xc3, 0x48, 0x44, 0x42, 0x8f, 0x44, 0xe2, 0x0e, + 0xeb, 0x31, 0x8d, 0x0c, 0x8d, 0x3b, 0x95, 0xf0, 0xdf, 0x58, 0x54, 0xa5, 0xcb, 0xcb, 0x61, 0x82, + 0x4f, 0x76, 0xcb, 0x68, 0xcb, 0x6b, 0x91, 0x95, 0x62, 0x01, 0x45, 0xaf, 0xc3, 0x68, 0x48, 0x9a, + 0x4c, 0x7d, 0x34, 0x31, 0xf8, 0x22, 0xe7, 0xda, 0x28, 0x5e, 0x0f, 0x4b, 0x02, 0xe8, 0x3a, 0xa0, + 0x90, 0x50, 0x0e, 0xcc, 0xf3, 0xb7, 0x95, 0xbd, 0xa8, 0x38, 0xc1, 0xd5, 0x8e, 0xc7, 0x09, 0x86, + 0xf4, 0xef, 0xc1, 0x19, 0xd5, 0xd0, 0x55, 0x98, 0x51, 0xa5, 0x55, 0x3f, 0x8a, 0x1d, 0x7a, 0x72, + 0x4e, 0x31, 0x5a, 0x4a, 0x00, 0x82, 0xd3, 0x08, 0xb8, 0xbb, 0x8e, 0xfd, 0x53, 0x16, 0xf0, 0x71, + 0x3e, 0x81, 0x67, 0xff, 0x6b, 0xe6, 0xb3, 0xff, 0x5c, 0xee, 0xcc, 0xe5, 0x3c, 0xf9, 0xef, 0x5b, + 0x30, 0xa6, 0xcd, 0x6c, 0xb2, 0x66, 0xad, 0x1e, 0x6b, 0xb6, 0x03, 0xd3, 0x74, 0xa5, 0xdf, 0xdc, + 0x8c, 0x48, 0xb8, 0x47, 0x5c, 0xb6, 0x30, 0x0b, 0x0f, 0xb6, 0x30, 0x95, 0x21, 0xdb, 0x8d, 0x14, + 0x41, 0xdc, 0xd5, 0x04, 0x7a, 0x59, 0xea, 0x52, 0x8a, 0x86, 0x1d, 0x38, 0xd7, 0x93, 0x1c, 0x1e, + 0xcc, 0x4f, 0x6b, 0x1f, 0xa2, 0xeb, 0x4e, 0xec, 0xcf, 0xcb, 0x6f, 0x54, 0x06, 0x83, 0x0d, 0xb5, + 0x58, 0x52, 0x06, 0x83, 0x6a, 0x39, 0xe0, 0x04, 0x87, 0xee, 0xd1, 0x9d, 0x20, 0x8a, 0xd3, 0x06, + 0x83, 0xd7, 0x82, 0x28, 0xc6, 0x0c, 0x62, 0xbf, 0x00, 0xb0, 0x72, 0x8f, 0x34, 0xf8, 0x52, 0xd7, + 0x9f, 0x33, 0x56, 0xfe, 0x73, 0xc6, 0xfe, 0x0f, 0x16, 0x4c, 0xae, 0x2e, 0x1b, 0x12, 0xe1, 0x05, + 0x00, 0xfe, 0x06, 0xbb, 0x73, 0x67, 0x5d, 0x6a, 0xdb, 0xb9, 0xc2, 0x54, 0x95, 0x62, 0x0d, 0x03, + 0x9d, 0x83, 0x62, 0xb3, 0xe3, 0x0b, 0xe9, 0xe4, 0x28, 0xbd, 0xb0, 0x6f, 0x74, 0x7c, 0x4c, 0xcb, + 0x34, 0x27, 0x84, 0xe2, 0xc0, 0x4e, 0x08, 0x7d, 0x83, 0x01, 0xa0, 0x79, 0x18, 0xbe, 0x7b, 0xd7, + 0x73, 0xb9, 0xcb, 0xa5, 0xb0, 0x04, 0xb8, 0x73, 0xa7, 0x5a, 0x89, 0x30, 0x2f, 0xb7, 0xbf, 0x54, + 0x84, 0xb9, 0xd5, 0x26, 0xb9, 0xf7, 0x1e, 0xdd, 0x4e, 0x07, 0x75, 0xa1, 0x38, 0x9a, 0x68, 0xe8, + 0xa8, 0x6e, 0x32, 0xfd, 0xc7, 0x63, 0x0b, 0x46, 0xb9, 0xbd, 0x9c, 0x74, 0x42, 0x7d, 0x35, 0xab, + 0xf5, 0xfc, 0x01, 0x59, 0xe0, 0x76, 0x77, 0xc2, 0x87, 0x4e, 0xdd, 0xb4, 0xa2, 0x14, 0x4b, 0xe2, + 0x73, 0x9f, 0x80, 0x71, 0x1d, 0xf3, 0x48, 0x0e, 0x6b, 0x7f, 0xa9, 0x08, 0xd3, 0xb4, 0x07, 0x0f, + 0x75, 0x22, 0x6e, 0x75, 0x4f, 0xc4, 0x71, 0x3b, 0x2d, 0xf5, 0x9f, 0x8d, 0xb7, 0xd2, 0xb3, 0xf1, + 0x5c, 0xde, 0x6c, 0x9c, 0xf4, 0x1c, 0x7c, 0x87, 0x05, 0xa7, 0x56, 0x9b, 0x41, 0x63, 0x37, 0xe5, + 0x58, 0xf4, 0x12, 0x8c, 0xd1, 0x73, 0x3c, 0x32, 0x7c, 0xde, 0x8d, 0x28, 0x08, 0x02, 0x84, 0x75, + 0x3c, 0xad, 0xda, 0xad, 0x5b, 0xd5, 0x4a, 0x56, 0xf0, 0x04, 0x01, 0xc2, 0x3a, 0x9e, 0xfd, 0x9b, + 0x16, 0x9c, 0xbf, 0xba, 0xbc, 0x92, 0x2c, 0xc5, 0xae, 0xf8, 0x0d, 0x97, 0x60, 0xa4, 0xed, 0x6a, + 0x5d, 0x49, 0x04, 0xbe, 0x15, 0xd6, 0x0b, 0x01, 0x7d, 0xbf, 0xc4, 0x26, 0xf9, 0x49, 0x0b, 0x4e, + 0x5d, 0xf5, 0x62, 0x7a, 0x2d, 0xa7, 0x23, 0x09, 0xd0, 0x7b, 0x39, 0xf2, 0xe2, 0x20, 0xdc, 0x4f, + 0x47, 0x12, 0xc0, 0x0a, 0x82, 0x35, 0x2c, 0xde, 0xf2, 0x9e, 0xc7, 0x2c, 0xb5, 0x0b, 0xa6, 0x1e, + 0x0b, 0x8b, 0x72, 0xac, 0x30, 0xe8, 0x87, 0xb9, 0x5e, 0xc8, 0xa4, 0x86, 0xfb, 0xe2, 0x84, 0x55, + 0x1f, 0x56, 0x91, 0x00, 0x9c, 0xe0, 0xd0, 0x07, 0xd4, 0xfc, 0xd5, 0x66, 0x27, 0x8a, 0x49, 0xb8, + 0x15, 0xe5, 0x9c, 0x8e, 0x2f, 0x40, 0x99, 0x48, 0x19, 0xbd, 0xe8, 0xb5, 0x62, 0x35, 0x95, 0xf0, + 0x9e, 0x07, 0x34, 0x50, 0x78, 0x03, 0xb8, 0x29, 0x1e, 0xcd, 0xcf, 0x6c, 0x15, 0x10, 0xd1, 0xdb, + 0xd2, 0x23, 0x3c, 0x30, 0x57, 0xf1, 0x95, 0x2e, 0x28, 0xce, 0xa8, 0x61, 0xff, 0x88, 0x05, 0x67, + 0xd4, 0x07, 0xbf, 0xef, 0x3e, 0xd3, 0xfe, 0xb9, 0x02, 0x4c, 0x5c, 0xdb, 0xd8, 0xa8, 0x5d, 0x25, + 0xb1, 0xb8, 0xb6, 0xfb, 0xab, 0xd1, 0xb1, 0xa6, 0x0d, 0xec, 0xf5, 0x0a, 0xec, 0xc4, 0x5e, 0x73, + 0x81, 0x07, 0x0a, 0x5a, 0xa8, 0xfa, 0xf1, 0xcd, 0xb0, 0x1e, 0x87, 0x9e, 0xbf, 0x9d, 0xa9, 0x3f, + 0x94, 0xcc, 0x45, 0x31, 0x8f, 0xb9, 0x40, 0x2f, 0xc0, 0x08, 0x8b, 0x54, 0x24, 0x27, 0xe1, 0x51, + 0xf5, 0x88, 0x62, 0xa5, 0x87, 0x07, 0xf3, 0xe5, 0x5b, 0xb8, 0xca, 0xff, 0x60, 0x81, 0x8a, 0x6e, + 0xc1, 0xd8, 0x4e, 0x1c, 0xb7, 0xaf, 0x11, 0xc7, 0xa5, 0xaf, 0x65, 0x7e, 0x1c, 0x5e, 0xc8, 0x3a, + 0x0e, 0xe9, 0x20, 0x70, 0xb4, 0xe4, 0x04, 0x49, 0xca, 0x22, 0xac, 0xd3, 0xb1, 0xeb, 0x00, 0x09, + 0xec, 0x98, 0x74, 0x27, 0xf6, 0xef, 0x5b, 0x30, 0xca, 0x83, 0x46, 0x84, 0xe8, 0x93, 0x30, 0x44, + 0xee, 0x91, 0x86, 0x60, 0x95, 0x33, 0x3b, 0x9c, 0x70, 0x5a, 0x5c, 0x06, 0x4c, 0xff, 0x63, 0x56, + 0x0b, 0x5d, 0x83, 0x51, 0xda, 0xdb, 0xab, 0x2a, 0x82, 0xc6, 0xe3, 0x79, 0x5f, 0xac, 0xa6, 0x9d, + 0x33, 0x67, 0xa2, 0x08, 0xcb, 0xea, 0x4c, 0xfb, 0xdc, 0x68, 0xd7, 0xe9, 0x89, 0x1d, 0xf7, 0x62, + 0x2c, 0x36, 0x96, 0x6b, 0x1c, 0x49, 0x50, 0xe3, 0xda, 0x67, 0x59, 0x88, 0x13, 0x22, 0xf6, 0x06, + 0x94, 0xe9, 0xa4, 0x2e, 0x36, 0x3d, 0xa7, 0xb7, 0x42, 0xfd, 0x69, 0x28, 0x4b, 0x75, 0x79, 0x24, + 0x9c, 0xc5, 0x19, 0x55, 0xa9, 0x4d, 0x8f, 0x70, 0x02, 0xb7, 0xb7, 0xe0, 0x34, 0x33, 0x7e, 0x74, + 0xe2, 0x1d, 0x63, 0x8f, 0xf5, 0x5f, 0xcc, 0xcf, 0x88, 0x97, 0x27, 0x9f, 0x99, 0x59, 0xcd, 0x1f, + 0x73, 0x5c, 0x52, 0x4c, 0x5e, 0xa1, 0xf6, 0x57, 0x87, 0xe0, 0xd1, 0x6a, 0x3d, 0x3f, 0x9e, 0xc8, + 0x2b, 0x30, 0xce, 0xf9, 0x52, 0xba, 0xb4, 0x9d, 0xa6, 0x68, 0x57, 0x09, 0x7f, 0x37, 0x34, 0x18, + 0x36, 0x30, 0xd1, 0x79, 0x28, 0x7a, 0xef, 0xf8, 0x69, 0xd7, 0xa6, 0xea, 0x1b, 0xeb, 0x98, 0x96, + 0x53, 0x30, 0x65, 0x71, 0xf9, 0xdd, 0xa1, 0xc0, 0x8a, 0xcd, 0x7d, 0x0d, 0x26, 0xbd, 0xa8, 0x11, + 0x79, 0x55, 0x9f, 0x9e, 0x33, 0xda, 0x49, 0xa5, 0xa4, 0x22, 0xb4, 0xd3, 0x0a, 0x8a, 0x53, 0xd8, + 0xda, 0x45, 0x36, 0x3c, 0x30, 0x9b, 0xdc, 0xd7, 0x7b, 0x9a, 0xbe, 0x00, 0xda, 0xec, 0xeb, 0x22, + 0x26, 0xc5, 0x17, 0x2f, 0x00, 0xfe, 0xc1, 0x11, 0x96, 0x30, 0xfa, 0xe4, 0x6c, 0xec, 0x38, 0xed, + 0xc5, 0x4e, 0xbc, 0x53, 0xf1, 0xa2, 0x46, 0xb0, 0x47, 0xc2, 0x7d, 0x26, 0x2d, 0x28, 0x25, 0x4f, + 0x4e, 0x05, 0x58, 0xbe, 0xb6, 0x58, 0xa3, 0x98, 0xb8, 0xbb, 0x0e, 0x5a, 0x84, 0x29, 0x59, 0x58, + 0x27, 0x11, 0xbb, 0xc2, 0xc6, 0x18, 0x19, 0xe5, 0x6c, 0x24, 0x8a, 0x15, 0x91, 0x34, 0xbe, 0xc9, + 0x49, 0xc3, 0x71, 0x70, 0xd2, 0x2f, 0xc3, 0x84, 0xe7, 0x7b, 0xb1, 0xe7, 0xc4, 0x01, 0x57, 0x41, + 0x71, 0xc1, 0x00, 0x93, 0xad, 0x57, 0x75, 0x00, 0x36, 0xf1, 0xec, 0xff, 0x36, 0x04, 0x33, 0x6c, + 0xda, 0x3e, 0x58, 0x61, 0x5f, 0x4f, 0x2b, 0xec, 0x56, 0xf7, 0x0a, 0x3b, 0x8e, 0x27, 0xc2, 0x03, + 0x2f, 0xb3, 0xb7, 0xa1, 0xac, 0xfc, 0xab, 0xa4, 0x83, 0xa5, 0x95, 0xe3, 0x60, 0xd9, 0x9f, 0xfb, + 0x90, 0x26, 0x6a, 0xc5, 0x4c, 0x13, 0xb5, 0xbf, 0x65, 0x41, 0xa2, 0x53, 0x41, 0xd7, 0xa0, 0xdc, + 0x0e, 0x98, 0xe5, 0x65, 0x28, 0xcd, 0x99, 0x1f, 0xcd, 0xbc, 0xa8, 0xf8, 0xa5, 0xc8, 0x3f, 0xbe, + 0x26, 0x6b, 0xe0, 0xa4, 0x32, 0x5a, 0x82, 0xd1, 0x76, 0x48, 0xea, 0x31, 0x0b, 0x2b, 0xd2, 0x97, + 0x0e, 0x5f, 0x23, 0x1c, 0x1f, 0xcb, 0x8a, 0xf6, 0xcf, 0x5b, 0x00, 0xdc, 0x0a, 0xcc, 0xf1, 0xb7, + 0xc9, 0x09, 0x88, 0xbb, 0x2b, 0x30, 0x14, 0xb5, 0x49, 0xa3, 0x97, 0x4d, 0x6c, 0xd2, 0x9f, 0x7a, + 0x9b, 0x34, 0x92, 0x01, 0xa7, 0xff, 0x30, 0xab, 0x6d, 0x7f, 0x17, 0xc0, 0x64, 0x82, 0x56, 0x8d, + 0x49, 0x0b, 0x3d, 0x6b, 0x84, 0x19, 0x38, 0x97, 0x0a, 0x33, 0x50, 0x66, 0xd8, 0x9a, 0x64, 0xf5, + 0x6d, 0x28, 0xb6, 0x9c, 0x7b, 0x42, 0x74, 0xf6, 0x74, 0xef, 0x6e, 0x50, 0xfa, 0x0b, 0x6b, 0xce, + 0x3d, 0xfe, 0x48, 0x7c, 0x5a, 0x2e, 0x90, 0x35, 0xe7, 0xde, 0x21, 0xb7, 0x7c, 0x65, 0x87, 0xd4, + 0x0d, 0x2f, 0x8a, 0xbf, 0xf0, 0x5f, 0x93, 0xff, 0x6c, 0xd9, 0xd1, 0x46, 0x58, 0x5b, 0x9e, 0x2f, + 0x6c, 0xa2, 0x06, 0x6a, 0xcb, 0xf3, 0xd3, 0x6d, 0x79, 0xfe, 0x00, 0x6d, 0x79, 0x3e, 0x7a, 0x17, + 0x46, 0x85, 0xfd, 0xa1, 0x08, 0xeb, 0x73, 0x65, 0x80, 0xf6, 0x84, 0xf9, 0x22, 0x6f, 0xf3, 0x8a, + 0x7c, 0x04, 0x8b, 0xd2, 0xbe, 0xed, 0xca, 0x06, 0xd1, 0x5f, 0xb7, 0x60, 0x52, 0xfc, 0xc6, 0xe4, + 0x9d, 0x0e, 0x89, 0x62, 0xc1, 0x7b, 0x7e, 0x7c, 0xf0, 0x3e, 0x88, 0x8a, 0xbc, 0x2b, 0x1f, 0x97, + 0xc7, 0xac, 0x09, 0xec, 0xdb, 0xa3, 0x54, 0x2f, 0xd0, 0x3f, 0xb0, 0xe0, 0x74, 0xcb, 0xb9, 0xc7, + 0x5b, 0xe4, 0x65, 0xd8, 0x89, 0xbd, 0x40, 0xa8, 0xfe, 0x3f, 0x39, 0xd8, 0xf4, 0x77, 0x55, 0xe7, + 0x9d, 0x94, 0xfa, 0xc9, 0xd3, 0x59, 0x28, 0x7d, 0xbb, 0x9a, 0xd9, 0xaf, 0xb9, 0x2d, 0x28, 0xc9, + 0xf5, 0x96, 0x21, 0x6a, 0xa8, 0xe8, 0x8c, 0xf5, 0x91, 0xcd, 0x3f, 0x75, 0x5f, 0x7f, 0xda, 0x8e, + 0x58, 0x6b, 0x0f, 0xb5, 0x9d, 0xb7, 0x61, 0x5c, 0x5f, 0x63, 0x0f, 0xb5, 0xad, 0x77, 0xe0, 0x54, + 0xc6, 0x5a, 0x7a, 0xa8, 0x4d, 0xde, 0x85, 0x73, 0xb9, 0xeb, 0xe3, 0x61, 0x36, 0x6c, 0xff, 0x9c, + 0xa5, 0x9f, 0x83, 0x27, 0xa0, 0x73, 0x58, 0x36, 0x75, 0x0e, 0x17, 0x7a, 0xef, 0x9c, 0x1c, 0xc5, + 0xc3, 0x5b, 0x7a, 0xa7, 0xe9, 0xa9, 0x8e, 0x5e, 0x87, 0x91, 0x26, 0x2d, 0x91, 0x86, 0xaf, 0x76, + 0xff, 0x1d, 0x99, 0xf0, 0x52, 0xac, 0x3c, 0xc2, 0x82, 0x82, 0xfd, 0x4b, 0x16, 0x0c, 0x9d, 0xc0, + 0x48, 0x60, 0x73, 0x24, 0x9e, 0xcd, 0x25, 0x2d, 0x22, 0x0e, 0x2f, 0x60, 0xe7, 0xee, 0xca, 0xbd, + 0x98, 0xf8, 0x11, 0x7b, 0x2a, 0x66, 0x0e, 0xcc, 0xb7, 0xc0, 0xa9, 0x1b, 0x81, 0xe3, 0x2e, 0x39, + 0x4d, 0xc7, 0x6f, 0x90, 0xb0, 0xea, 0x6f, 0x1f, 0xc9, 0x02, 0xbb, 0xd0, 0xcf, 0x02, 0xdb, 0xde, + 0x01, 0xa4, 0x37, 0x20, 0x5c, 0x59, 0x30, 0x8c, 0x7a, 0xbc, 0x29, 0x31, 0xfc, 0x4f, 0x66, 0xb3, + 0x66, 0x5d, 0x3d, 0xd3, 0x9c, 0x34, 0x78, 0x01, 0x96, 0x84, 0xec, 0x57, 0x20, 0xd3, 0x1f, 0xbe, + 0xbf, 0xd8, 0xc0, 0xfe, 0x0c, 0xcc, 0xb0, 0x9a, 0x47, 0x7c, 0xd2, 0xda, 0x29, 0xa9, 0x64, 0x46, + 0xf0, 0x3b, 0xfb, 0x8b, 0x16, 0x4c, 0xad, 0xa7, 0x62, 0x82, 0x5d, 0x62, 0x0a, 0xd0, 0x0c, 0x61, + 0x78, 0x9d, 0x95, 0x62, 0x01, 0x3d, 0x76, 0x19, 0xd4, 0x9f, 0x5b, 0x90, 0x84, 0xa8, 0x38, 0x01, + 0xc6, 0x6b, 0xd9, 0x60, 0xbc, 0x32, 0x65, 0x23, 0xaa, 0x3b, 0x79, 0x7c, 0x17, 0xba, 0xae, 0xe2, + 0x31, 0xf5, 0x10, 0x8b, 0x24, 0x64, 0x78, 0xf4, 0x9e, 0x49, 0x33, 0x68, 0x93, 0x8c, 0xd0, 0x64, + 0xff, 0xe7, 0x02, 0x20, 0x85, 0x3b, 0x70, 0xbc, 0xa8, 0xee, 0x1a, 0xc7, 0x13, 0x2f, 0x6a, 0x0f, + 0x10, 0x53, 0xe1, 0x87, 0x8e, 0x1f, 0x71, 0xb2, 0x9e, 0x90, 0xba, 0x1d, 0xcd, 0x3e, 0x60, 0x4e, + 0x34, 0x89, 0x6e, 0x74, 0x51, 0xc3, 0x19, 0x2d, 0x68, 0xa6, 0x19, 0xc3, 0x83, 0x9a, 0x66, 0x8c, + 0xf4, 0x71, 0x57, 0xfb, 0x59, 0x0b, 0x26, 0xd4, 0x30, 0xbd, 0x4f, 0xec, 0xcf, 0x55, 0x7f, 0x72, + 0x8e, 0xbe, 0x9a, 0xd6, 0x65, 0x76, 0x25, 0x7c, 0x23, 0x73, 0x3b, 0x74, 0x9a, 0xde, 0xbb, 0x44, + 0x45, 0xeb, 0x9b, 0x17, 0x6e, 0x84, 0xa2, 0xf4, 0xf0, 0x60, 0x7e, 0x42, 0xfd, 0xe3, 0xd1, 0x81, + 0x93, 0x2a, 0xf6, 0x8f, 0xd3, 0xcd, 0x6e, 0x2e, 0x45, 0xf4, 0x12, 0x0c, 0xb7, 0x77, 0x9c, 0x88, + 0xa4, 0x9c, 0x6e, 0x86, 0x6b, 0xb4, 0xf0, 0xf0, 0x60, 0x7e, 0x52, 0x55, 0x60, 0x25, 0x98, 0x63, + 0x0f, 0x1e, 0x85, 0xab, 0x7b, 0x71, 0xf6, 0x8d, 0xc2, 0xf5, 0xc7, 0x16, 0x0c, 0xad, 0x07, 0xee, + 0x49, 0x1c, 0x01, 0xaf, 0x19, 0x47, 0xc0, 0x63, 0x79, 0x81, 0xdb, 0x73, 0x77, 0xff, 0x6a, 0x6a, + 0xf7, 0x5f, 0xc8, 0xa5, 0xd0, 0x7b, 0xe3, 0xb7, 0x60, 0x8c, 0x85, 0x83, 0x17, 0x0e, 0x46, 0x2f, + 0x18, 0x1b, 0x7e, 0x3e, 0xb5, 0xe1, 0xa7, 0x34, 0x54, 0x6d, 0xa7, 0x3f, 0x05, 0xa3, 0xc2, 0xc9, + 0x25, 0xed, 0xbd, 0x29, 0x70, 0xb1, 0x84, 0xdb, 0x3f, 0x5a, 0x04, 0x23, 0xfc, 0x3c, 0xfa, 0x15, + 0x0b, 0x16, 0x42, 0x6e, 0xfc, 0xea, 0x56, 0x3a, 0xa1, 0xe7, 0x6f, 0xd7, 0x1b, 0x3b, 0xc4, 0xed, + 0x34, 0x3d, 0x7f, 0xbb, 0xba, 0xed, 0x07, 0xaa, 0x78, 0xe5, 0x1e, 0x69, 0x74, 0x98, 0xfa, 0xaa, + 0x4f, 0xac, 0x7b, 0x65, 0x44, 0xfe, 0xfc, 0xfd, 0x83, 0xf9, 0x05, 0x7c, 0x24, 0xda, 0xf8, 0x88, + 0x7d, 0x41, 0xbf, 0x69, 0xc1, 0x15, 0x1e, 0x95, 0x7d, 0xf0, 0xfe, 0xf7, 0x78, 0xe7, 0xd6, 0x24, + 0xa9, 0x84, 0xc8, 0x06, 0x09, 0x5b, 0x4b, 0x2f, 0x8b, 0x01, 0xbd, 0x52, 0x3b, 0x5a, 0x5b, 0xf8, + 0xa8, 0x9d, 0xb3, 0xff, 0x45, 0x11, 0x26, 0x44, 0x68, 0x27, 0x71, 0x07, 0xbc, 0x64, 0x2c, 0x89, + 0xc7, 0x53, 0x4b, 0x62, 0xc6, 0x40, 0x3e, 0x9e, 0xe3, 0x3f, 0x82, 0x19, 0x7a, 0x38, 0x5f, 0x23, + 0x4e, 0x18, 0x6f, 0x12, 0x87, 0x5b, 0x5c, 0x15, 0x8f, 0x7c, 0xfa, 0x2b, 0xc1, 0xda, 0x8d, 0x34, + 0x31, 0xdc, 0x4d, 0xff, 0xeb, 0xe9, 0xce, 0xf1, 0x61, 0xba, 0x2b, 0x3a, 0xd7, 0x9b, 0x50, 0x56, + 0x1e, 0x1a, 0xe2, 0xd0, 0xe9, 0x1d, 0xe4, 0x2e, 0x4d, 0x81, 0x0b, 0xbf, 0x12, 0xef, 0xa0, 0x84, + 0x9c, 0xfd, 0x0f, 0x0b, 0x46, 0x83, 0x7c, 0x12, 0xd7, 0xa1, 0xe4, 0x44, 0x91, 0xb7, 0xed, 0x13, + 0x57, 0xec, 0xd8, 0x0f, 0xe7, 0xed, 0x58, 0xa3, 0x19, 0xe6, 0x25, 0xb3, 0x28, 0x6a, 0x62, 0x45, + 0x03, 0x5d, 0xe3, 0x76, 0x6d, 0x7b, 0xf2, 0xa5, 0x36, 0x18, 0x35, 0x90, 0x96, 0x6f, 0x7b, 0x04, + 0x8b, 0xfa, 0xe8, 0xb3, 0xdc, 0xf0, 0xf0, 0xba, 0x1f, 0xdc, 0xf5, 0xaf, 0x06, 0x81, 0x0c, 0x9f, + 0x30, 0x18, 0xc1, 0x19, 0x69, 0x6e, 0xa8, 0xaa, 0x63, 0x93, 0xda, 0x60, 0x11, 0x2c, 0xbf, 0x15, + 0x4e, 0x51, 0xd2, 0xa6, 0x77, 0x73, 0x84, 0x08, 0x4c, 0x89, 0xb8, 0x61, 0xb2, 0x4c, 0x8c, 0x5d, + 0xe6, 0x23, 0xcc, 0xac, 0x9d, 0x48, 0x80, 0xaf, 0x9b, 0x24, 0x70, 0x9a, 0xa6, 0xfd, 0x13, 0x16, + 0x30, 0x4f, 0xcf, 0x13, 0xe0, 0x47, 0x3e, 0x65, 0xf2, 0x23, 0xb3, 0x79, 0x83, 0x9c, 0xc3, 0x8a, + 0xbc, 0xc8, 0x57, 0x56, 0x2d, 0x0c, 0xee, 0xed, 0x0b, 0xa3, 0x8f, 0xfe, 0xef, 0x0f, 0xfb, 0xff, + 0x58, 0xfc, 0x10, 0x53, 0xfe, 0x13, 0xe8, 0xdb, 0xa0, 0xd4, 0x70, 0xda, 0x4e, 0x83, 0xe7, 0x4a, + 0xc9, 0x95, 0xc5, 0x19, 0x95, 0x16, 0x96, 0x45, 0x0d, 0x2e, 0x5b, 0x92, 0xf1, 0xe7, 0x4a, 0xb2, + 0xb8, 0xaf, 0x3c, 0x49, 0x35, 0x39, 0xb7, 0x0b, 0x13, 0x06, 0xb1, 0x87, 0x2a, 0x88, 0xf8, 0x36, + 0x7e, 0xc5, 0xaa, 0x78, 0x89, 0x2d, 0x98, 0xf1, 0xb5, 0xff, 0xf4, 0x42, 0x91, 0x8f, 0xcb, 0x0f, + 0xf7, 0xbb, 0x44, 0xd9, 0xed, 0xa3, 0xf9, 0x9d, 0xa6, 0xc8, 0xe0, 0x6e, 0xca, 0xf6, 0x8f, 0x59, + 0xf0, 0x88, 0x8e, 0xa8, 0xb9, 0xb6, 0xf4, 0x93, 0xee, 0x57, 0xa0, 0x14, 0xb4, 0x49, 0xe8, 0xc4, + 0x41, 0x28, 0x6e, 0x8d, 0xcb, 0x72, 0xd0, 0x6f, 0x8a, 0xf2, 0x43, 0x11, 0x69, 0x5c, 0x52, 0x97, + 0xe5, 0x58, 0xd5, 0xa4, 0xaf, 0x4f, 0x36, 0x18, 0x91, 0x70, 0x62, 0x62, 0x67, 0x00, 0x53, 0x74, + 0x47, 0x58, 0x40, 0xec, 0xaf, 0x5a, 0x7c, 0x61, 0xe9, 0x5d, 0x47, 0xef, 0xc0, 0x74, 0xcb, 0x89, + 0x1b, 0x3b, 0x2b, 0xf7, 0xda, 0x21, 0xd7, 0x95, 0xc8, 0x71, 0x7a, 0xba, 0xdf, 0x38, 0x69, 0x1f, + 0x99, 0xd8, 0x52, 0xae, 0xa5, 0x88, 0xe1, 0x2e, 0xf2, 0x68, 0x13, 0xc6, 0x58, 0x19, 0xf3, 0xcf, + 0x8b, 0x7a, 0xb1, 0x06, 0x79, 0xad, 0x29, 0x5b, 0x81, 0xb5, 0x84, 0x0e, 0xd6, 0x89, 0xda, 0x3f, + 0x53, 0xe4, 0xbb, 0x9d, 0xb1, 0xf2, 0x4f, 0xc1, 0x68, 0x3b, 0x70, 0x97, 0xab, 0x15, 0x2c, 0x66, + 0x41, 0x5d, 0x23, 0x35, 0x5e, 0x8c, 0x25, 0x1c, 0x5d, 0x86, 0x92, 0xf8, 0x29, 0x75, 0x5b, 0xec, + 0x6c, 0x16, 0x78, 0x11, 0x56, 0x50, 0xf4, 0x3c, 0x40, 0x3b, 0x0c, 0xf6, 0x3c, 0x97, 0x05, 0x81, + 0x28, 0x9a, 0x66, 0x3e, 0x35, 0x05, 0xc1, 0x1a, 0x16, 0x7a, 0x15, 0x26, 0x3a, 0x7e, 0xc4, 0xd9, + 0x11, 0x67, 0x53, 0x04, 0xe5, 0x2e, 0x25, 0x06, 0x28, 0xb7, 0x74, 0x20, 0x36, 0x71, 0xd1, 0x22, + 0x8c, 0xc4, 0x0e, 0x33, 0x5b, 0x19, 0xce, 0xb7, 0xb7, 0xdd, 0xa0, 0x18, 0x7a, 0x5a, 0x0e, 0x5a, + 0x01, 0x8b, 0x8a, 0xe8, 0x4d, 0xe9, 0x2a, 0xcb, 0x0f, 0x76, 0x61, 0xe8, 0x3e, 0xd8, 0x25, 0xa0, + 0x39, 0xca, 0x0a, 0x03, 0x7a, 0x83, 0x16, 0x7a, 0x15, 0x80, 0xdc, 0x8b, 0x49, 0xe8, 0x3b, 0x4d, + 0x65, 0x15, 0xa6, 0xec, 0xa0, 0x2b, 0xc1, 0x7a, 0x10, 0xdf, 0x8a, 0xc8, 0xb7, 0xac, 0x28, 0x14, + 0xac, 0xa1, 0xdb, 0xbf, 0x59, 0x06, 0x48, 0x18, 0x77, 0xf4, 0x6e, 0xd7, 0xc9, 0xf5, 0x4c, 0x6f, + 0x56, 0xff, 0xf8, 0x8e, 0x2d, 0xf4, 0xdd, 0x16, 0x8c, 0x39, 0xcd, 0x66, 0xd0, 0x70, 0x62, 0x36, + 0x45, 0x85, 0xde, 0x27, 0xa7, 0x68, 0x7f, 0x31, 0xa9, 0xc1, 0xbb, 0xf0, 0x82, 0x5c, 0xa2, 0x1a, + 0xa4, 0x6f, 0x2f, 0xf4, 0x86, 0xd1, 0xc7, 0xe4, 0x5b, 0x91, 0xaf, 0xad, 0xb9, 0xf4, 0x5b, 0xb1, + 0xcc, 0x2e, 0x09, 0xfd, 0x99, 0x78, 0xcb, 0x78, 0x26, 0x0e, 0xe5, 0x3b, 0x03, 0x1a, 0xfc, 0x6b, + 0xbf, 0x17, 0x22, 0xaa, 0xe9, 0x81, 0x01, 0x86, 0xf3, 0x3d, 0xef, 0xb4, 0x87, 0x52, 0x9f, 0xa0, + 0x00, 0x6f, 0xc3, 0x94, 0x6b, 0x72, 0x01, 0x62, 0x29, 0x3e, 0x99, 0x47, 0x37, 0xc5, 0x34, 0x24, + 0xf7, 0x7e, 0x0a, 0x80, 0xd3, 0x84, 0x51, 0x8d, 0x07, 0x7d, 0xa8, 0xfa, 0x5b, 0x81, 0xf0, 0xb6, + 0xb0, 0x73, 0xe7, 0x72, 0x3f, 0x8a, 0x49, 0x8b, 0x62, 0x26, 0xd7, 0xfb, 0xba, 0xa8, 0x8b, 0x15, + 0x15, 0xf4, 0x3a, 0x8c, 0x30, 0xd7, 0xab, 0x68, 0xb6, 0x94, 0x2f, 0x2c, 0x36, 0xa3, 0x98, 0x25, + 0x3b, 0x92, 0xfd, 0x8d, 0xb0, 0xa0, 0x80, 0xae, 0x49, 0xc7, 0xc6, 0xa8, 0xea, 0xdf, 0x8a, 0x08, + 0x73, 0x6c, 0x2c, 0x2f, 0x7d, 0x38, 0xf1, 0x59, 0xe4, 0xe5, 0x99, 0xd9, 0xbb, 0x8c, 0x9a, 0x94, + 0x8d, 0x12, 0xff, 0x65, 0x52, 0xb0, 0x59, 0xc8, 0xef, 0x9e, 0x99, 0x38, 0x2c, 0x19, 0xce, 0xdb, + 0x26, 0x09, 0x9c, 0xa6, 0x49, 0x59, 0x52, 0xbe, 0xed, 0x85, 0xbf, 0x46, 0xbf, 0xc3, 0x83, 0xbf, + 0xc4, 0xd9, 0x75, 0xc4, 0x4b, 0xb0, 0xa8, 0x7f, 0xa2, 0xfc, 0xc1, 0x9c, 0x0f, 0xd3, 0xe9, 0x2d, + 0xfa, 0x50, 0xf9, 0x91, 0xdf, 0x1f, 0x82, 0x49, 0x73, 0x49, 0xa1, 0x2b, 0x50, 0x16, 0x44, 0x54, + 0x20, 0x7f, 0xb5, 0x4b, 0xd6, 0x24, 0x00, 0x27, 0x38, 0x2c, 0x7f, 0x03, 0xab, 0xae, 0xd9, 0xd9, + 0x26, 0xf9, 0x1b, 0x14, 0x04, 0x6b, 0x58, 0xf4, 0x65, 0xb5, 0x19, 0x04, 0xb1, 0xba, 0x91, 0xd4, + 0xba, 0x5b, 0x62, 0xa5, 0x58, 0x40, 0xe9, 0x4d, 0xb4, 0x4b, 0x42, 0x9f, 0x34, 0xcd, 0xf8, 0xc0, + 0xea, 0x26, 0xba, 0xae, 0x03, 0xb1, 0x89, 0x4b, 0xef, 0xd3, 0x20, 0x62, 0x0b, 0x59, 0xbc, 0xdf, + 0x12, 0xbb, 0xe5, 0x3a, 0xf7, 0xad, 0x96, 0x70, 0xf4, 0x19, 0x78, 0x44, 0xc5, 0x40, 0xc2, 0x5c, + 0x11, 0x21, 0x5b, 0x1c, 0x31, 0xc4, 0x2d, 0x8f, 0x2c, 0x67, 0xa3, 0xe1, 0xbc, 0xfa, 0xe8, 0x35, + 0x98, 0x14, 0x3c, 0xbe, 0xa4, 0x38, 0x6a, 0xda, 0xc6, 0x5c, 0x37, 0xa0, 0x38, 0x85, 0x2d, 0x23, + 0x1c, 0x33, 0x36, 0x5b, 0x52, 0x28, 0x75, 0x47, 0x38, 0xd6, 0xe1, 0xb8, 0xab, 0x06, 0x5a, 0x84, + 0x29, 0xce, 0x84, 0x79, 0xfe, 0x36, 0x9f, 0x13, 0xe1, 0x4e, 0xa5, 0xb6, 0xd4, 0x4d, 0x13, 0x8c, + 0xd3, 0xf8, 0xe8, 0x15, 0x18, 0x77, 0xc2, 0xc6, 0x8e, 0x17, 0x93, 0x46, 0xdc, 0x09, 0xb9, 0x9f, + 0x95, 0x66, 0x5c, 0xb4, 0xa8, 0xc1, 0xb0, 0x81, 0x69, 0xbf, 0x0b, 0xa7, 0x32, 0x82, 0x2e, 0xd0, + 0x85, 0xe3, 0xb4, 0x3d, 0xf9, 0x4d, 0x29, 0x0b, 0xe4, 0xc5, 0x5a, 0x55, 0x7e, 0x8d, 0x86, 0x45, + 0x57, 0x27, 0x0b, 0xce, 0xa0, 0xe5, 0x00, 0x54, 0xab, 0x73, 0x55, 0x02, 0x70, 0x82, 0x63, 0xff, + 0xcf, 0x02, 0x4c, 0x65, 0x28, 0x57, 0x58, 0x1e, 0xba, 0xd4, 0x2b, 0x25, 0x49, 0x3b, 0x67, 0x06, + 0xcc, 0x2e, 0x1c, 0x21, 0x60, 0x76, 0xb1, 0x5f, 0xc0, 0xec, 0xa1, 0xf7, 0x12, 0x30, 0xdb, 0x1c, + 0xb1, 0xe1, 0x81, 0x46, 0x2c, 0x23, 0xc8, 0xf6, 0xc8, 0x11, 0x83, 0x6c, 0x1b, 0x83, 0x3e, 0x3a, + 0xc0, 0xa0, 0xff, 0x60, 0x01, 0xa6, 0xd3, 0x46, 0x90, 0x27, 0x20, 0xb8, 0x7d, 0xdd, 0x10, 0xdc, + 0x66, 0x67, 0x75, 0x4c, 0x9b, 0x66, 0xe6, 0x09, 0x71, 0x71, 0x4a, 0x88, 0xfb, 0xd1, 0x81, 0xa8, + 0xf5, 0x16, 0xe8, 0xfe, 0x9d, 0x02, 0x9c, 0x49, 0x57, 0x59, 0x6e, 0x3a, 0x5e, 0xeb, 0x04, 0xc6, + 0xe6, 0xa6, 0x31, 0x36, 0xcf, 0x0e, 0xf2, 0x35, 0xac, 0x6b, 0xb9, 0x03, 0x74, 0x27, 0x35, 0x40, + 0x57, 0x06, 0x27, 0xd9, 0x7b, 0x94, 0xbe, 0x52, 0x84, 0x0b, 0x99, 0xf5, 0x12, 0xb9, 0xe7, 0xaa, + 0x21, 0xf7, 0x7c, 0x3e, 0x25, 0xf7, 0xb4, 0x7b, 0xd7, 0x3e, 0x1e, 0x41, 0xa8, 0x70, 0x91, 0x65, + 0x11, 0x04, 0x1e, 0x50, 0x08, 0x6a, 0xb8, 0xc8, 0x2a, 0x42, 0xd8, 0xa4, 0xfb, 0xf5, 0x24, 0xfc, + 0xfc, 0x37, 0x16, 0x9c, 0xcb, 0x9c, 0x9b, 0x13, 0x10, 0x76, 0xad, 0x9b, 0xc2, 0xae, 0xa7, 0x06, + 0x5e, 0xad, 0x39, 0xd2, 0xaf, 0x5f, 0x1f, 0xca, 0xf9, 0x16, 0xf6, 0x94, 0xbf, 0x09, 0x63, 0x4e, + 0xa3, 0x41, 0xa2, 0x68, 0x2d, 0x70, 0x55, 0x4c, 0xe0, 0x67, 0xd9, 0x3b, 0x2b, 0x29, 0x3e, 0x3c, + 0x98, 0x9f, 0x4b, 0x93, 0x48, 0xc0, 0x58, 0xa7, 0x80, 0x3e, 0x0b, 0xa5, 0x48, 0xdc, 0x9b, 0x62, + 0xee, 0x5f, 0x18, 0x70, 0x70, 0x9c, 0x4d, 0xd2, 0x34, 0xe3, 0x1c, 0x29, 0x51, 0x85, 0x22, 0x69, + 0xc6, 0x44, 0x29, 0x1c, 0x6b, 0x4c, 0x94, 0xe7, 0x01, 0xf6, 0xd4, 0x63, 0x20, 0x2d, 0x80, 0xd0, + 0x9e, 0x09, 0x1a, 0x16, 0xfa, 0x26, 0x98, 0x8e, 0x78, 0x54, 0xbf, 0xe5, 0xa6, 0x13, 0x31, 0x3f, + 0x17, 0xb1, 0x0a, 0x59, 0x2c, 0xa5, 0x7a, 0x0a, 0x86, 0xbb, 0xb0, 0xd1, 0xaa, 0x6c, 0x95, 0x85, + 0x20, 0xe4, 0x0b, 0xf3, 0x52, 0xd2, 0xa2, 0xc8, 0x82, 0x7b, 0x3a, 0x3d, 0xfc, 0x6c, 0xe0, 0xb5, + 0x9a, 0xe8, 0xb3, 0x00, 0x74, 0xf9, 0x08, 0x41, 0xc4, 0x68, 0xfe, 0xe1, 0x49, 0x4f, 0x15, 0x37, + 0xd3, 0x2c, 0x97, 0x39, 0xa7, 0x56, 0x14, 0x11, 0xac, 0x11, 0xb4, 0x7f, 0x70, 0x08, 0x1e, 0xed, + 0x71, 0x46, 0xa2, 0x45, 0x53, 0x11, 0xfb, 0x74, 0xfa, 0x71, 0x3d, 0x97, 0x59, 0xd9, 0x78, 0x6d, + 0xa7, 0x96, 0x62, 0xe1, 0x3d, 0x2f, 0xc5, 0xef, 0xb3, 0x34, 0xb1, 0x07, 0x37, 0xd6, 0xfc, 0xd4, + 0x11, 0xcf, 0xfe, 0x63, 0x94, 0x83, 0x6c, 0x65, 0x08, 0x13, 0x9e, 0x1f, 0xb8, 0x3b, 0x03, 0x4b, + 0x17, 0x4e, 0x56, 0x4c, 0xfc, 0x05, 0x0b, 0x1e, 0xcf, 0xec, 0xaf, 0x61, 0x92, 0x73, 0x05, 0xca, + 0x0d, 0x5a, 0xa8, 0xf9, 0x22, 0x26, 0x4e, 0xda, 0x12, 0x80, 0x13, 0x1c, 0xc3, 0xf2, 0xa6, 0xd0, + 0xd7, 0xf2, 0xe6, 0x9f, 0x5b, 0xd0, 0xb5, 0x3f, 0x4e, 0xe0, 0xa0, 0xae, 0x9a, 0x07, 0xf5, 0x87, + 0x07, 0x99, 0xcb, 0x9c, 0x33, 0xfa, 0x8f, 0xa6, 0xe0, 0x6c, 0x8e, 0x2f, 0xce, 0x1e, 0xcc, 0x6c, + 0x37, 0x88, 0xe9, 0xe5, 0x29, 0x3e, 0x26, 0xd3, 0x21, 0xb6, 0xa7, 0x4b, 0x28, 0x4b, 0x69, 0x39, + 0xd3, 0x85, 0x82, 0xbb, 0x9b, 0x40, 0x5f, 0xb0, 0xe0, 0xb4, 0x73, 0x37, 0xea, 0xca, 0x81, 0x2f, + 0xd6, 0xcc, 0x8b, 0x99, 0x42, 0x90, 0x3e, 0x39, 0xf3, 0x79, 0x8e, 0xcf, 0x2c, 0x2c, 0x9c, 0xd9, + 0x16, 0xc2, 0x22, 0x4a, 0x3c, 0x65, 0xe7, 0x7b, 0xf8, 0x21, 0x67, 0x39, 0x4d, 0xf1, 0x1b, 0x44, + 0x42, 0xb0, 0xa2, 0x83, 0x3e, 0x0f, 0xe5, 0x6d, 0xe9, 0xc9, 0x98, 0x71, 0x43, 0x25, 0x03, 0xd9, + 0xdb, 0xbf, 0x93, 0xab, 0x32, 0x15, 0x12, 0x4e, 0x88, 0xa2, 0xd7, 0xa0, 0xe8, 0x6f, 0x45, 0xbd, + 0xd2, 0x64, 0xa6, 0x6c, 0xd6, 0xb8, 0xb7, 0xff, 0xfa, 0x6a, 0x1d, 0xd3, 0x8a, 0xe8, 0x1a, 0x14, + 0xc3, 0x4d, 0x57, 0x48, 0xf0, 0x32, 0xcf, 0x70, 0xbc, 0x54, 0xc9, 0xe9, 0x15, 0xa3, 0x84, 0x97, + 0x2a, 0x98, 0x92, 0x40, 0x35, 0x18, 0x66, 0x0e, 0x2c, 0xe2, 0x3e, 0xc8, 0xe4, 0x7c, 0x7b, 0x38, + 0x82, 0xf1, 0x90, 0x00, 0x0c, 0x01, 0x73, 0x42, 0x68, 0x03, 0x46, 0x1a, 0x2c, 0xa5, 0xa2, 0x08, + 0x48, 0xf6, 0xb1, 0x4c, 0x59, 0x5d, 0x8f, 0x5c, 0x93, 0x42, 0x74, 0xc5, 0x30, 0xb0, 0xa0, 0xc5, + 0xa8, 0x92, 0xf6, 0xce, 0x56, 0x24, 0x52, 0x00, 0x67, 0x53, 0xed, 0x91, 0x42, 0x55, 0x50, 0x65, + 0x18, 0x58, 0xd0, 0x42, 0x9f, 0x80, 0xc2, 0x56, 0x43, 0x38, 0xa7, 0x64, 0x0a, 0xed, 0xcc, 0x80, + 0x0d, 0x4b, 0x23, 0xf7, 0x0f, 0xe6, 0x0b, 0xab, 0xcb, 0xb8, 0xb0, 0xd5, 0x40, 0xeb, 0x30, 0xba, + 0xc5, 0x5d, 0xbc, 0x85, 0x5c, 0xee, 0xc9, 0x6c, 0xef, 0xf3, 0x2e, 0x2f, 0x70, 0xee, 0x97, 0x21, + 0x00, 0x58, 0x12, 0x61, 0x41, 0xd7, 0x95, 0xab, 0xba, 0x88, 0xdd, 0xb5, 0x70, 0xb4, 0xf0, 0x02, + 0xfc, 0x7e, 0x4e, 0x1c, 0xde, 0xb1, 0x46, 0x91, 0xae, 0x6a, 0x47, 0xe6, 0x61, 0x17, 0xb1, 0x58, + 0x32, 0x57, 0x75, 0x9f, 0x14, 0xf5, 0x7c, 0x55, 0x2b, 0x24, 0x9c, 0x10, 0x45, 0xbb, 0x30, 0xb1, + 0x17, 0xb5, 0x77, 0x88, 0xdc, 0xd2, 0x2c, 0x34, 0x4b, 0xce, 0x15, 0x76, 0x5b, 0x20, 0x7a, 0x61, + 0xdc, 0x71, 0x9a, 0x5d, 0xa7, 0x10, 0xd3, 0x7f, 0xdf, 0xd6, 0x89, 0x61, 0x93, 0x36, 0x1d, 0xfe, + 0x77, 0x3a, 0xc1, 0xe6, 0x7e, 0x4c, 0x44, 0xc8, 0xad, 0xcc, 0xe1, 0x7f, 0x83, 0xa3, 0x74, 0x0f, + 0xbf, 0x00, 0x60, 0x49, 0x04, 0xdd, 0x16, 0xc3, 0xc3, 0x4e, 0xcf, 0xe9, 0xfc, 0xb8, 0x98, 0x8b, + 0x12, 0x29, 0x67, 0x50, 0xd8, 0x69, 0x99, 0x90, 0x62, 0xa7, 0x64, 0x7b, 0x27, 0x88, 0x03, 0x3f, + 0x75, 0x42, 0xcf, 0xe4, 0x9f, 0x92, 0xb5, 0x0c, 0xfc, 0xee, 0x53, 0x32, 0x0b, 0x0b, 0x67, 0xb6, + 0x85, 0x5c, 0x98, 0x6c, 0x07, 0x61, 0x7c, 0x37, 0x08, 0xe5, 0xfa, 0x42, 0x3d, 0xe4, 0x0a, 0x06, + 0xa6, 0x68, 0x91, 0x45, 0xb3, 0x33, 0x21, 0x38, 0x45, 0x13, 0x7d, 0x1a, 0x46, 0xa3, 0x86, 0xd3, + 0x24, 0xd5, 0x9b, 0xb3, 0xa7, 0xf2, 0xaf, 0x9f, 0x3a, 0x47, 0xc9, 0x59, 0x5d, 0x3c, 0x42, 0x3b, + 0x47, 0xc1, 0x92, 0x1c, 0x5a, 0x85, 0x61, 0x96, 0x54, 0x8b, 0xc5, 0x87, 0xcb, 0x09, 0xef, 0xd9, + 0x65, 0x41, 0xcc, 0xcf, 0x26, 0x56, 0x8c, 0x79, 0x75, 0xba, 0x07, 0x04, 0x7b, 0x1d, 0x44, 0xb3, + 0x67, 0xf2, 0xf7, 0x80, 0xe0, 0xca, 0x6f, 0xd6, 0x7b, 0xed, 0x01, 0x85, 0x84, 0x13, 0xa2, 0xf4, + 0x64, 0xa6, 0xa7, 0xe9, 0xd9, 0x1e, 0xa6, 0x2f, 0xb9, 0x67, 0x29, 0x3b, 0x99, 0xe9, 0x49, 0x4a, + 0x49, 0xd8, 0xbf, 0x3b, 0xda, 0xcd, 0xb3, 0xb0, 0x07, 0xd9, 0x77, 0x5a, 0x5d, 0xba, 0xba, 0x8f, + 0x0f, 0x2a, 0x1f, 0x3a, 0x46, 0x6e, 0xf5, 0x0b, 0x16, 0x9c, 0x6d, 0x67, 0x7e, 0x88, 0x60, 0x00, + 0x06, 0x13, 0x33, 0xf1, 0x4f, 0x57, 0xb1, 0x04, 0xb3, 0xe1, 0x38, 0xa7, 0xa5, 0xf4, 0x8b, 0xa0, + 0xf8, 0x9e, 0x5f, 0x04, 0x6b, 0x50, 0x62, 0x4c, 0x66, 0x9f, 0x14, 0xc3, 0xe9, 0x87, 0x11, 0x63, + 0x25, 0x96, 0x45, 0x45, 0xac, 0x48, 0xa0, 0xef, 0xb7, 0xe0, 0x7c, 0xba, 0xeb, 0x98, 0x30, 0xb0, + 0x08, 0x40, 0xc8, 0xdf, 0x82, 0xab, 0xe2, 0xfb, 0xcf, 0xd7, 0x7a, 0x21, 0x1f, 0xf6, 0x43, 0xc0, + 0xbd, 0x1b, 0x43, 0x95, 0x8c, 0xc7, 0xe8, 0x88, 0x29, 0x80, 0x1f, 0xe0, 0x41, 0xfa, 0x22, 0x8c, + 0xb7, 0x82, 0x8e, 0x1f, 0x0b, 0x4b, 0x19, 0xa1, 0xb5, 0x67, 0xda, 0xea, 0x35, 0xad, 0x1c, 0x1b, + 0x58, 0xa9, 0x67, 0x6c, 0xe9, 0x81, 0x9f, 0xb1, 0x6f, 0xc1, 0xb8, 0xaf, 0x99, 0x76, 0x0a, 0x7e, + 0xe0, 0x52, 0x7e, 0xf0, 0x50, 0xdd, 0x10, 0x94, 0xf7, 0x52, 0x2f, 0xc1, 0x06, 0xb5, 0x93, 0x7d, + 0x1b, 0xfd, 0x94, 0x95, 0xc1, 0xd4, 0xf3, 0xd7, 0xf2, 0x27, 0xcd, 0xd7, 0xf2, 0xa5, 0xf4, 0x6b, + 0xb9, 0x4b, 0xf8, 0x6a, 0x3c, 0x94, 0x07, 0x4f, 0x74, 0x32, 0x68, 0x9c, 0x40, 0xbb, 0x09, 0x17, + 0xfb, 0x5d, 0x4b, 0xcc, 0x64, 0xca, 0x55, 0xaa, 0xb6, 0xc4, 0x64, 0xca, 0xad, 0x56, 0x30, 0x83, + 0x0c, 0x1a, 0x48, 0xc6, 0xfe, 0x1f, 0x16, 0x14, 0x6b, 0x81, 0x7b, 0x02, 0xc2, 0xe4, 0x4f, 0x19, + 0xc2, 0xe4, 0x47, 0xb3, 0x2f, 0x44, 0x37, 0x57, 0x74, 0xbc, 0x92, 0x12, 0x1d, 0x9f, 0xcf, 0x23, + 0xd0, 0x5b, 0x50, 0xfc, 0xe3, 0x45, 0x18, 0xab, 0x05, 0xae, 0xb2, 0x57, 0xfe, 0xf5, 0x07, 0xb1, + 0x57, 0xce, 0x8d, 0xf0, 0xaf, 0x51, 0x66, 0x96, 0x56, 0xd2, 0xc9, 0xf2, 0x2f, 0x98, 0xd9, 0xf2, + 0x1d, 0xe2, 0x6d, 0xef, 0xc4, 0xc4, 0x4d, 0x7f, 0xce, 0xc9, 0x99, 0x2d, 0xff, 0x77, 0x0b, 0xa6, + 0x52, 0xad, 0xa3, 0x26, 0x4c, 0x34, 0x75, 0xc1, 0xa4, 0x58, 0xa7, 0x0f, 0x24, 0xd3, 0x14, 0x66, + 0x9f, 0x5a, 0x11, 0x36, 0x89, 0xa3, 0x05, 0x00, 0xa5, 0xa9, 0x93, 0x12, 0x30, 0xc6, 0xf5, 0x2b, + 0x55, 0x5e, 0x84, 0x35, 0x0c, 0xf4, 0x12, 0x8c, 0xc5, 0x41, 0x3b, 0x68, 0x06, 0xdb, 0xfb, 0xd7, + 0x89, 0x0c, 0x5d, 0xa4, 0x8c, 0xb9, 0x36, 0x12, 0x10, 0xd6, 0xf1, 0xec, 0x9f, 0x2c, 0xf2, 0x0f, + 0xf5, 0x63, 0xef, 0x83, 0x35, 0xf9, 0xfe, 0x5e, 0x93, 0x5f, 0xb1, 0x60, 0x9a, 0xb6, 0xce, 0xcc, + 0x45, 0xe4, 0x65, 0xab, 0x82, 0x06, 0x5b, 0x3d, 0x82, 0x06, 0x5f, 0xa2, 0x67, 0x97, 0x1b, 0x74, + 0x62, 0x21, 0x41, 0xd3, 0x0e, 0x27, 0x5a, 0x8a, 0x05, 0x54, 0xe0, 0x91, 0x30, 0x14, 0x3e, 0x6e, + 0x3a, 0x1e, 0x09, 0x43, 0x2c, 0xa0, 0x32, 0xa6, 0xf0, 0x50, 0x76, 0x4c, 0x61, 0x1e, 0x88, 0x51, + 0x18, 0x16, 0x08, 0xb6, 0x47, 0x0b, 0xc4, 0x28, 0x2d, 0x0e, 0x12, 0x1c, 0xfb, 0xe7, 0x8a, 0x30, + 0x5e, 0x0b, 0xdc, 0x44, 0x57, 0xf6, 0xa2, 0xa1, 0x2b, 0xbb, 0x98, 0xd2, 0x95, 0x4d, 0xeb, 0xb8, + 0x1f, 0x68, 0xc6, 0xbe, 0x56, 0x9a, 0xb1, 0x7f, 0x66, 0xb1, 0x59, 0xab, 0xac, 0xd7, 0xb9, 0xf5, + 0x11, 0x7a, 0x0e, 0xc6, 0xd8, 0x81, 0xc4, 0x9c, 0x2a, 0xa5, 0x02, 0x89, 0xe5, 0x50, 0x5a, 0x4f, + 0x8a, 0xb1, 0x8e, 0x83, 0x2e, 0x43, 0x29, 0x22, 0x4e, 0xd8, 0xd8, 0x51, 0x67, 0x9c, 0xd0, 0xf6, + 0xf0, 0x32, 0xac, 0xa0, 0xe8, 0x8d, 0x24, 0x06, 0x60, 0x31, 0xdf, 0x49, 0x4b, 0xef, 0x0f, 0xdf, + 0x22, 0xf9, 0x81, 0xff, 0xec, 0x3b, 0x80, 0xba, 0xf1, 0x07, 0x08, 0x7e, 0x35, 0x6f, 0x06, 0xbf, + 0x2a, 0x77, 0x05, 0xbe, 0xfa, 0x33, 0x0b, 0x26, 0x6b, 0x81, 0x4b, 0xb7, 0xee, 0xd7, 0xd3, 0x3e, + 0xd5, 0x03, 0xa0, 0x8e, 0xf4, 0x08, 0x80, 0xfa, 0x04, 0x0c, 0xd7, 0x02, 0xb7, 0x5a, 0xeb, 0xe5, + 0xdc, 0x6c, 0xff, 0x5d, 0x0b, 0x46, 0x6b, 0x81, 0x7b, 0x02, 0xc2, 0xf9, 0x4f, 0x9a, 0xc2, 0xf9, + 0x47, 0x72, 0xd6, 0x4d, 0x8e, 0x3c, 0xfe, 0x17, 0x8a, 0x30, 0x41, 0xfb, 0x19, 0x6c, 0xcb, 0xa9, + 0x34, 0x86, 0xcd, 0x1a, 0x60, 0xd8, 0x28, 0x2f, 0x1c, 0x34, 0x9b, 0xc1, 0xdd, 0xf4, 0xb4, 0xae, + 0xb2, 0x52, 0x2c, 0xa0, 0xe8, 0x19, 0x28, 0xb5, 0x43, 0xb2, 0xe7, 0x05, 0x82, 0xc9, 0xd4, 0x54, + 0x1d, 0x35, 0x51, 0x8e, 0x15, 0x06, 0x7d, 0x9c, 0x45, 0x9e, 0xdf, 0x20, 0x75, 0xd2, 0x08, 0x7c, + 0x97, 0xcb, 0xaf, 0x8b, 0x22, 0x6f, 0x80, 0x56, 0x8e, 0x0d, 0x2c, 0x74, 0x07, 0xca, 0xec, 0x3f, + 0x3b, 0x76, 0x8e, 0x9e, 0x4e, 0x52, 0xa4, 0x17, 0x13, 0x04, 0x70, 0x42, 0x0b, 0x3d, 0x0f, 0x10, + 0xcb, 0x10, 0xd9, 0x91, 0x08, 0x74, 0xa4, 0x18, 0x72, 0x15, 0x3c, 0x3b, 0xc2, 0x1a, 0x16, 0x7a, + 0x1a, 0xca, 0xb1, 0xe3, 0x35, 0x6f, 0x78, 0x3e, 0x89, 0x98, 0x5c, 0xba, 0x28, 0xb3, 0x7c, 0x89, + 0x42, 0x9c, 0xc0, 0x29, 0x43, 0xc4, 0xa2, 0x00, 0xf0, 0x64, 0xb4, 0x25, 0x86, 0xcd, 0x18, 0xa2, + 0x1b, 0xaa, 0x14, 0x6b, 0x18, 0xf6, 0x2b, 0x70, 0xa6, 0x16, 0xb8, 0xb5, 0x20, 0x8c, 0x57, 0x83, + 0xf0, 0xae, 0x13, 0xba, 0x72, 0xfe, 0xe6, 0x65, 0x72, 0x10, 0x7a, 0x40, 0x0d, 0xf3, 0xed, 0x6b, + 0xa4, 0xa8, 0x7a, 0x81, 0xb1, 0x44, 0x47, 0xf4, 0x11, 0x69, 0xb0, 0xcb, 0x59, 0xa5, 0x81, 0xb8, + 0xea, 0xc4, 0x04, 0xdd, 0x64, 0xb9, 0x6a, 0x93, 0x7b, 0x4a, 0x54, 0x7f, 0x4a, 0xcb, 0x55, 0x9b, + 0x00, 0x33, 0x2f, 0x36, 0xb3, 0xbe, 0xfd, 0x33, 0x43, 0xec, 0xc8, 0x4a, 0xa5, 0x12, 0x40, 0x9f, + 0x83, 0xc9, 0x88, 0xdc, 0xf0, 0xfc, 0xce, 0x3d, 0xf9, 0x52, 0xef, 0xe1, 0xe5, 0x53, 0x5f, 0xd1, + 0x31, 0xb9, 0xbc, 0xcf, 0x2c, 0xc3, 0x29, 0x6a, 0xa8, 0x05, 0x93, 0x77, 0x3d, 0xdf, 0x0d, 0xee, + 0x46, 0x92, 0x7e, 0x29, 0x5f, 0xec, 0x77, 0x87, 0x63, 0xa6, 0xfa, 0x68, 0x34, 0x77, 0xc7, 0x20, + 0x86, 0x53, 0xc4, 0xe9, 0xb2, 0x08, 0x3b, 0xfe, 0x62, 0x74, 0x2b, 0x22, 0xa1, 0xc8, 0x3a, 0xcc, + 0x96, 0x05, 0x96, 0x85, 0x38, 0x81, 0xd3, 0x65, 0xc1, 0xfe, 0x5c, 0x0d, 0x83, 0x0e, 0x0f, 0x2f, + 0x2f, 0x96, 0x05, 0x56, 0xa5, 0x58, 0xc3, 0xa0, 0xdb, 0x86, 0xfd, 0x5b, 0x0f, 0x7c, 0x1c, 0x04, + 0xb1, 0xdc, 0x68, 0x2c, 0xcf, 0xa5, 0x56, 0x8e, 0x0d, 0x2c, 0xb4, 0x0a, 0x28, 0xea, 0xb4, 0xdb, + 0x4d, 0x66, 0x3d, 0xe0, 0x34, 0x19, 0x29, 0xae, 0xb9, 0x2d, 0xf2, 0xe0, 0x99, 0xf5, 0x2e, 0x28, + 0xce, 0xa8, 0x41, 0x4f, 0xd0, 0x2d, 0xd1, 0xd5, 0x61, 0xd6, 0x55, 0xae, 0x22, 0xa8, 0xf3, 0x7e, + 0x4a, 0x18, 0x5a, 0x81, 0xd1, 0x68, 0x3f, 0x6a, 0xc4, 0x22, 0x0a, 0x58, 0x4e, 0xb6, 0x98, 0x3a, + 0x43, 0xd1, 0x92, 0x95, 0xf1, 0x2a, 0x58, 0xd6, 0xb5, 0xbf, 0x8d, 0x5d, 0xd0, 0x2c, 0x47, 0x6d, + 0xdc, 0x09, 0x09, 0x6a, 0xc1, 0x44, 0x9b, 0xad, 0x30, 0x11, 0x2f, 0x5d, 0x2c, 0x93, 0x17, 0x07, + 0x7c, 0x69, 0xdf, 0xa5, 0xe7, 0x9a, 0x92, 0x84, 0xb1, 0x27, 0x4c, 0x4d, 0x27, 0x87, 0x4d, 0xea, + 0xf6, 0x57, 0xce, 0xb2, 0x23, 0xbe, 0xce, 0x9f, 0xcf, 0xa3, 0xc2, 0xdc, 0x59, 0xbc, 0x15, 0xe6, + 0xf2, 0xe5, 0x38, 0xc9, 0x17, 0x09, 0x93, 0x69, 0x2c, 0xeb, 0xa2, 0xcf, 0xc2, 0x24, 0x65, 0xbd, + 0xb5, 0x7c, 0x11, 0xa7, 0xf3, 0xfd, 0xd2, 0x93, 0x34, 0x11, 0x5a, 0x2e, 0x05, 0xbd, 0x32, 0x4e, + 0x11, 0x43, 0x6f, 0x30, 0xc5, 0xbc, 0x99, 0x8a, 0xa2, 0x0f, 0x69, 0x5d, 0x07, 0x2f, 0xc9, 0x6a, + 0x44, 0xf2, 0xd2, 0x5c, 0xd8, 0x0f, 0x37, 0xcd, 0x05, 0xba, 0x01, 0x13, 0x22, 0x51, 0xab, 0x10, + 0x3f, 0x16, 0x0d, 0xf1, 0xd2, 0x04, 0xd6, 0x81, 0x87, 0xe9, 0x02, 0x6c, 0x56, 0x46, 0xdb, 0x70, + 0x5e, 0xcb, 0xb5, 0x72, 0x35, 0x74, 0x98, 0x8e, 0xd8, 0x63, 0x27, 0x91, 0x76, 0xf9, 0x3c, 0x7e, + 0xff, 0x60, 0xfe, 0xfc, 0x46, 0x2f, 0x44, 0xdc, 0x9b, 0x0e, 0xba, 0x09, 0x67, 0xb8, 0x57, 0x65, + 0x85, 0x38, 0x6e, 0xd3, 0xf3, 0xd5, 0xed, 0xc6, 0x77, 0xcb, 0xb9, 0xfb, 0x07, 0xf3, 0x67, 0x16, + 0xb3, 0x10, 0x70, 0x76, 0x3d, 0xf4, 0x49, 0x28, 0xbb, 0x7e, 0x24, 0xc6, 0x60, 0xc4, 0x48, 0x67, + 0x53, 0xae, 0xac, 0xd7, 0xd5, 0xf7, 0x27, 0x7f, 0x70, 0x52, 0x01, 0x6d, 0x73, 0x11, 0xa4, 0x7a, + 0xf1, 0x8f, 0x76, 0xc5, 0x83, 0x49, 0xcb, 0x8e, 0x0c, 0xbf, 0x2a, 0x2e, 0x7b, 0x57, 0xd6, 0xc6, + 0x86, 0xcb, 0x95, 0x41, 0x18, 0xbd, 0x0e, 0x88, 0xb2, 0xc4, 0x5e, 0x83, 0x2c, 0x36, 0x58, 0x30, + 0x7e, 0x26, 0xb1, 0x2d, 0x19, 0xde, 0x29, 0xa8, 0xde, 0x85, 0x81, 0x33, 0x6a, 0xa1, 0x6b, 0xf4, + 0x36, 0xd0, 0x4b, 0x85, 0xd5, 0xb4, 0x4a, 0x3e, 0x56, 0x21, 0xed, 0x90, 0x34, 0x9c, 0x98, 0xb8, + 0x26, 0x45, 0x9c, 0xaa, 0x87, 0x5c, 0x78, 0xcc, 0xe9, 0xc4, 0x01, 0x93, 0xee, 0x9a, 0xa8, 0x1b, + 0xc1, 0x2e, 0xf1, 0x99, 0x62, 0xa5, 0xb4, 0x74, 0xf1, 0xfe, 0xc1, 0xfc, 0x63, 0x8b, 0x3d, 0xf0, + 0x70, 0x4f, 0x2a, 0x94, 0xed, 0x51, 0xa9, 0x43, 0xc1, 0x0c, 0x73, 0x93, 0x91, 0x3e, 0xf4, 0x25, + 0x18, 0xdb, 0x09, 0xa2, 0x78, 0x9d, 0xc4, 0x77, 0x83, 0x70, 0x57, 0x04, 0x2b, 0x4c, 0x02, 0xdc, + 0x26, 0x20, 0xac, 0xe3, 0xd1, 0x77, 0x0d, 0x53, 0xfb, 0x57, 0x2b, 0x4c, 0xe3, 0x5a, 0x4a, 0xce, + 0x98, 0x6b, 0xbc, 0x18, 0x4b, 0xb8, 0x44, 0xad, 0xd6, 0x96, 0x99, 0xf6, 0x34, 0x85, 0x5a, 0xad, + 0x2d, 0x63, 0x09, 0xa7, 0xcb, 0x35, 0xda, 0x71, 0x42, 0x52, 0x0b, 0x83, 0x06, 0x89, 0xb4, 0xb0, + 0xca, 0x8f, 0xf2, 0x50, 0x8c, 0x74, 0xb9, 0xd6, 0xb3, 0x10, 0x70, 0x76, 0x3d, 0x44, 0xba, 0xf3, + 0x0c, 0x4d, 0xe6, 0x8b, 0xbd, 0xbb, 0x59, 0x81, 0x01, 0x53, 0x0d, 0xf9, 0x30, 0xad, 0x32, 0x1c, + 0xf1, 0xe0, 0x8b, 0xd1, 0xec, 0x14, 0x5b, 0xdb, 0x83, 0x47, 0x6e, 0x54, 0x8a, 0x84, 0x6a, 0x8a, + 0x12, 0xee, 0xa2, 0x6d, 0x44, 0x32, 0x9a, 0xee, 0x9b, 0x4b, 0xf6, 0x0a, 0x94, 0xa3, 0xce, 0xa6, + 0x1b, 0xb4, 0x1c, 0xcf, 0x67, 0xda, 0x53, 0x8d, 0xc1, 0xae, 0x4b, 0x00, 0x4e, 0x70, 0xd0, 0x2a, + 0x94, 0x1c, 0xa9, 0x25, 0x40, 0xf9, 0x01, 0x30, 0x94, 0x6e, 0x80, 0xfb, 0x84, 0x4b, 0xbd, 0x80, + 0xaa, 0x8b, 0x5e, 0x85, 0x09, 0xe1, 0x15, 0x28, 0x92, 0xeb, 0x9d, 0x32, 0x3d, 0x37, 0xea, 0x3a, + 0x10, 0x9b, 0xb8, 0xe8, 0x16, 0x8c, 0xc5, 0x41, 0x93, 0xb9, 0x1f, 0x50, 0x0e, 0xe9, 0x6c, 0x7e, + 0x10, 0xad, 0x0d, 0x85, 0xa6, 0x0b, 0xe8, 0x54, 0x55, 0xac, 0xd3, 0x41, 0x1b, 0x7c, 0xbd, 0xb3, + 0xf0, 0xc2, 0x24, 0x9a, 0x7d, 0x24, 0xff, 0x4e, 0x52, 0x51, 0x88, 0xcd, 0xed, 0x20, 0x6a, 0x62, + 0x9d, 0x0c, 0xba, 0x0a, 0x33, 0xed, 0xd0, 0x0b, 0xd8, 0x9a, 0x50, 0x0a, 0xa2, 0x59, 0x33, 0x29, + 0x4a, 0x2d, 0x8d, 0x80, 0xbb, 0xeb, 0x30, 0xa7, 0x4e, 0x51, 0x38, 0x7b, 0x8e, 0x27, 0xd3, 0xe5, + 0xef, 0x15, 0x5e, 0x86, 0x15, 0x14, 0xad, 0xb1, 0x93, 0x98, 0x3f, 0xb5, 0x67, 0xe7, 0xf2, 0x63, + 0x6e, 0xe8, 0x4f, 0x72, 0xce, 0xf7, 0xa9, 0xbf, 0x38, 0xa1, 0x80, 0x5c, 0x2d, 0x51, 0x1b, 0x65, + 0xb6, 0xa3, 0xd9, 0xc7, 0x7a, 0xd8, 0x5e, 0xa5, 0x38, 0xf3, 0x84, 0x21, 0x30, 0x8a, 0x23, 0x9c, + 0xa2, 0x89, 0xbe, 0x09, 0xa6, 0x45, 0x8c, 0xaf, 0x64, 0x98, 0xce, 0x27, 0x46, 0x9d, 0x38, 0x05, + 0xc3, 0x5d, 0xd8, 0x3c, 0xec, 0xba, 0xb3, 0xd9, 0x24, 0xe2, 0xe8, 0xbb, 0xe1, 0xf9, 0xbb, 0xd1, + 0xec, 0x05, 0x76, 0x3e, 0x88, 0xb0, 0xeb, 0x69, 0x28, 0xce, 0xa8, 0x81, 0x36, 0x60, 0xba, 0x1d, + 0x12, 0xd2, 0x62, 0x3c, 0xb2, 0xb8, 0xcf, 0xe6, 0xb9, 0x4f, 0x33, 0xed, 0x49, 0x2d, 0x05, 0x3b, + 0xcc, 0x28, 0xc3, 0x5d, 0x14, 0xd0, 0x5d, 0x28, 0x05, 0x7b, 0x24, 0xdc, 0x21, 0x8e, 0x3b, 0x7b, + 0xb1, 0x87, 0x91, 0xb1, 0xb8, 0xdc, 0x6e, 0x0a, 0xdc, 0x94, 0x52, 0x59, 0x16, 0xf7, 0x57, 0x2a, + 0xcb, 0xc6, 0xd0, 0x0f, 0x58, 0x70, 0x4e, 0xca, 0xa1, 0xeb, 0x6d, 0x3a, 0xea, 0xcb, 0x81, 0x1f, + 0xc5, 0x21, 0xf7, 0xc2, 0x7d, 0x3c, 0xdf, 0x31, 0x75, 0x23, 0xa7, 0x92, 0x92, 0xf6, 0x9d, 0xcb, + 0xc3, 0x88, 0x70, 0x7e, 0x8b, 0x73, 0xdf, 0x08, 0x33, 0x5d, 0x37, 0xf7, 0x51, 0x32, 0x41, 0xcc, + 0xed, 0xc2, 0x84, 0x31, 0x3a, 0x0f, 0x55, 0x9f, 0xf8, 0xaf, 0x47, 0xa1, 0xac, 0x74, 0x4d, 0xe8, + 0x8a, 0xa9, 0x42, 0x3c, 0x97, 0x56, 0x21, 0x96, 0xe8, 0x6b, 0x56, 0xd7, 0x1a, 0x6e, 0x64, 0xc4, + 0x3c, 0xca, 0xdb, 0x8b, 0x83, 0xfb, 0xb2, 0x6a, 0xa2, 0xc3, 0xe2, 0xc0, 0xba, 0xc8, 0xa1, 0x9e, + 0xd2, 0xc8, 0xab, 0x30, 0xe3, 0x07, 0x8c, 0x5d, 0x24, 0xae, 0xe4, 0x05, 0xd8, 0x95, 0x5f, 0xd6, + 0x83, 0x08, 0xa4, 0x10, 0x70, 0x77, 0x1d, 0xda, 0x20, 0xbf, 0xb3, 0xd3, 0xe2, 0x4f, 0x7e, 0xa5, + 0x63, 0x01, 0x45, 0x4f, 0xc0, 0x70, 0x3b, 0x70, 0xab, 0x35, 0xc1, 0x2a, 0x6a, 0x59, 0x41, 0xdd, + 0x6a, 0x0d, 0x73, 0x18, 0x5a, 0x84, 0x11, 0xf6, 0x23, 0x9a, 0x1d, 0xcf, 0xf7, 0x16, 0x67, 0x35, + 0xb4, 0x3c, 0x1b, 0xac, 0x02, 0x16, 0x15, 0x99, 0x18, 0x86, 0xf2, 0xd7, 0x4c, 0x0c, 0x33, 0xfa, + 0x80, 0x62, 0x18, 0x49, 0x00, 0x27, 0xb4, 0xd0, 0x3d, 0x38, 0x63, 0xbc, 0x69, 0xf8, 0x12, 0x21, + 0x91, 0x70, 0x58, 0x7d, 0xa2, 0xe7, 0x63, 0x46, 0xe8, 0x2e, 0xcf, 0x8b, 0x4e, 0x9f, 0xa9, 0x66, + 0x51, 0xc2, 0xd9, 0x0d, 0xa0, 0x26, 0xcc, 0x34, 0xba, 0x5a, 0x2d, 0x0d, 0xde, 0xaa, 0x9a, 0xd0, + 0xee, 0x16, 0xbb, 0x09, 0xa3, 0x57, 0xa1, 0xf4, 0x4e, 0x10, 0xb1, 0x63, 0x56, 0xb0, 0xb7, 0xd2, + 0xdb, 0xb1, 0xf4, 0xc6, 0xcd, 0x3a, 0x2b, 0x3f, 0x3c, 0x98, 0x1f, 0xab, 0x05, 0xae, 0xfc, 0x8b, + 0x55, 0x05, 0xf4, 0x3d, 0x16, 0xcc, 0x75, 0x3f, 0x9a, 0x54, 0xa7, 0x27, 0x06, 0xef, 0xb4, 0x2d, + 0x1a, 0x9d, 0x5b, 0xc9, 0x25, 0x87, 0x7b, 0x34, 0x65, 0xff, 0x32, 0xd7, 0x33, 0x0a, 0x6d, 0x04, + 0x89, 0x3a, 0xcd, 0x93, 0xc8, 0x4b, 0xb8, 0x62, 0x28, 0x4a, 0x1e, 0x58, 0x97, 0xfd, 0x6b, 0x16, + 0xd3, 0x65, 0x6f, 0x90, 0x56, 0xbb, 0xe9, 0xc4, 0x27, 0xe1, 0x2c, 0xf7, 0x06, 0x94, 0x62, 0xd1, + 0x5a, 0xaf, 0x54, 0x8a, 0x5a, 0xa7, 0x98, 0x3e, 0x5f, 0x31, 0x9b, 0xb2, 0x14, 0x2b, 0x32, 0xf6, + 0x3f, 0xe6, 0x33, 0x20, 0x21, 0x27, 0x20, 0x8f, 0xae, 0x98, 0xf2, 0xe8, 0xf9, 0x3e, 0x5f, 0x90, + 0x23, 0x97, 0xfe, 0x47, 0x66, 0xbf, 0x99, 0x90, 0xe5, 0xfd, 0x6e, 0x44, 0x61, 0xff, 0x90, 0x05, + 0xa7, 0xb3, 0xac, 0x0e, 0xe9, 0x03, 0x81, 0x8b, 0x78, 0x94, 0x51, 0x89, 0x1a, 0xc1, 0xdb, 0xa2, + 0x1c, 0x2b, 0x8c, 0x81, 0xb3, 0x14, 0x1d, 0x2d, 0x6a, 0xe7, 0x4d, 0x98, 0xa8, 0x85, 0x44, 0xbb, + 0xd0, 0x5e, 0xe3, 0xde, 0xaf, 0xbc, 0x3f, 0xcf, 0x1c, 0xd9, 0xf3, 0xd5, 0xfe, 0xe9, 0x02, 0x9c, + 0xe6, 0x5a, 0xe1, 0xc5, 0xbd, 0xc0, 0x73, 0x6b, 0x81, 0x2b, 0x32, 0x4c, 0xbd, 0x09, 0xe3, 0x6d, + 0x4d, 0x2e, 0xd7, 0x2b, 0x02, 0x9d, 0x2e, 0xbf, 0x4b, 0x24, 0x09, 0x7a, 0x29, 0x36, 0x68, 0x21, + 0x17, 0xc6, 0xc9, 0x9e, 0xd7, 0x50, 0xaa, 0xc5, 0xc2, 0x91, 0x2f, 0x17, 0xd5, 0xca, 0x8a, 0x46, + 0x07, 0x1b, 0x54, 0x1f, 0x42, 0xd2, 0x51, 0xfb, 0x87, 0x2d, 0x78, 0x24, 0x27, 0x5e, 0x1d, 0x6d, + 0xee, 0x2e, 0xd3, 0xbf, 0x8b, 0xfc, 0x85, 0xaa, 0x39, 0xae, 0x95, 0xc7, 0x02, 0x8a, 0x3e, 0x0d, + 0xc0, 0xb5, 0xea, 0xf4, 0x85, 0xda, 0x2f, 0xb0, 0x97, 0x11, 0x93, 0x48, 0x0b, 0x2f, 0x23, 0xeb, + 0x63, 0x8d, 0x96, 0xfd, 0x13, 0x45, 0x18, 0xe6, 0x99, 0x97, 0x57, 0x61, 0x74, 0x87, 0xc7, 0xdd, + 0x1f, 0x24, 0xc4, 0x7f, 0x22, 0x3b, 0xe0, 0x05, 0x58, 0x56, 0x46, 0x6b, 0x70, 0x8a, 0xe7, 0x2d, + 0x68, 0x56, 0x48, 0xd3, 0xd9, 0x97, 0x82, 0x2e, 0x9e, 0xf3, 0x4f, 0x09, 0xfc, 0xaa, 0xdd, 0x28, + 0x38, 0xab, 0x1e, 0x7a, 0x0d, 0x26, 0xe9, 0xc3, 0x23, 0xe8, 0xc4, 0x92, 0x12, 0xcf, 0x58, 0xa0, + 0x5e, 0x3a, 0x1b, 0x06, 0x14, 0xa7, 0xb0, 0xe9, 0xdb, 0xb7, 0xdd, 0x25, 0xd2, 0x1b, 0x4e, 0xde, + 0xbe, 0xa6, 0x18, 0xcf, 0xc4, 0x65, 0xe6, 0x86, 0x1d, 0x66, 0x5c, 0xb9, 0xb1, 0x13, 0x92, 0x68, + 0x27, 0x68, 0xba, 0x8c, 0xd1, 0x1a, 0xd6, 0xcc, 0x0d, 0x53, 0x70, 0xdc, 0x55, 0x83, 0x52, 0xd9, + 0x72, 0xbc, 0x66, 0x27, 0x24, 0x09, 0x95, 0x11, 0x93, 0xca, 0x6a, 0x0a, 0x8e, 0xbb, 0x6a, 0xd0, + 0x75, 0x74, 0xa6, 0x16, 0x06, 0xf4, 0xf0, 0x92, 0x31, 0x38, 0x94, 0x0d, 0xe9, 0xa8, 0x74, 0x17, + 0xec, 0x11, 0xae, 0x4a, 0x58, 0xd9, 0x71, 0x0a, 0x86, 0x02, 0xb9, 0x2e, 0x1c, 0x05, 0x25, 0x15, + 0xf4, 0x1c, 0x8c, 0x89, 0x68, 0xf4, 0xcc, 0xd4, 0x91, 0x4f, 0x1d, 0x53, 0x78, 0x57, 0x92, 0x62, + 0xac, 0xe3, 0xd8, 0xdf, 0x5b, 0x80, 0x53, 0x19, 0xb6, 0xea, 0xfc, 0xa8, 0xda, 0xf6, 0xa2, 0x58, + 0xe5, 0x35, 0xd3, 0x8e, 0x2a, 0x5e, 0x8e, 0x15, 0x06, 0xdd, 0x0f, 0xfc, 0x30, 0x4c, 0x1f, 0x80, + 0xc2, 0x16, 0x54, 0x40, 0x8f, 0x98, 0x21, 0xec, 0x22, 0x0c, 0x75, 0x22, 0x22, 0x03, 0xcd, 0xa9, + 0xf3, 0x9b, 0x69, 0x5c, 0x18, 0x84, 0xb2, 0xc7, 0xdb, 0x4a, 0x79, 0xa1, 0xb1, 0xc7, 0x5c, 0x7d, + 0xc1, 0x61, 0xb4, 0x73, 0x31, 0xf1, 0x1d, 0x3f, 0x16, 0x4c, 0x74, 0x12, 0x31, 0x89, 0x95, 0x62, + 0x01, 0xb5, 0xbf, 0x54, 0x84, 0x73, 0xb9, 0xde, 0x2b, 0xb4, 0xeb, 0xad, 0xc0, 0xf7, 0xe2, 0x40, + 0x59, 0x12, 0xf0, 0x28, 0x49, 0xa4, 0xbd, 0xb3, 0x26, 0xca, 0xb1, 0xc2, 0x40, 0x97, 0x60, 0x98, + 0x09, 0x9d, 0xba, 0x32, 0xbc, 0x2d, 0x55, 0x78, 0xd4, 0x0c, 0x0e, 0x1e, 0x38, 0x7b, 0xe6, 0x13, + 0x30, 0xd4, 0x0e, 0x82, 0x66, 0xfa, 0xd0, 0xa2, 0xdd, 0x0d, 0x82, 0x26, 0x66, 0x40, 0xf4, 0x11, + 0x31, 0x5e, 0x29, 0xd5, 0x39, 0x76, 0xdc, 0x20, 0xd2, 0x06, 0xed, 0x29, 0x18, 0xdd, 0x25, 0xfb, + 0xa1, 0xe7, 0x6f, 0xa7, 0x4d, 0x2a, 0xae, 0xf3, 0x62, 0x2c, 0xe1, 0x66, 0xb2, 0x9e, 0xd1, 0xe3, + 0x4e, 0x7b, 0x59, 0xea, 0x7b, 0x05, 0x7e, 0x5f, 0x11, 0xa6, 0xf0, 0x52, 0xe5, 0x83, 0x89, 0xb8, + 0xd5, 0x3d, 0x11, 0xc7, 0x9d, 0xf6, 0xb2, 0xff, 0x6c, 0xfc, 0x82, 0x05, 0x53, 0x2c, 0x26, 0xbe, + 0x08, 0xaf, 0xe3, 0x05, 0xfe, 0x09, 0xb0, 0x78, 0x4f, 0xc0, 0x70, 0x48, 0x1b, 0x4d, 0xa7, 0x76, + 0x63, 0x3d, 0xc1, 0x1c, 0x86, 0x1e, 0x83, 0x21, 0xd6, 0x05, 0x3a, 0x79, 0xe3, 0x3c, 0x2b, 0x4e, + 0xc5, 0x89, 0x1d, 0xcc, 0x4a, 0x59, 0xcc, 0x08, 0x4c, 0xda, 0x4d, 0x8f, 0x77, 0x3a, 0x51, 0x09, + 0xbe, 0x3f, 0x62, 0x46, 0x64, 0x76, 0xed, 0xbd, 0xc5, 0x8c, 0xc8, 0x26, 0xd9, 0xfb, 0xf9, 0xf4, + 0x87, 0x05, 0xb8, 0x90, 0x59, 0x6f, 0xe0, 0x98, 0x11, 0xbd, 0x6b, 0x3f, 0xcc, 0xd8, 0xe9, 0xc5, + 0x13, 0x34, 0x58, 0x1b, 0x1a, 0x94, 0xc3, 0x1c, 0x1e, 0x20, 0x94, 0x43, 0xe6, 0x90, 0xbd, 0x4f, + 0x42, 0x39, 0x64, 0xf6, 0x2d, 0xe7, 0xf9, 0xf7, 0xe7, 0x85, 0x9c, 0x6f, 0x61, 0x0f, 0xc1, 0xcb, + 0xf4, 0x9c, 0x61, 0xc0, 0x48, 0x70, 0xcc, 0xe3, 0xfc, 0x8c, 0xe1, 0x65, 0x58, 0x41, 0xd1, 0x22, + 0x4c, 0xb5, 0x3c, 0x9f, 0x1e, 0x3e, 0xfb, 0x26, 0xe3, 0xa7, 0x22, 0xed, 0xac, 0x99, 0x60, 0x9c, + 0xc6, 0x47, 0x9e, 0x16, 0xe6, 0xa1, 0x90, 0x9f, 0x2c, 0x39, 0xb7, 0xb7, 0x0b, 0xa6, 0xba, 0x54, + 0x8d, 0x62, 0x46, 0xc8, 0x87, 0x35, 0xed, 0xfd, 0x5f, 0x1c, 0xfc, 0xfd, 0x3f, 0x9e, 0xfd, 0xf6, + 0x9f, 0x7b, 0x15, 0x26, 0x1e, 0x58, 0xe0, 0x6b, 0x7f, 0xa5, 0x08, 0x8f, 0xf6, 0xd8, 0xf6, 0xfc, + 0xac, 0x37, 0xe6, 0x40, 0x3b, 0xeb, 0xbb, 0xe6, 0xa1, 0x06, 0xa7, 0xb7, 0x3a, 0xcd, 0xe6, 0x3e, + 0xb3, 0x09, 0x27, 0xae, 0xc4, 0x10, 0x3c, 0xe5, 0x63, 0x32, 0x0f, 0xd1, 0x6a, 0x06, 0x0e, 0xce, + 0xac, 0x49, 0x19, 0x7a, 0x7a, 0x93, 0xec, 0x2b, 0x52, 0x29, 0x86, 0x1e, 0xeb, 0x40, 0x6c, 0xe2, + 0xa2, 0xab, 0x30, 0xe3, 0xec, 0x39, 0x1e, 0x0f, 0x96, 0x29, 0x09, 0x70, 0x8e, 0x5e, 0xc9, 0xe9, + 0x16, 0xd3, 0x08, 0xb8, 0xbb, 0x0e, 0x7a, 0x1d, 0x50, 0x20, 0x92, 0xbd, 0x5f, 0x25, 0xbe, 0xd0, + 0x6a, 0xb1, 0xb9, 0x2b, 0x26, 0x47, 0xc2, 0xcd, 0x2e, 0x0c, 0x9c, 0x51, 0x2b, 0x15, 0x36, 0x61, + 0x24, 0x3f, 0x6c, 0x42, 0xef, 0x73, 0xb1, 0x6f, 0xd8, 0xfe, 0xff, 0x62, 0xd1, 0xeb, 0x8b, 0x33, + 0xf9, 0x66, 0xf4, 0xaf, 0x57, 0x99, 0x41, 0x17, 0x97, 0xe1, 0x69, 0x11, 0x0c, 0xce, 0x68, 0x06, + 0x5d, 0x09, 0x10, 0x9b, 0xb8, 0x7c, 0x41, 0x44, 0x89, 0xe3, 0x9c, 0xc1, 0xe2, 0x8b, 0x10, 0x25, + 0x0a, 0x03, 0x7d, 0x06, 0x46, 0x5d, 0x6f, 0xcf, 0x8b, 0x82, 0x50, 0xac, 0xf4, 0x23, 0xaa, 0x0b, + 0x92, 0x73, 0xb0, 0xc2, 0xc9, 0x60, 0x49, 0xcf, 0xfe, 0xbe, 0x02, 0x4c, 0xc8, 0x16, 0xdf, 0xe8, + 0x04, 0xb1, 0x73, 0x02, 0xd7, 0xf2, 0x55, 0xe3, 0x5a, 0xfe, 0x48, 0xaf, 0x38, 0x2d, 0xac, 0x4b, + 0xb9, 0xd7, 0xf1, 0xcd, 0xd4, 0x75, 0xfc, 0x64, 0x7f, 0x52, 0xbd, 0xaf, 0xe1, 0x7f, 0x62, 0xc1, + 0x8c, 0x81, 0x7f, 0x02, 0xb7, 0xc1, 0xaa, 0x79, 0x1b, 0x3c, 0xde, 0xf7, 0x1b, 0x72, 0x6e, 0x81, + 0xef, 0x2a, 0xa6, 0xfa, 0xce, 0x4e, 0xff, 0x77, 0x60, 0x68, 0xc7, 0x09, 0xdd, 0x5e, 0x81, 0xa9, + 0xbb, 0x2a, 0x2d, 0x5c, 0x73, 0x42, 0xa1, 0xd6, 0x7b, 0x46, 0xe5, 0x2a, 0x76, 0xc2, 0xfe, 0x2a, + 0x3d, 0xd6, 0x14, 0x7a, 0x05, 0x46, 0xa2, 0x46, 0xd0, 0x56, 0x56, 0xdc, 0x17, 0x79, 0x1e, 0x63, + 0x5a, 0x72, 0x78, 0x30, 0x8f, 0xcc, 0xe6, 0x68, 0x31, 0x16, 0xf8, 0xe8, 0x4d, 0x98, 0x60, 0xbf, + 0x94, 0x8d, 0x4d, 0x31, 0x3f, 0x89, 0x4d, 0x5d, 0x47, 0xe4, 0x06, 0x68, 0x46, 0x11, 0x36, 0x49, + 0xcd, 0x6d, 0x43, 0x59, 0x7d, 0xd6, 0x43, 0xd5, 0xc7, 0xfd, 0xfb, 0x22, 0x9c, 0xca, 0x58, 0x73, + 0x28, 0x32, 0x66, 0xe2, 0xb9, 0x01, 0x97, 0xea, 0x7b, 0x9c, 0x8b, 0x88, 0xbd, 0x86, 0x5c, 0xb1, + 0xb6, 0x06, 0x6e, 0xf4, 0x56, 0x44, 0xd2, 0x8d, 0xd2, 0xa2, 0xfe, 0x8d, 0xd2, 0xc6, 0x4e, 0x6c, + 0xa8, 0x69, 0x43, 0xaa, 0xa7, 0x0f, 0x75, 0x4e, 0xff, 0xa4, 0x08, 0xa7, 0xb3, 0x42, 0x47, 0xa1, + 0x6f, 0x4d, 0x25, 0x34, 0x7b, 0x71, 0xd0, 0xa0, 0x53, 0x3c, 0xcb, 0x19, 0x97, 0x01, 0x2f, 0x2d, + 0x98, 0x29, 0xce, 0xfa, 0x0e, 0xb3, 0x68, 0x93, 0x39, 0x85, 0x87, 0x3c, 0x11, 0x9d, 0x3c, 0x3e, + 0x3e, 0x3e, 0x70, 0x07, 0x44, 0x06, 0xbb, 0x28, 0xa5, 0xbf, 0x97, 0xc5, 0xfd, 0xf5, 0xf7, 0xb2, + 0xe5, 0x39, 0x0f, 0xc6, 0xb4, 0xaf, 0x79, 0xa8, 0x33, 0xbe, 0x4b, 0x6f, 0x2b, 0xad, 0xdf, 0x0f, + 0x75, 0xd6, 0x7f, 0xd8, 0x82, 0x94, 0x35, 0xb4, 0x12, 0x8b, 0x59, 0xb9, 0x62, 0xb1, 0x8b, 0x30, + 0x14, 0x06, 0x4d, 0x92, 0xce, 0x1f, 0x86, 0x83, 0x26, 0xc1, 0x0c, 0x42, 0x31, 0xe2, 0x44, 0xd8, + 0x31, 0xae, 0x3f, 0xe4, 0xc4, 0x13, 0xed, 0x09, 0x18, 0x6e, 0x92, 0x3d, 0xd2, 0x4c, 0xa7, 0x79, + 0xb8, 0x41, 0x0b, 0x31, 0x87, 0xd9, 0xbf, 0x30, 0x04, 0xe7, 0x7b, 0x86, 0x55, 0xa0, 0xcf, 0xa1, + 0x6d, 0x27, 0x26, 0x77, 0x9d, 0xfd, 0x74, 0x3c, 0xf6, 0xab, 0xbc, 0x18, 0x4b, 0x38, 0xf3, 0x22, + 0xe1, 0x51, 0x55, 0x53, 0x42, 0x44, 0x11, 0x4c, 0x55, 0x40, 0x4d, 0xa1, 0x54, 0xf1, 0x38, 0x84, + 0x52, 0xcf, 0x03, 0x44, 0x51, 0x93, 0x1b, 0xbe, 0xb8, 0xc2, 0x3d, 0x25, 0x89, 0xbe, 0x5b, 0xbf, + 0x21, 0x20, 0x58, 0xc3, 0x42, 0x15, 0x98, 0x6e, 0x87, 0x41, 0xcc, 0x65, 0xb2, 0x15, 0x6e, 0x1b, + 0x36, 0x6c, 0x7a, 0xb4, 0xd7, 0x52, 0x70, 0xdc, 0x55, 0x03, 0xbd, 0x04, 0x63, 0xc2, 0xcb, 0xbd, + 0x16, 0x04, 0x4d, 0x21, 0x06, 0x52, 0xe6, 0x52, 0xf5, 0x04, 0x84, 0x75, 0x3c, 0xad, 0x1a, 0x13, + 0xf4, 0x8e, 0x66, 0x56, 0xe3, 0xc2, 0x5e, 0x0d, 0x2f, 0x15, 0x46, 0xae, 0x34, 0x50, 0x18, 0xb9, + 0x44, 0x30, 0x56, 0x1e, 0x58, 0xb7, 0x05, 0x7d, 0x45, 0x49, 0x3f, 0x3b, 0x04, 0xa7, 0xc4, 0xc2, + 0x79, 0xd8, 0xcb, 0xe5, 0x56, 0xf7, 0x72, 0x39, 0x0e, 0xd1, 0xd9, 0x07, 0x6b, 0xe6, 0xa4, 0xd7, + 0xcc, 0xf7, 0x5b, 0x60, 0xb2, 0x57, 0xe8, 0xff, 0xcb, 0x4d, 0x68, 0xf1, 0x52, 0x2e, 0xbb, 0xe6, + 0xca, 0x0b, 0xe4, 0x3d, 0xa6, 0xb6, 0xb0, 0xff, 0x93, 0x05, 0x8f, 0xf7, 0xa5, 0x88, 0x56, 0xa0, + 0xcc, 0x78, 0x40, 0xed, 0x75, 0xf6, 0xa4, 0xb2, 0x1d, 0x95, 0x80, 0x1c, 0x96, 0x34, 0xa9, 0x89, + 0x56, 0xba, 0x32, 0x87, 0x3c, 0x95, 0x91, 0x39, 0xe4, 0x8c, 0x31, 0x3c, 0x0f, 0x98, 0x3a, 0xe4, + 0x97, 0x8b, 0x30, 0xc2, 0x57, 0xfc, 0x09, 0x3c, 0xc3, 0x56, 0x85, 0xdc, 0xb6, 0x47, 0x9c, 0x3a, + 0xde, 0x97, 0x85, 0x8a, 0x13, 0x3b, 0x9c, 0x4d, 0x50, 0xb7, 0x55, 0x22, 0xe1, 0x45, 0x9f, 0x03, + 0x88, 0xe2, 0xd0, 0xf3, 0xb7, 0x69, 0x99, 0x88, 0x60, 0xf8, 0xd1, 0x1e, 0xd4, 0xea, 0x0a, 0x99, + 0xd3, 0x4c, 0x76, 0xae, 0x02, 0x60, 0x8d, 0x22, 0x5a, 0x30, 0xee, 0xcb, 0xb9, 0x94, 0xe0, 0x13, + 0x38, 0xd5, 0xe4, 0xf6, 0x9c, 0x7b, 0x19, 0xca, 0x8a, 0x78, 0x3f, 0x29, 0xce, 0xb8, 0xce, 0x5c, + 0x7c, 0x0a, 0xa6, 0x52, 0x7d, 0x3b, 0x92, 0x10, 0xe8, 0x17, 0x2d, 0x98, 0xe2, 0x9d, 0x59, 0xf1, + 0xf7, 0xc4, 0x99, 0xfa, 0x2e, 0x9c, 0x6e, 0x66, 0x9c, 0x6d, 0x62, 0x46, 0x07, 0x3f, 0x0b, 0x95, + 0xd0, 0x27, 0x0b, 0x8a, 0x33, 0xdb, 0x40, 0x97, 0xe9, 0xba, 0xa5, 0x67, 0x97, 0xd3, 0x14, 0xce, + 0x86, 0xe3, 0x7c, 0xcd, 0xf2, 0x32, 0xac, 0xa0, 0xf6, 0x6f, 0x5b, 0x30, 0xc3, 0x7b, 0x7e, 0x9d, + 0xec, 0xab, 0x1d, 0xfe, 0xb5, 0xec, 0xbb, 0x48, 0xe6, 0x53, 0xc8, 0x49, 0xe6, 0xa3, 0x7f, 0x5a, + 0xb1, 0xe7, 0xa7, 0xfd, 0xb4, 0x05, 0x62, 0x85, 0x9c, 0xc0, 0x53, 0xfe, 0x1b, 0xcd, 0xa7, 0xfc, + 0x5c, 0xfe, 0x26, 0xc8, 0x79, 0xc3, 0xff, 0x99, 0x05, 0xd3, 0x1c, 0x21, 0xd1, 0x39, 0x7f, 0x4d, + 0xe7, 0x61, 0x90, 0x94, 0x9f, 0xd7, 0xc9, 0xfe, 0x46, 0x50, 0x73, 0xe2, 0x9d, 0xec, 0x8f, 0x32, + 0x26, 0x6b, 0xa8, 0xe7, 0x64, 0xb9, 0x72, 0x03, 0x1d, 0x21, 0x8f, 0xf0, 0x91, 0x43, 0xdd, 0xdb, + 0x5f, 0xb5, 0x00, 0xf1, 0x66, 0x0c, 0xf6, 0x87, 0x32, 0x15, 0xac, 0x54, 0xbb, 0x2e, 0x92, 0xa3, + 0x49, 0x41, 0xb0, 0x86, 0x75, 0x2c, 0xc3, 0x93, 0x32, 0x1c, 0x28, 0xf6, 0x37, 0x1c, 0x38, 0xc2, + 0x88, 0xfe, 0xc1, 0x30, 0xa4, 0x3d, 0x40, 0xd0, 0x6d, 0x18, 0x6f, 0x38, 0x6d, 0x67, 0xd3, 0x6b, + 0x7a, 0xb1, 0x47, 0xa2, 0x5e, 0x16, 0x47, 0xcb, 0x1a, 0x9e, 0x50, 0xf5, 0x6a, 0x25, 0xd8, 0xa0, + 0x83, 0x16, 0x00, 0xda, 0xa1, 0xb7, 0xe7, 0x35, 0xc9, 0x36, 0x93, 0x38, 0x30, 0xf7, 0x66, 0x6e, + 0x46, 0x23, 0x4b, 0xb1, 0x86, 0x91, 0xe1, 0xa9, 0x5a, 0x7c, 0xc8, 0x9e, 0xaa, 0x70, 0x62, 0x9e, + 0xaa, 0x43, 0x47, 0xf2, 0x54, 0x2d, 0x1d, 0xd9, 0x53, 0x75, 0x78, 0x20, 0x4f, 0x55, 0x0c, 0x67, + 0x25, 0x07, 0x47, 0xff, 0xaf, 0x7a, 0x4d, 0x22, 0xd8, 0x76, 0xee, 0x93, 0x3d, 0x77, 0xff, 0x60, + 0xfe, 0x2c, 0xce, 0xc4, 0xc0, 0x39, 0x35, 0xd1, 0xa7, 0x61, 0xd6, 0x69, 0x36, 0x83, 0xbb, 0x6a, + 0x52, 0x57, 0xa2, 0x86, 0xd3, 0xe4, 0xa2, 0xfc, 0x51, 0x46, 0xf5, 0xb1, 0xfb, 0x07, 0xf3, 0xb3, + 0x8b, 0x39, 0x38, 0x38, 0xb7, 0x36, 0xfa, 0x24, 0x94, 0xdb, 0x61, 0xd0, 0x58, 0xd3, 0xdc, 0xd4, + 0x2e, 0xd0, 0x01, 0xac, 0xc9, 0xc2, 0xc3, 0x83, 0xf9, 0x09, 0xf5, 0x87, 0x5d, 0xf8, 0x49, 0x05, + 0x7b, 0x17, 0x4e, 0xd5, 0x49, 0xe8, 0xb1, 0xac, 0xc0, 0x6e, 0x72, 0x7e, 0x6c, 0x40, 0x39, 0x4c, + 0x9d, 0x98, 0x03, 0xc5, 0x76, 0xd3, 0x62, 0x82, 0xcb, 0x13, 0x32, 0x21, 0x64, 0xff, 0x6f, 0x0b, + 0x46, 0x85, 0x47, 0xc6, 0x09, 0x30, 0x6a, 0x8b, 0x86, 0xbc, 0x7c, 0x3e, 0xfb, 0x56, 0x61, 0x9d, + 0xc9, 0x95, 0x94, 0x57, 0x53, 0x92, 0xf2, 0xc7, 0x7b, 0x11, 0xe9, 0x2d, 0x23, 0xff, 0x9b, 0x45, + 0x98, 0x34, 0x5d, 0xf7, 0x4e, 0x60, 0x08, 0xd6, 0x61, 0x34, 0x12, 0xbe, 0x69, 0x85, 0x7c, 0x8b, + 0xec, 0xf4, 0x24, 0x26, 0xd6, 0x5a, 0xc2, 0x1b, 0x4d, 0x12, 0xc9, 0x74, 0x7a, 0x2b, 0x3e, 0x44, + 0xa7, 0xb7, 0x7e, 0xde, 0x93, 0x43, 0xc7, 0xe1, 0x3d, 0x69, 0x7f, 0x99, 0xdd, 0x6c, 0x7a, 0xf9, + 0x09, 0x30, 0x3d, 0x57, 0xcd, 0x3b, 0xd0, 0xee, 0xb1, 0xb2, 0x44, 0xa7, 0x72, 0x98, 0x9f, 0x9f, + 0xb7, 0xe0, 0x7c, 0xc6, 0x57, 0x69, 0x9c, 0xd0, 0x33, 0x50, 0x72, 0x3a, 0xae, 0xa7, 0xf6, 0xb2, + 0xa6, 0x35, 0x5b, 0x14, 0xe5, 0x58, 0x61, 0xa0, 0x65, 0x98, 0x21, 0xf7, 0xda, 0x1e, 0x57, 0x18, + 0xea, 0x26, 0x95, 0x45, 0x1e, 0xef, 0x7a, 0x25, 0x0d, 0xc4, 0xdd, 0xf8, 0x2a, 0xd8, 0x43, 0x31, + 0x37, 0xd8, 0xc3, 0xdf, 0xb7, 0x60, 0x4c, 0x79, 0x67, 0x3d, 0xf4, 0xd1, 0xfe, 0x26, 0x73, 0xb4, + 0x1f, 0xed, 0x31, 0xda, 0x39, 0xc3, 0xfc, 0xb7, 0x0b, 0xaa, 0xbf, 0xb5, 0x20, 0x8c, 0x07, 0xe0, + 0xb0, 0x5e, 0x81, 0x52, 0x3b, 0x0c, 0xe2, 0xa0, 0x11, 0x34, 0x05, 0x83, 0xf5, 0x58, 0x12, 0x8b, + 0x84, 0x97, 0x1f, 0x6a, 0xbf, 0xb1, 0xc2, 0x66, 0xa3, 0x17, 0x84, 0xb1, 0x60, 0x6a, 0x92, 0xd1, + 0x0b, 0xc2, 0x18, 0x33, 0x08, 0x72, 0x01, 0x62, 0x27, 0xdc, 0x26, 0x31, 0x2d, 0x13, 0xb1, 0x8f, + 0xf2, 0x0f, 0x8f, 0x4e, 0xec, 0x35, 0x17, 0x3c, 0x3f, 0x8e, 0xe2, 0x70, 0xa1, 0xea, 0xc7, 0x37, + 0x43, 0xfe, 0x5e, 0xd3, 0x82, 0x8b, 0x28, 0x5a, 0x58, 0xa3, 0x2b, 0xdd, 0x8a, 0x59, 0x1b, 0xc3, + 0xa6, 0xfe, 0x7d, 0x5d, 0x94, 0x63, 0x85, 0x61, 0xbf, 0xcc, 0xae, 0x12, 0x36, 0x40, 0x47, 0x8b, + 0xfb, 0xf1, 0x9d, 0x65, 0x35, 0xb4, 0x4c, 0xf9, 0x56, 0xd1, 0xa3, 0x8b, 0xf4, 0x3e, 0xb9, 0x69, + 0xc3, 0xba, 0x8b, 0x51, 0x12, 0x82, 0x04, 0x7d, 0x73, 0x97, 0x4d, 0xc5, 0xb3, 0x7d, 0xae, 0x80, + 0x23, 0x58, 0x51, 0xb0, 0x18, 0xfc, 0x2c, 0x42, 0x79, 0xb5, 0x26, 0x16, 0xb9, 0x16, 0x83, 0x5f, + 0x00, 0x70, 0x82, 0x83, 0xae, 0x88, 0xd7, 0xf8, 0x90, 0x91, 0x79, 0x52, 0xbe, 0xc6, 0xe5, 0xe7, + 0x6b, 0xc2, 0xec, 0xe7, 0x60, 0x4c, 0x65, 0xa0, 0xac, 0xf1, 0xc4, 0x86, 0x22, 0x12, 0xd4, 0x4a, + 0x52, 0x8c, 0x75, 0x1c, 0xb4, 0x01, 0x53, 0x11, 0x17, 0xf5, 0xa8, 0x80, 0x9f, 0x5c, 0x64, 0xf6, + 0x51, 0x69, 0x88, 0x52, 0x37, 0xc1, 0x87, 0xac, 0x88, 0x1f, 0x1d, 0xd2, 0x95, 0x37, 0x4d, 0x02, + 0xbd, 0x06, 0x93, 0xcd, 0xc0, 0x71, 0x97, 0x9c, 0xa6, 0xe3, 0x37, 0xd8, 0xf7, 0x96, 0xcc, 0x44, + 0x66, 0x37, 0x0c, 0x28, 0x4e, 0x61, 0x53, 0xce, 0x47, 0x2f, 0x11, 0x41, 0x6a, 0x1d, 0x7f, 0x9b, + 0x44, 0x22, 0x9f, 0x20, 0xe3, 0x7c, 0x6e, 0xe4, 0xe0, 0xe0, 0xdc, 0xda, 0xe8, 0x15, 0x18, 0x97, + 0x9f, 0xaf, 0x79, 0xbe, 0x27, 0xb6, 0xf7, 0x1a, 0x0c, 0x1b, 0x98, 0xe8, 0x2e, 0x9c, 0x91, 0xff, + 0x37, 0x42, 0x67, 0x6b, 0xcb, 0x6b, 0x08, 0x77, 0x50, 0xee, 0x18, 0xb7, 0x28, 0xbd, 0xb7, 0x56, + 0xb2, 0x90, 0x0e, 0x0f, 0xe6, 0x2f, 0x8a, 0x51, 0xcb, 0x84, 0xb3, 0x49, 0xcc, 0xa6, 0x8f, 0xd6, + 0xe0, 0xd4, 0x0e, 0x71, 0x9a, 0xf1, 0xce, 0xf2, 0x0e, 0x69, 0xec, 0xca, 0x4d, 0xc4, 0xfc, 0xe9, + 0x35, 0x8b, 0xf5, 0x6b, 0xdd, 0x28, 0x38, 0xab, 0x1e, 0x7a, 0x0b, 0x66, 0xdb, 0x9d, 0xcd, 0xa6, + 0x17, 0xed, 0xac, 0x07, 0x31, 0xb3, 0x46, 0x51, 0x09, 0x2d, 0x85, 0xe3, 0xbd, 0x8a, 0x58, 0x50, + 0xcb, 0xc1, 0xc3, 0xb9, 0x14, 0xd0, 0xbb, 0x70, 0x26, 0xb5, 0x18, 0x84, 0xeb, 0xf1, 0x64, 0x7e, + 0xc8, 0xef, 0x7a, 0x56, 0x05, 0xe1, 0xc5, 0x9f, 0x05, 0xc2, 0xd9, 0x4d, 0xa0, 0x17, 0xa1, 0xe4, + 0xb5, 0x57, 0x9d, 0x96, 0xd7, 0xdc, 0x67, 0x31, 0xcb, 0xcb, 0x2c, 0x8e, 0x77, 0xa9, 0x5a, 0xe3, + 0x65, 0x87, 0xda, 0x6f, 0xac, 0x30, 0xdf, 0x9b, 0x35, 0xd2, 0x3b, 0xb4, 0xb2, 0xc6, 0xca, 0xa1, + 0xcf, 0xc3, 0xb8, 0xbe, 0xf6, 0xc4, 0xb5, 0x74, 0x29, 0x9b, 0xd3, 0xd1, 0xd6, 0x28, 0x67, 0x04, + 0xd5, 0x3a, 0xd4, 0x61, 0xd8, 0xa0, 0x68, 0x13, 0xc8, 0x1e, 0x15, 0x74, 0x03, 0x4a, 0x8d, 0xa6, + 0x47, 0xfc, 0xb8, 0x5a, 0xeb, 0x15, 0x88, 0x68, 0x59, 0xe0, 0x88, 0x61, 0x16, 0x91, 0x95, 0x79, + 0x19, 0x56, 0x14, 0xec, 0x5f, 0x2d, 0xc0, 0x7c, 0x9f, 0x30, 0xdd, 0x29, 0xa1, 0xb9, 0x35, 0x90, + 0xd0, 0x7c, 0x51, 0x26, 0xf5, 0x5c, 0x4f, 0x49, 0x12, 0x52, 0x09, 0x3b, 0x13, 0x79, 0x42, 0x1a, + 0x7f, 0x60, 0x23, 0x66, 0x5d, 0xee, 0x3e, 0xd4, 0xd7, 0x0c, 0xdf, 0xd0, 0xb7, 0x0d, 0x0f, 0xfe, + 0x7c, 0xc9, 0xd5, 0x9d, 0xd8, 0x5f, 0x2e, 0xc0, 0x19, 0x35, 0x84, 0x5f, 0xbf, 0x03, 0x77, 0xab, + 0x7b, 0xe0, 0x8e, 0x41, 0xf3, 0x64, 0xdf, 0x84, 0x11, 0x1e, 0x59, 0x69, 0x00, 0xb6, 0xe9, 0x09, + 0x33, 0x34, 0xa0, 0xba, 0xdc, 0x8d, 0xf0, 0x80, 0xdf, 0x63, 0xc1, 0xd4, 0xc6, 0x72, 0xad, 0x1e, + 0x34, 0x76, 0x49, 0xbc, 0xc8, 0xd9, 0x5c, 0x2c, 0xb8, 0x26, 0xeb, 0x01, 0xb9, 0xa1, 0x2c, 0x3e, + 0xeb, 0x22, 0x0c, 0xed, 0x04, 0x51, 0x9c, 0x56, 0x4b, 0x5f, 0x0b, 0xa2, 0x18, 0x33, 0x88, 0xfd, + 0x3b, 0x16, 0x0c, 0xb3, 0x3c, 0xd6, 0xfd, 0x32, 0xa9, 0x0f, 0xf2, 0x5d, 0xe8, 0x25, 0x18, 0x21, + 0x5b, 0x5b, 0xa4, 0x11, 0x8b, 0x59, 0x95, 0x7e, 0xc4, 0x23, 0x2b, 0xac, 0x94, 0xb2, 0x0a, 0xac, + 0x31, 0xfe, 0x17, 0x0b, 0x64, 0x74, 0x07, 0xca, 0xb1, 0xd7, 0x22, 0x8b, 0xae, 0x2b, 0x14, 0x7b, + 0x0f, 0xe0, 0x0b, 0xbd, 0x21, 0x09, 0xe0, 0x84, 0x96, 0xfd, 0xa5, 0x02, 0x40, 0x12, 0x57, 0xa3, + 0xdf, 0x27, 0x2e, 0x75, 0xa9, 0x7c, 0x2e, 0x65, 0xa8, 0x7c, 0x50, 0x42, 0x30, 0x43, 0xdf, 0xa3, + 0x86, 0xa9, 0x38, 0xd0, 0x30, 0x0d, 0x1d, 0x65, 0x98, 0x96, 0x61, 0x26, 0x89, 0x0b, 0x62, 0x86, + 0x45, 0x62, 0x4f, 0x9b, 0x8d, 0x34, 0x10, 0x77, 0xe3, 0xdb, 0x04, 0x2e, 0xaa, 0xf0, 0x08, 0xe2, + 0xae, 0x61, 0x76, 0xa3, 0x47, 0x48, 0xaa, 0x9f, 0xe8, 0xb4, 0x0a, 0xb9, 0x3a, 0xad, 0x1f, 0xb3, + 0xe0, 0x74, 0xba, 0x1d, 0xe6, 0xc8, 0xf7, 0x45, 0x0b, 0xce, 0x30, 0xcd, 0x1e, 0x6b, 0xb5, 0x5b, + 0x8f, 0xf8, 0x62, 0xcf, 0x90, 0x0f, 0x39, 0x3d, 0x4e, 0x1c, 0xd6, 0xd7, 0xb2, 0x48, 0xe3, 0xec, + 0x16, 0xed, 0xff, 0x58, 0x80, 0xd9, 0xbc, 0x58, 0x11, 0xcc, 0xac, 0xdc, 0xb9, 0x57, 0xdf, 0x25, + 0x77, 0x85, 0xf1, 0x6e, 0x62, 0x56, 0xce, 0x8b, 0xb1, 0x84, 0xa7, 0x23, 0x2f, 0x17, 0x06, 0x8b, + 0xbc, 0x8c, 0x76, 0x60, 0xe6, 0xee, 0x0e, 0xf1, 0x6f, 0xf9, 0x91, 0x13, 0x7b, 0xd1, 0x96, 0xc7, + 0x32, 0xa2, 0xf3, 0x75, 0xf3, 0x09, 0x69, 0x62, 0x7b, 0x27, 0x8d, 0x70, 0x78, 0x30, 0x7f, 0xde, + 0x28, 0x48, 0xba, 0xcc, 0x0f, 0x12, 0xdc, 0x4d, 0xb4, 0x3b, 0x70, 0xf5, 0xd0, 0x43, 0x0c, 0x5c, + 0x6d, 0x7f, 0xd1, 0x82, 0x73, 0xb9, 0x89, 0xe5, 0xd0, 0x65, 0x28, 0x39, 0x6d, 0x8f, 0x8b, 0x40, + 0xc5, 0x31, 0xca, 0x9e, 0xf2, 0xb5, 0x2a, 0x17, 0x80, 0x2a, 0xa8, 0x4a, 0x78, 0x5b, 0xc8, 0x4d, + 0x78, 0xdb, 0x37, 0x7f, 0xad, 0xfd, 0xdd, 0x16, 0x08, 0x97, 0xb8, 0x01, 0xce, 0xee, 0x37, 0x65, + 0xbe, 0x70, 0x23, 0xb9, 0xc5, 0xc5, 0x7c, 0x1f, 0x41, 0x91, 0xd2, 0x42, 0xf1, 0x4a, 0x46, 0x22, + 0x0b, 0x83, 0x96, 0xed, 0x82, 0x80, 0x56, 0x08, 0x13, 0x20, 0xf6, 0xef, 0xcd, 0xf3, 0x00, 0x2e, + 0xc3, 0xd5, 0xb2, 0x06, 0xab, 0x9b, 0xb9, 0xa2, 0x20, 0x58, 0xc3, 0xb2, 0xff, 0x6d, 0x01, 0xc6, + 0x64, 0x32, 0x85, 0x8e, 0x3f, 0xc8, 0x33, 0xff, 0x48, 0xd9, 0xd5, 0x58, 0x9a, 0x6d, 0x4a, 0xb8, + 0x96, 0x48, 0x47, 0x92, 0x34, 0xdb, 0x12, 0x80, 0x13, 0x1c, 0xba, 0x8b, 0xa2, 0xce, 0x26, 0x43, + 0x4f, 0x39, 0x70, 0xd5, 0x79, 0x31, 0x96, 0x70, 0xf4, 0x69, 0x98, 0xe6, 0xf5, 0xc2, 0xa0, 0xed, + 0x6c, 0x73, 0xd9, 0xf2, 0xb0, 0xf2, 0xbc, 0x9e, 0x5e, 0x4b, 0xc1, 0x0e, 0x0f, 0xe6, 0x4f, 0xa7, + 0xcb, 0x98, 0xd2, 0xa4, 0x8b, 0x0a, 0x33, 0xc4, 0xe0, 0x8d, 0xd0, 0xdd, 0xdf, 0x65, 0xbf, 0x91, + 0x80, 0xb0, 0x8e, 0x67, 0x7f, 0x1e, 0x50, 0x77, 0x5a, 0x09, 0xf4, 0x3a, 0xb7, 0xbe, 0xf3, 0x42, + 0xe2, 0xf6, 0x52, 0xa2, 0xe8, 0xfe, 0xc5, 0xd2, 0xf7, 0x82, 0xd7, 0xc2, 0xaa, 0xbe, 0xfd, 0x57, + 0x8a, 0x30, 0x9d, 0xf6, 0x36, 0x45, 0xd7, 0x60, 0x84, 0xb3, 0x1e, 0x82, 0x7c, 0x0f, 0x1d, 0xbd, + 0xe6, 0xa3, 0xca, 0x0e, 0x61, 0xc1, 0xbd, 0x88, 0xfa, 0xe8, 0x2d, 0x18, 0x73, 0x83, 0xbb, 0xfe, + 0x5d, 0x27, 0x74, 0x17, 0x6b, 0x55, 0xb1, 0x9c, 0x33, 0xdf, 0x3d, 0x95, 0x04, 0x4d, 0xf7, 0x7b, + 0x65, 0xfa, 0xa8, 0x04, 0x84, 0x75, 0x72, 0x68, 0x83, 0x45, 0xc1, 0xdd, 0xf2, 0xb6, 0xd7, 0x9c, + 0x76, 0x2f, 0x53, 0xec, 0x65, 0x89, 0xa4, 0x51, 0x9e, 0x10, 0xa1, 0x72, 0x39, 0x00, 0x27, 0x84, + 0xd0, 0xb7, 0xc2, 0xa9, 0x28, 0x47, 0x54, 0x9a, 0x97, 0x65, 0xa8, 0x97, 0xf4, 0x70, 0xe9, 0x11, + 0xfa, 0x22, 0xcd, 0x12, 0xaa, 0x66, 0x35, 0x63, 0xff, 0xda, 0x29, 0x30, 0x36, 0xb1, 0x91, 0x74, + 0xce, 0x3a, 0xa6, 0xa4, 0x73, 0x18, 0x4a, 0xa4, 0xd5, 0x8e, 0xf7, 0x2b, 0x5e, 0xd8, 0x2b, 0x6b, + 0xe9, 0x8a, 0xc0, 0xe9, 0xa6, 0x29, 0x21, 0x58, 0xd1, 0xc9, 0xce, 0x0c, 0x58, 0xfc, 0x1a, 0x66, + 0x06, 0x1c, 0x3a, 0xc1, 0xcc, 0x80, 0xeb, 0x30, 0xba, 0xed, 0xc5, 0x98, 0xb4, 0x03, 0xc1, 0xf4, + 0x67, 0xae, 0xc3, 0xab, 0x1c, 0xa5, 0x3b, 0x07, 0x95, 0x00, 0x60, 0x49, 0x04, 0xbd, 0xae, 0x76, + 0xe0, 0x48, 0xfe, 0x9b, 0xb9, 0x5b, 0x99, 0x9c, 0xb9, 0x07, 0x45, 0xfe, 0xbf, 0xd1, 0x07, 0xcd, + 0xff, 0xb7, 0x2a, 0xb3, 0xf6, 0x95, 0xf2, 0xfd, 0x26, 0x58, 0x52, 0xbe, 0x3e, 0xb9, 0xfa, 0x6e, + 0xeb, 0x99, 0x0e, 0xcb, 0xf9, 0x27, 0x81, 0x4a, 0x62, 0x38, 0x60, 0x7e, 0xc3, 0xef, 0xb6, 0xe0, + 0x4c, 0x3b, 0x2b, 0xe9, 0xa7, 0xd0, 0xbb, 0xbe, 0x34, 0x70, 0x56, 0x53, 0xa3, 0x41, 0x26, 0x72, + 0xc9, 0x44, 0xc3, 0xd9, 0xcd, 0xd1, 0x81, 0x0e, 0x37, 0x5d, 0x91, 0xa0, 0xef, 0x89, 0x9c, 0x44, + 0x89, 0x3d, 0xd2, 0x23, 0x6e, 0x64, 0x24, 0xe5, 0xfb, 0x70, 0x5e, 0x52, 0xbe, 0x81, 0x53, 0xf1, + 0xbd, 0xae, 0x52, 0x24, 0x4e, 0xe4, 0x2f, 0x25, 0x9e, 0x00, 0xb1, 0x6f, 0x62, 0xc4, 0xd7, 0x55, + 0x62, 0xc4, 0x1e, 0x11, 0x21, 0x79, 0xda, 0xc3, 0xbe, 0xe9, 0x10, 0xb5, 0x94, 0x86, 0x53, 0xc7, + 0x93, 0xd2, 0xd0, 0xb8, 0x6a, 0x78, 0x56, 0xbd, 0xa7, 0xfb, 0x5c, 0x35, 0x06, 0xdd, 0xde, 0x97, + 0x0d, 0x4f, 0xdf, 0x38, 0xf3, 0x40, 0xe9, 0x1b, 0x6f, 0xeb, 0xe9, 0x10, 0x51, 0x9f, 0x7c, 0x7f, + 0x14, 0x69, 0xc0, 0x24, 0x88, 0xb7, 0xf5, 0x0b, 0xf0, 0x54, 0x3e, 0x5d, 0x75, 0xcf, 0x75, 0xd3, + 0xcd, 0xbc, 0x02, 0xbb, 0x92, 0x2b, 0x9e, 0x3e, 0x99, 0xe4, 0x8a, 0x67, 0x8e, 0x3d, 0xb9, 0xe2, + 0xd9, 0x13, 0x48, 0xae, 0xf8, 0xc8, 0x09, 0x26, 0x57, 0xbc, 0xcd, 0x8c, 0x15, 0x78, 0x60, 0x11, + 0x11, 0xc1, 0x32, 0x3b, 0x5a, 0x62, 0x56, 0xf4, 0x11, 0xfe, 0x71, 0x0a, 0x84, 0x13, 0x52, 0x19, + 0x49, 0x1b, 0x67, 0x1f, 0x42, 0xd2, 0xc6, 0xf5, 0x24, 0x69, 0xe3, 0xb9, 0xfc, 0xa9, 0xce, 0x30, + 0x12, 0xcf, 0x49, 0xd5, 0x78, 0x5b, 0x4f, 0xb1, 0xf8, 0x68, 0x0f, 0xa1, 0x7a, 0x96, 0xe0, 0xb1, + 0x47, 0x62, 0xc5, 0xd7, 0x78, 0x62, 0xc5, 0xc7, 0xf2, 0x4f, 0xf2, 0xf4, 0x75, 0x67, 0xa6, 0x53, + 0xfc, 0xde, 0x02, 0x5c, 0xe8, 0xbd, 0x2f, 0x12, 0xa9, 0x67, 0x2d, 0xd1, 0xed, 0xa5, 0xa4, 0x9e, + 0xfc, 0x6d, 0x95, 0x60, 0x0d, 0x1c, 0x73, 0xea, 0x2a, 0xcc, 0x28, 0x2b, 0xf0, 0xa6, 0xd7, 0xd8, + 0xd7, 0x32, 0xc8, 0x2b, 0xcf, 0xd9, 0x7a, 0x1a, 0x01, 0x77, 0xd7, 0x41, 0x8b, 0x30, 0x65, 0x14, + 0x56, 0x2b, 0xe2, 0x0d, 0xa5, 0xc4, 0xac, 0x75, 0x13, 0x8c, 0xd3, 0xf8, 0xf6, 0x4f, 0x59, 0xf0, + 0x48, 0x4e, 0xde, 0xa2, 0x81, 0x43, 0x2a, 0x6d, 0xc1, 0x54, 0xdb, 0xac, 0xda, 0x27, 0xf2, 0x9a, + 0x91, 0x1d, 0x49, 0xf5, 0x35, 0x05, 0xc0, 0x69, 0xa2, 0xf6, 0x9f, 0x5a, 0x70, 0xbe, 0xa7, 0x41, + 0x16, 0xc2, 0x70, 0x76, 0xbb, 0x15, 0x39, 0xcb, 0x21, 0x71, 0x89, 0x1f, 0x7b, 0x4e, 0xb3, 0xde, + 0x26, 0x0d, 0x4d, 0x6e, 0xcd, 0x2c, 0x9b, 0xae, 0xae, 0xd5, 0x17, 0xbb, 0x31, 0x70, 0x4e, 0x4d, + 0xb4, 0x0a, 0xa8, 0x1b, 0x22, 0x66, 0x98, 0x45, 0x67, 0xed, 0xa6, 0x87, 0x33, 0x6a, 0xa0, 0x97, + 0x61, 0x42, 0x19, 0x7a, 0x69, 0x33, 0xce, 0x0e, 0x60, 0xac, 0x03, 0xb0, 0x89, 0xb7, 0x74, 0xf9, + 0x37, 0x7e, 0xef, 0xc2, 0x87, 0x7e, 0xeb, 0xf7, 0x2e, 0x7c, 0xe8, 0xb7, 0x7f, 0xef, 0xc2, 0x87, + 0xbe, 0xfd, 0xfe, 0x05, 0xeb, 0x37, 0xee, 0x5f, 0xb0, 0x7e, 0xeb, 0xfe, 0x05, 0xeb, 0xb7, 0xef, + 0x5f, 0xb0, 0x7e, 0xf7, 0xfe, 0x05, 0xeb, 0x4b, 0xbf, 0x7f, 0xe1, 0x43, 0x6f, 0x16, 0xf6, 0x9e, + 0xfb, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x11, 0xe2, 0x4d, 0x14, 0xfc, 0x00, 0x00, } func (m *AWSElasticBlockStoreVolumeSource) Marshal() (dAtA []byte, err error) { @@ -8271,6 +8273,20 @@ func (m *Container) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.StartupProbe != nil { + { + size, err := m.StartupProbe.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xb2 + } if len(m.VolumeDevices) > 0 { for iNdEx := len(m.VolumeDevices) - 1; iNdEx >= 0; iNdEx-- { { @@ -8774,6 +8790,16 @@ func (m *ContainerStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Started != nil { + i-- + if *m.Started { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x48 + } i -= len(m.ContainerID) copy(dAtA[i:], m.ContainerID) i = encodeVarintGenerated(dAtA, i, uint64(len(m.ContainerID))) @@ -9503,6 +9529,20 @@ func (m *EphemeralContainerCommon) MarshalToSizedBuffer(dAtA []byte) (int, error _ = i var l int _ = l + if m.StartupProbe != nil { + { + size, err := m.StartupProbe.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xb2 + } if len(m.VolumeDevices) > 0 { for iNdEx := len(m.VolumeDevices) - 1; iNdEx >= 0; iNdEx-- { { @@ -19588,6 +19628,10 @@ func (m *Container) Size() (n int) { n += 2 + l + sovGenerated(uint64(l)) } } + if m.StartupProbe != nil { + l = m.StartupProbe.Size() + n += 2 + l + sovGenerated(uint64(l)) + } return n } @@ -19710,6 +19754,9 @@ func (m *ContainerStatus) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = len(m.ContainerID) n += 1 + l + sovGenerated(uint64(l)) + if m.Started != nil { + n += 2 + } return n } @@ -20044,6 +20091,10 @@ func (m *EphemeralContainerCommon) Size() (n int) { n += 2 + l + sovGenerated(uint64(l)) } } + if m.StartupProbe != nil { + l = m.StartupProbe.Size() + n += 2 + l + sovGenerated(uint64(l)) + } return n } @@ -23863,6 +23914,7 @@ func (this *Container) String() string { `EnvFrom:` + repeatedStringForEnvFrom + `,`, `TerminationMessagePolicy:` + fmt.Sprintf("%v", this.TerminationMessagePolicy) + `,`, `VolumeDevices:` + repeatedStringForVolumeDevices + `,`, + `StartupProbe:` + strings.Replace(this.StartupProbe.String(), "Probe", "Probe", 1) + `,`, `}`, }, "") return s @@ -23954,6 +24006,7 @@ func (this *ContainerStatus) String() string { `Image:` + fmt.Sprintf("%v", this.Image) + `,`, `ImageID:` + fmt.Sprintf("%v", this.ImageID) + `,`, `ContainerID:` + fmt.Sprintf("%v", this.ContainerID) + `,`, + `Started:` + valueToStringGenerated(this.Started) + `,`, `}`, }, "") return s @@ -24206,6 +24259,7 @@ func (this *EphemeralContainerCommon) String() string { `EnvFrom:` + repeatedStringForEnvFrom + `,`, `TerminationMessagePolicy:` + fmt.Sprintf("%v", this.TerminationMessagePolicy) + `,`, `VolumeDevices:` + repeatedStringForVolumeDevices + `,`, + `StartupProbe:` + strings.Replace(this.StartupProbe.String(), "Probe", "Probe", 1) + `,`, `}`, }, "") return s @@ -32035,6 +32089,42 @@ func (m *Container) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 22: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartupProbe", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.StartupProbe == nil { + m.StartupProbe = &Probe{} + } + if err := m.StartupProbe.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -33229,6 +33319,27 @@ func (m *ContainerStatus) Unmarshal(dAtA []byte) error { } m.ContainerID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Started", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + b := bool(v != 0) + m.Started = &b default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) @@ -35851,6 +35962,42 @@ func (m *EphemeralContainerCommon) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 22: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartupProbe", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.StartupProbe == nil { + m.StartupProbe = &Probe{} + } + if err := m.StartupProbe.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto index 5ed055426c0..8e170f37e31 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -701,6 +701,17 @@ message Container { // +optional optional Probe readinessProbe = 11; + // StartupProbe indicates that the Pod has successfully initialized. + // If specified, no other probes are executed until this completes successfully. + // If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + // This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + // when it might take a long time to load data or warm a cache, than during steady-state operation. + // This cannot be updated. + // This is an alpha feature enabled by the StartupProbe feature flag. + // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + // +optional + optional Probe startupProbe = 22; + // Actions that the management system should take in response to container lifecycle events. // Cannot be updated. // +optional @@ -901,6 +912,13 @@ message ContainerStatus { // Container's ID in the format 'docker://'. // +optional optional string containerID = 8; + + // Specifies whether the container has passed its startup probe. + // Initialized as false, becomes true after startupProbe is considered successful. + // Resets to false when the container is restarted, or if kubelet loses state temporarily. + // Is always true when no startupProbe is defined. + // +optional + optional bool started = 9; } // DaemonEndpoint contains information about a single Daemon endpoint. @@ -1254,6 +1272,10 @@ message EphemeralContainerCommon { // +optional optional Probe readinessProbe = 11; + // Probes are not allowed for ephemeral containers. + // +optional + optional Probe startupProbe = 22; + // Lifecycle is not allowed for ephemeral containers. // +optional optional Lifecycle lifecycle = 12; @@ -1862,7 +1884,7 @@ message Lifecycle { optional Handler postStart = 1; // PreStop is called immediately before a container is terminated due to an - // API request or management event such as liveness probe failure, + // API request or management event such as liveness/startup probe failure, // preemption, resource contention, etc. The handler is not called if the // container crashes or exits. The reason for termination is passed to the // handler. The Pod's termination grace period countdown begins before the @@ -3240,7 +3262,7 @@ message PodSpec { // init container fails, the pod is considered to have failed and is handled according // to its restartPolicy. The name for an init container or normal container must be // unique among all containers. - // Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. + // Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. // The resourceRequirements of an init container are taken into account during scheduling // by finding the highest request/limit for each resource type, and then using the max of // of that value or the sum of the normal containers. Limits are applied to init containers @@ -3704,7 +3726,7 @@ message Probe { optional int32 periodSeconds = 4; // Minimum consecutive successes for the probe to be considered successful after having failed. - // Defaults to 1. Must be 1 for liveness. Minimum value is 1. + // Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. // +optional optional int32 successThreshold = 5; 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 d8a79119a90..23ffef6b106 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 @@ -338,6 +338,7 @@ var map_Container = map[string]string{ "volumeDevices": "volumeDevices is the list of block devices to be used by the container. This is a beta feature.", "livenessProbe": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "readinessProbe": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + "startupProbe": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is an alpha feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "lifecycle": "Actions that the management system should take in response to container lifecycle events. Cannot be updated.", "terminationMessagePath": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "terminationMessagePolicy": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", @@ -430,6 +431,7 @@ var map_ContainerStatus = map[string]string{ "image": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images", "imageID": "ImageID of the container's image.", "containerID": "Container's ID in the format 'docker://'.", + "started": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.", } func (ContainerStatus) SwaggerDoc() map[string]string { @@ -598,6 +600,7 @@ var map_EphemeralContainerCommon = map[string]string{ "volumeDevices": "volumeDevices is the list of block devices to be used by the container. This is a beta feature.", "livenessProbe": "Probes are not allowed for ephemeral containers.", "readinessProbe": "Probes are not allowed for ephemeral containers.", + "startupProbe": "Probes are not allowed for ephemeral containers.", "lifecycle": "Lifecycle is not allowed for ephemeral containers.", "terminationMessagePath": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "terminationMessagePolicy": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", @@ -885,7 +888,7 @@ func (KeyToPath) SwaggerDoc() map[string]string { var map_Lifecycle = map[string]string{ "": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "postStart": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", - "preStop": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", + "preStop": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", } func (Lifecycle) SwaggerDoc() map[string]string { @@ -1595,7 +1598,7 @@ func (PodSignature) SwaggerDoc() map[string]string { var map_PodSpec = map[string]string{ "": "PodSpec is a description of a pod.", "volumes": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", - "initContainers": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", + "initContainers": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "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", @@ -1742,7 +1745,7 @@ var map_Probe = map[string]string{ "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. 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.", } 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 4f6bea341b9..fd47019c034 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 @@ -773,6 +773,11 @@ func (in *Container) DeepCopyInto(out *Container) { *out = new(Probe) (*in).DeepCopyInto(*out) } + if in.StartupProbe != nil { + in, out := &in.StartupProbe, &out.StartupProbe + *out = new(Probe) + (*in).DeepCopyInto(*out) + } if in.Lifecycle != nil { in, out := &in.Lifecycle, &out.Lifecycle *out = new(Lifecycle) @@ -920,6 +925,11 @@ func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus) { *out = *in in.State.DeepCopyInto(&out.State) in.LastTerminationState.DeepCopyInto(&out.LastTerminationState) + if in.Started != nil { + in, out := &in.Started, &out.Started + *out = new(bool) + **out = **in + } return } @@ -1350,6 +1360,11 @@ func (in *EphemeralContainerCommon) DeepCopyInto(out *EphemeralContainerCommon) *out = new(Probe) (*in).DeepCopyInto(*out) } + if in.StartupProbe != nil { + in, out := &in.StartupProbe, &out.StartupProbe + *out = new(Probe) + (*in).DeepCopyInto(*out) + } if in.Lifecycle != nil { in, out := &in.Lifecycle, &out.Lifecycle *out = new(Lifecycle) 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 dc2751ee14b..0d428f3227f 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 @@ -509,143 +509,173 @@ "successThreshold": -1430577593, "failureThreshold": 524249411 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "k_瀹鞎sn芞QÄȻ", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": "194", + "host": "195" + }, + "initialDelaySeconds": 364013971, + "timeoutSeconds": 1596422492, + "periodSeconds": -1790124395, + "successThreshold": 1094670193, + "failureThreshold": 905846572 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "196" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", + "path": "197", + "port": "198", + "host": "199", + "scheme": "蚛隖\u003cǶĬ4y£軶ǃ*ʙ嫙\u0026蒒5靇C'", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "200", + "value": "201" } ] }, "tcpSocket": { - "port": 559781916, - "host": "194" + "port": 2126876305, + "host": "202" } }, "preStop": { "exec": { "command": [ - "195" + "203" ] }, "httpGet": { - "path": "196", - "port": 1150375229, - "host": "197", - "scheme": "QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖\u003cǶ", + "path": "204", + "port": "205", + "host": "206", + "scheme": "Ŵ廷s{Ⱦdz@", "httpHeaders": [ { - "name": "198", - "value": "199" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": -1696471293, - "host": "200" + "port": 406308963, + "host": "209" } } }, - "terminationMessagePath": "201", - "terminationMessagePolicy": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", - "imagePullPolicy": "Ŵ廷s{Ⱦdz@", + "terminationMessagePath": "210", + "terminationMessagePolicy": "ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0", + "imagePullPolicy": "ŤǢʭ嵔棂p儼Ƿ裚瓶", "securityContext": { "capabilities": { "add": [ - "ʋŀ樺ȃv渟7¤7d" + "+j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn" ], "drop": [ - "ƯĖ漘Z剚敍0)鈼¬麄p呝T" + "1ſ盷褎weLJèux榜VƋZ1Ůđ眊" ] }, "privileged": true, "seLinuxOptions": { - "user": "202", - "role": "203", - "type": "204", - "level": "205" + "user": "211", + "role": "212", + "type": "213", + "level": "214" }, "windowsOptions": { - "gmsaCredentialSpecName": "206", - "gmsaCredentialSpec": "207", - "runAsUserName": "208" + "gmsaCredentialSpecName": "215", + "gmsaCredentialSpec": "216", + "runAsUserName": "217" }, - "runAsUser": 4181787587415673530, - "runAsGroup": 825262458636305509, + "runAsUser": 1563703589270296759, + "runAsGroup": 6506922239346928579, "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "瓧嫭塓烀罁胾^拜" + "procMount": "fǣ萭旿@" }, "stdin": true, - "stdinOnce": true + "stdinOnce": true, + "tty": true } ], "containers": [ { - "name": "209", - "image": "210", + "name": "218", + "image": "219", "command": [ - "211" + "220" ], "args": [ - "212" + "221" ], - "workingDir": "213", + "workingDir": "222", "ports": [ { - "name": "214", - "hostPort": 1385030458, - "containerPort": 427196286, - "protocol": "o/樝fw[Řż丩Ž", - "hostIP": "215" + "name": "223", + "hostPort": 1584001904, + "containerPort": -839281354, + "protocol": "5姣\u003e懔%熷谟þ蛯ɰ荶ljʁ", + "hostIP": "224" } ], "envFrom": [ { - "prefix": "216", + "prefix": "225", "configMapRef": { - "name": "217", + "name": "226", "optional": false }, "secretRef": { - "name": "218", - "optional": true + "name": "227", + "optional": false } } ], "env": [ { - "name": "219", - "value": "220", + "name": "228", + "value": "229", "valueFrom": { "fieldRef": { - "apiVersion": "221", - "fieldPath": "222" + "apiVersion": "230", + "fieldPath": "231" }, "resourceFieldRef": { - "containerName": "223", - "resource": "224", - "divisor": "932" + "containerName": "232", + "resource": "233", + "divisor": "357" }, "configMapKeyRef": { - "name": "225", - "key": "226", - "optional": false + "name": "234", + "key": "235", + "optional": true }, "secretKeyRef": { - "name": "227", - "key": "228", + "name": "236", + "key": "237", "optional": true } } @@ -653,67 +683,38 @@ ], "resources": { "limits": { - "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę": "638" + "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0": "175" }, "requests": { - "ǂ\u003e5姣\u003e懔%熷": "440" + "ɺ皚|懥ƖN粕擓ƖHV": "962" } }, "volumeMounts": [ { - "name": "229", - "readOnly": true, - "mountPath": "230", - "subPath": "231", - "mountPropagation": "奺Ȋ礶惇¸t颟.鵫ǚ", - "subPathExpr": "232" + "name": "238", + "mountPath": "239", + "subPath": "240", + "mountPropagation": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "subPathExpr": "241" } ], "volumeDevices": [ { - "name": "233", - "devicePath": "234" + "name": "242", + "devicePath": "243" } ], "livenessProbe": { "exec": { "command": [ - "235" + "244" ] }, "httpGet": { - "path": "236", - "port": "237", - "host": "238", - "scheme": "Ȥ藠3.", - "httpHeaders": [ - { - "name": "239", - "value": "240" - } - ] - }, - "tcpSocket": { - "port": "241", - "host": "242" - }, - "initialDelaySeconds": -1389418722, - "timeoutSeconds": 851018015, - "periodSeconds": 596942561, - "successThreshold": -1880980172, - "failureThreshold": -161485752 - }, - "readinessProbe": { - "exec": { - "command": [ - "243" - ] - }, - "httpGet": { - "path": "244", - "port": "245", + "path": "245", + "port": -393291312, "host": "246", - "scheme": "«丯Ƙ枛牐ɺ皚", + "scheme": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?", "httpHeaders": [ { "name": "247", @@ -722,152 +723,207 @@ ] }, "tcpSocket": { - "port": -1934111455, - "host": "249" + "port": "249", + "host": "250" }, - "initialDelaySeconds": 766864314, - "timeoutSeconds": 1146016612, - "periodSeconds": 1495880465, - "successThreshold": -1032967081, - "failureThreshold": 59664438 + "initialDelaySeconds": 627713162, + "timeoutSeconds": 1255312175, + "periodSeconds": -1740959124, + "successThreshold": 158280212, + "failureThreshold": -361442565 + }, + "readinessProbe": { + "exec": { + "command": [ + "251" + ] + }, + "httpGet": { + "path": "252", + "port": -2013568185, + "host": "253", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "254", + "value": "255" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "256" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737 + }, + "startupProbe": { + "exec": { + "command": [ + "257" + ] + }, + "httpGet": { + "path": "258", + "port": "259", + "host": "260", + "scheme": "Qg鄠[", + "httpHeaders": [ + { + "name": "261", + "value": "262" + } + ] + }, + "tcpSocket": { + "port": -241238495, + "host": "263" + }, + "initialDelaySeconds": -1556231754, + "timeoutSeconds": 461585849, + "periodSeconds": -321709789, + "successThreshold": -1463645123, + "failureThreshold": -1011390276 }, "lifecycle": { "postStart": { "exec": { "command": [ - "250" + "264" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "'", + "path": "265", + "port": "266", + "host": "267", + "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "268", + "value": "269" } ] }, "tcpSocket": { - "port": -801430937, - "host": "256" + "port": "270", + "host": "271" } }, "preStop": { "exec": { "command": [ - "257" + "272" ] }, "httpGet": { - "path": "258", - "port": 1810980158, - "host": "259", - "scheme": "_ƮA攤/ɸɎ R§耶FfBl", + "path": "273", + "port": -1161649101, + "host": "274", + "scheme": "嚧ʣq埄", "httpHeaders": [ { - "name": "260", - "value": "261" + "name": "275", + "value": "276" } ] }, "tcpSocket": { - "port": 1074486306, - "host": "262" + "port": "277", + "host": "278" } } }, - "terminationMessagePath": "263", - "terminationMessagePolicy": "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ", - "imagePullPolicy": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "terminationMessagePath": "279", + "terminationMessagePolicy": "ʁ岼昕ĬÇ", + "imagePullPolicy": "T 苧yñKJɐ扵G", "securityContext": { "capabilities": { "add": [ - "勅跦Opwǩ曬逴褜1Ø" + "fʀļ腩墺Ò媁荭gw忊" ], "drop": [ - "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]" + "E剒蔞" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "264", - "role": "265", - "type": "266", - "level": "267" + "user": "280", + "role": "281", + "type": "282", + "level": "283" }, "windowsOptions": { - "gmsaCredentialSpecName": "268", - "gmsaCredentialSpec": "269", - "runAsUserName": "270" + "gmsaCredentialSpecName": "284", + "gmsaCredentialSpec": "285", + "runAsUserName": "286" }, - "runAsUser": -6470941481344047265, - "runAsGroup": 1373384864388370080, - "runAsNonRoot": false, + "runAsUser": -6177393256425700216, + "runAsGroup": 2001337664780390084, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "W:ĸ輦唊#v" + "allowPrivilegeEscalation": false, + "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026" }, - "tty": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "271", - "image": "272", + "name": "287", + "image": "288", "command": [ - "273" + "289" ], "args": [ - "274" + "290" ], - "workingDir": "275", + "workingDir": "291", "ports": [ { - "name": "276", - "hostPort": 2058122084, - "containerPort": -379385405, - "protocol": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", - "hostIP": "277" + "name": "292", + "hostPort": 1313273370, + "containerPort": -1296830577, + "hostIP": "293" } ], "envFrom": [ { - "prefix": "278", + "prefix": "294", "configMapRef": { - "name": "279", + "name": "295", "optional": true }, "secretRef": { - "name": "280", + "name": "296", "optional": false } } ], "env": [ { - "name": "281", - "value": "282", + "name": "297", + "value": "298", "valueFrom": { "fieldRef": { - "apiVersion": "283", - "fieldPath": "284" + "apiVersion": "299", + "fieldPath": "300" }, "resourceFieldRef": { - "containerName": "285", - "resource": "286", - "divisor": "355" + "containerName": "301", + "resource": "302", + "divisor": "3" }, "configMapKeyRef": { - "name": "287", - "key": "288", - "optional": false + "name": "303", + "key": "304", + "optional": true }, "secretKeyRef": { - "name": "289", - "key": "290", + "name": "305", + "key": "306", "optional": true } } @@ -875,214 +931,242 @@ ], "resources": { "limits": { - "|E剒蔞|表徶đ寳议Ƭƶ氩": "337" + "淳4揻-$ɽ丟×x锏ɟ": "178" }, "requests": { - "": "124" + "Ö闊 鰔澝qV": "752" } }, "volumeMounts": [ { - "name": "291", - "mountPath": "292", - "subPath": "293", - "mountPropagation": "簳°Ļǟi\u0026皥贸", - "subPathExpr": "294" + "name": "307", + "readOnly": true, + "mountPath": "308", + "subPath": "309", + "mountPropagation": "/»頸+SÄ蚃ɣľ)酊龨Î", + "subPathExpr": "310" } ], "volumeDevices": [ { - "name": "295", - "devicePath": "296" + "name": "311", + "devicePath": "312" } ], "livenessProbe": { "exec": { "command": [ - "297" + "313" ] }, "httpGet": { - "path": "298", - "port": "299", - "host": "300", - "scheme": "现葢ŵ橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉", + "path": "314", + "port": "315", + "host": "316", + "scheme": "冓鍓贯", "httpHeaders": [ { - "name": "301", - "value": "302" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "303", - "host": "304" + "port": "319", + "host": "320" }, - "initialDelaySeconds": 2066735093, - "timeoutSeconds": -190183379, - "periodSeconds": -940334911, - "successThreshold": -341287812, - "failureThreshold": 2030115750 + "initialDelaySeconds": 1290950685, + "timeoutSeconds": 12533543, + "periodSeconds": 1058960779, + "successThreshold": -2133441986, + "failureThreshold": 472742933 }, "readinessProbe": { "exec": { "command": [ - "305" + "321" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "path": "322", + "port": 1332783160, + "host": "323", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": 458427807, - "host": "311" + "port": "326", + "host": "327" }, - "initialDelaySeconds": -1971421078, - "timeoutSeconds": 1905181464, - "periodSeconds": -1730959016, - "successThreshold": 1272940694, - "failureThreshold": -385597677 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482 + }, + "startupProbe": { + "exec": { + "command": [ + "328" + ] + }, + "httpGet": { + "path": "329", + "port": "330", + "host": "331", + "scheme": "鍏H鯂²", + "httpHeaders": [ + { + "name": "332", + "value": "333" + } + ] + }, + "tcpSocket": { + "port": -1187301925, + "host": "334" + }, + "initialDelaySeconds": -402384013, + "timeoutSeconds": -181601395, + "periodSeconds": -617381112, + "successThreshold": 1851229369, + "failureThreshold": -560238386 }, "lifecycle": { "postStart": { "exec": { "command": [ - "312" + "335" ] }, "httpGet": { - "path": "313", - "port": "314", - "host": "315", - "scheme": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC", + "path": "336", + "port": "337", + "host": "338", + "scheme": "C\"6x$1s", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "339", + "value": "340" } ] }, "tcpSocket": { - "port": "318", - "host": "319" + "port": "341", + "host": "342" } }, "preStop": { "exec": { "command": [ - "320" + "343" ] }, "httpGet": { - "path": "321", - "port": "322", - "host": "323", - "scheme": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²", + "path": "344", + "port": -518160270, + "host": "345", + "scheme": "ɔ幩še", "httpHeaders": [ { - "name": "324", - "value": "325" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": -1187301925, - "host": "326" + "port": 1956567721, + "host": "348" } } }, - "terminationMessagePath": "327", - "terminationMessagePolicy": "Őnj汰8ŕ", - "imagePullPolicy": "邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩", + "terminationMessagePath": "349", + "terminationMessagePolicy": "ȤƏ埮pɵ", "securityContext": { "capabilities": { "add": [ - "SvEȤƏ埮p" + "|ʐşƧ諔迮ƙIJ嘢" ], "drop": [ - "{WOŭW灬pȭCV擭銆jʒǚ鍰" + "ʗN" ] }, "privileged": false, "seLinuxOptions": { - "user": "328", - "role": "329", - "type": "330", - "level": "331" + "user": "350", + "role": "351", + "type": "352", + "level": "353" }, "windowsOptions": { - "gmsaCredentialSpecName": "332", - "gmsaCredentialSpec": "333", - "runAsUserName": "334" + "gmsaCredentialSpecName": "354", + "gmsaCredentialSpec": "355", + "runAsUserName": "356" }, - "runAsUser": 6726836758549163621, - "runAsGroup": 741362943076737213, + "runAsUser": -6048969174364431391, + "runAsGroup": 6726836758549163621, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "DµņP)DŽ髐njʉBn(fǂǢ曣ŋ" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "" }, "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "335" + "targetContainerName": "357" } ], - "restartPolicy": "åe躒訙", - "terminationGracePeriodSeconds": 6942343986058351509, - "activeDeadlineSeconds": 9212087462729867542, - "dnsPolicy": "娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ", + "restartPolicy": "ɭɪǹ0衷,", + "terminationGracePeriodSeconds": -3039830979334099524, + "activeDeadlineSeconds": 7270263763744228913, + "dnsPolicy": "n(fǂǢ曣ŋayåe躒訙Ǫ", "nodeSelector": { - "336": "337" + "358": "359" }, - "serviceAccountName": "338", - "serviceAccount": "339", - "automountServiceAccountToken": false, - "nodeName": "340", - "hostPID": true, - "shareProcessNamespace": false, + "serviceAccountName": "360", + "serviceAccount": "361", + "automountServiceAccountToken": true, + "nodeName": "362", + "hostNetwork": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "341", - "role": "342", - "type": "343", - "level": "344" + "user": "363", + "role": "364", + "type": "365", + "level": "366" }, "windowsOptions": { - "gmsaCredentialSpecName": "345", - "gmsaCredentialSpec": "346", - "runAsUserName": "347" + "gmsaCredentialSpecName": "367", + "gmsaCredentialSpec": "368", + "runAsUserName": "369" }, - "runAsUser": 7747616967629081728, - "runAsGroup": 2548453080315983269, + "runAsUser": -5315960194881172085, + "runAsGroup": 6386250802140824739, "runAsNonRoot": false, "supplementalGroups": [ - -1193643752264108019 + -4480129203693517072 ], - "fsGroup": -7117039988160665426, + "fsGroup": 2585323675983182372, "sysctls": [ { - "name": "348", - "value": "349" + "name": "370", + "value": "371" } ] }, "imagePullSecrets": [ { - "name": "350" + "name": "372" } ], - "hostname": "351", - "subdomain": "352", + "hostname": "373", + "subdomain": "374", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1090,19 +1174,19 @@ { "matchExpressions": [ { - "key": "353", - "operator": "", + "key": "375", + "operator": "Ã茓pȓɻ", "values": [ - "354" + "376" ] } ], "matchFields": [ { - "key": "355", - "operator": "ƽ眝{æ盪泙", + "key": "377", + "operator": "", "values": [ - "356" + "378" ] } ] @@ -1111,23 +1195,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 646133945, + "weight": -767058113, "preference": { "matchExpressions": [ { - "key": "357", - "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "key": "379", + "operator": "Ǹ|蕎'佉賞ǧĒz", "values": [ - "358" + "380" ] } ], "matchFields": [ { - "key": "359", - "operator": "ʨIk(dŊiɢzĮ蛋I滞", + "key": "381", + "operator": "ùfŭƽ", "values": [ - "360" + "382" ] } ] @@ -1140,43 +1224,40 @@ { "labelSelector": { "matchLabels": { - "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" + "h-up52--sjo7799-skj5--9/R_rm": "CR.s--f.-f.-zv._._.o" }, "matchExpressions": [ { - "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", - "operator": "Exists" + "key": "K_A-_9_Z_C..7o_x3..-.8-Jp-94", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "367" + "389" ], - "topologyKey": "368" + "topologyKey": "390" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -855547676, + "weight": 801902541, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" + "bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I": "x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4" }, "matchExpressions": [ { - "key": "8.--w0_1V7", - "operator": "In", - "values": [ - "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "397" ], - "topologyKey": "376" + "topologyKey": "398" } } ] @@ -1186,102 +1267,105 @@ { "labelSelector": { "matchLabels": { - "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "key": "QZ9p_6.C.e", "operator": "DoesNotExist" } ] }, "namespaces": [ - "383" + "405" ], - "topologyKey": "384" + "topologyKey": "406" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 808399187, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", - "operator": "DoesNotExist" + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", + "operator": "NotIn", + "values": [ + "txb__-ex-_1_-ODgC_1-_V" + ] } ] }, "namespaces": [ - "391" + "413" ], - "topologyKey": "392" + "topologyKey": "414" } } ] } }, - "schedulerName": "393", + "schedulerName": "415", "tolerations": [ { - "key": "394", - "operator": "ƹ|", - "value": "395", - "effect": "料ȭzV镜籬ƽ", - "tolerationSeconds": 935587338391120947 + "key": "416", + "operator": "堺ʣ", + "value": "417", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "396", + "ip": "418", "hostnames": [ - "397" + "419" ] } ], - "priorityClassName": "398", - "priority": 1690570439, + "priorityClassName": "420", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "399" + "421" ], "searches": [ - "400" + "422" ], "options": [ { - "name": "401", - "value": "402" + "name": "423", + "value": "424" } ] }, "readinessGates": [ { - "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "403", - "enableServiceLinks": true, - "preemptionPolicy": "eáNRNJ丧鴻Ŀ", + "runtimeClassName": "425", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -137402083, - "topologyKey": "404", - "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", + "maxSkew": -150478704, + "topologyKey": "426", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "qW", + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "operator": "In", "values": [ "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" @@ -1317,8 +1401,8 @@ "type": "", "status": "'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "411", - "message": "412" + "reason": "433", + "message": "434" } ] } 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 7b05de35acc..bcd0f9bdf36 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 1191957bf58..f5679c0f1d0 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 @@ -71,409 +71,447 @@ spec: selfLink: "28" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: 9212087462729867542 + activeDeadlineSeconds: 7270263763744228913 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "357" - operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' + - key: "379" + operator: Ǹ|蕎'佉賞ǧĒz values: - - "358" + - "380" matchFields: - - key: "359" - operator: ʨIk(dŊiɢzĮ蛋I滞 + - key: "381" + operator: ùfŭƽ values: - - "360" - weight: 646133945 + - "382" + weight: -767058113 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "353" + - key: "375" + operator: Ã茓pȓɻ + values: + - "376" + matchFields: + - key: "377" operator: "" values: - - "354" - matchFields: - - key: "355" - operator: ƽ眝{æ盪泙 - values: - - "356" + - "378" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8.--w0_1V7 - operator: In - values: - - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 + bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I: x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4 namespaces: - - "375" - topologyKey: "376" - weight: -855547676 + - "397" + topologyKey: "398" + weight: 801902541 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd - operator: Exists + - key: K_A-_9_Z_C..7o_x3..-.8-Jp-94 + operator: DoesNotExist matchLabels: - 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 + h-up52--sjo7799-skj5--9/R_rm: CR.s--f.-f.-zv._._.o namespaces: - - "367" - topologyKey: "368" + - "389" + topologyKey: "390" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf - operator: DoesNotExist + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D + operator: NotIn + values: + - txb__-ex-_1_-ODgC_1-_V matchLabels: - 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "391" - topologyKey: "392" - weight: 808399187 + - "413" + topologyKey: "414" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + - key: QZ9p_6.C.e operator: DoesNotExist matchLabels: - 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "383" - topologyKey: "384" - automountServiceAccountToken: false + - "405" + topologyKey: "406" + automountServiceAccountToken: true containers: - args: - - "212" + - "221" command: - - "211" + - "220" env: - - name: "219" - value: "220" + - name: "228" + value: "229" valueFrom: configMapKeyRef: - key: "226" - name: "225" - optional: false + key: "235" + name: "234" + optional: true fieldRef: - apiVersion: "221" - fieldPath: "222" + apiVersion: "230" + fieldPath: "231" resourceFieldRef: - containerName: "223" - divisor: "932" - resource: "224" + containerName: "232" + divisor: "357" + resource: "233" secretKeyRef: - key: "228" - name: "227" + key: "237" + name: "236" optional: true envFrom: - configMapRef: - name: "217" + name: "226" optional: false - prefix: "216" + prefix: "225" secretRef: - name: "218" - optional: true - image: "210" - imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 + name: "227" + optional: false + image: "219" + imagePullPolicy: T 苧yñKJɐ扵G lifecycle: postStart: exec: command: - - "250" + - "264" httpGet: - host: "253" + host: "267" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: '''' + - name: "268" + value: "269" + path: "265" + port: "266" + scheme: ']佱¿>犵殇ŕ-Ɂ圯W' tcpSocket: - host: "256" - port: -801430937 + host: "271" + port: "270" preStop: exec: command: - - "257" + - "272" httpGet: - host: "259" + host: "274" httpHeaders: - - name: "260" - value: "261" - path: "258" - port: 1810980158 - scheme: _ƮA攤/ɸɎ R§耶FfBl + - name: "275" + value: "276" + path: "273" + port: -1161649101 + scheme: 嚧ʣq埄 tcpSocket: - host: "262" - port: 1074486306 + host: "278" + port: "277" livenessProbe: exec: command: - - "235" - failureThreshold: -161485752 - httpGet: - host: "238" - httpHeaders: - - name: "239" - value: "240" - path: "236" - port: "237" - scheme: Ȥ藠3. - initialDelaySeconds: -1389418722 - periodSeconds: 596942561 - successThreshold: -1880980172 - tcpSocket: - host: "242" - port: "241" - timeoutSeconds: 851018015 - name: "209" - ports: - - containerPort: 427196286 - hostIP: "215" - hostPort: 1385030458 - name: "214" - protocol: o/樝fw[Řż丩Ž - readinessProbe: - exec: - command: - - "243" - failureThreshold: 59664438 + - "244" + failureThreshold: -361442565 httpGet: host: "246" httpHeaders: - name: "247" value: "248" - path: "244" - port: "245" - scheme: «丯Ƙ枛牐ɺ皚 - initialDelaySeconds: 766864314 - periodSeconds: 1495880465 - successThreshold: -1032967081 + path: "245" + port: -393291312 + scheme: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? + initialDelaySeconds: 627713162 + periodSeconds: -1740959124 + successThreshold: 158280212 tcpSocket: - host: "249" - port: -1934111455 - timeoutSeconds: 1146016612 + host: "250" + port: "249" + timeoutSeconds: 1255312175 + name: "218" + ports: + - containerPort: -839281354 + hostIP: "224" + hostPort: 1584001904 + name: "223" + protocol: 5姣>懔%熷谟þ蛯ɰ荶ljʁ + readinessProbe: + exec: + command: + - "251" + failureThreshold: -36782737 + httpGet: + host: "253" + httpHeaders: + - name: "254" + value: "255" + path: "252" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' + initialDelaySeconds: -1244623134 + periodSeconds: -398297599 + successThreshold: 873056500 + tcpSocket: + host: "256" + port: -20130017 + timeoutSeconds: -1334110502 resources: limits: - 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" + 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0: "175" requests: - ǂ>5姣>懔%熷: "440" + ɺ皚|懥ƖN粕擓ƖHV: "962" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 勅跦Opwǩ曬逴褜1Ø + - fʀļ腩墺Ò媁荭gw忊 drop: - - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] - privileged: true - procMount: W:ĸ輦唊#v + - E剒蔞 + privileged: false + procMount: Ȩ<6鄰簳°Ļǟi& readOnlyRootFilesystem: true - runAsGroup: 1373384864388370080 - runAsNonRoot: false - runAsUser: -6470941481344047265 + runAsGroup: 2001337664780390084 + runAsNonRoot: true + runAsUser: -6177393256425700216 seLinuxOptions: - level: "267" - role: "265" - type: "266" - user: "264" + level: "283" + role: "281" + type: "282" + user: "280" windowsOptions: - gmsaCredentialSpec: "269" - gmsaCredentialSpecName: "268" - runAsUserName: "270" - terminationMessagePath: "263" - terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ - tty: true + gmsaCredentialSpec: "285" + gmsaCredentialSpecName: "284" + runAsUserName: "286" + startupProbe: + exec: + command: + - "257" + failureThreshold: -1011390276 + httpGet: + host: "260" + httpHeaders: + - name: "261" + value: "262" + path: "258" + port: "259" + scheme: Qg鄠[ + initialDelaySeconds: -1556231754 + periodSeconds: -321709789 + successThreshold: -1463645123 + tcpSocket: + host: "263" + port: -241238495 + timeoutSeconds: 461585849 + stdin: true + terminationMessagePath: "279" + terminationMessagePolicy: ʁ岼昕ĬÇ volumeDevices: - - devicePath: "234" - name: "233" + - devicePath: "243" + name: "242" volumeMounts: - - mountPath: "230" - mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ - name: "229" - readOnly: true - subPath: "231" - subPathExpr: "232" - workingDir: "213" + - mountPath: "239" + mountPropagation: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' + name: "238" + subPath: "240" + subPathExpr: "241" + workingDir: "222" dnsConfig: nameservers: - - "399" + - "421" options: - - name: "401" - value: "402" + - name: "423" + value: "424" searches: - - "400" - dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ - enableServiceLinks: true + - "422" + dnsPolicy: n(fǂǢ曣ŋayåe躒訙Ǫ + enableServiceLinks: false ephemeralContainers: - args: - - "274" + - "290" command: - - "273" + - "289" env: - - name: "281" - value: "282" + - name: "297" + value: "298" valueFrom: configMapKeyRef: - key: "288" - name: "287" - optional: false + key: "304" + name: "303" + optional: true fieldRef: - apiVersion: "283" - fieldPath: "284" + apiVersion: "299" + fieldPath: "300" resourceFieldRef: - containerName: "285" - divisor: "355" - resource: "286" + containerName: "301" + divisor: "3" + resource: "302" secretKeyRef: - key: "290" - name: "289" + key: "306" + name: "305" optional: true envFrom: - configMapRef: - name: "279" + name: "295" optional: true - prefix: "278" + prefix: "294" secretRef: - name: "280" + name: "296" optional: false - image: "272" - imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + image: "288" lifecycle: postStart: exec: command: - - "312" + - "335" httpGet: - host: "315" + host: "338" httpHeaders: - - name: "316" - value: "317" - path: "313" - port: "314" - scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC + - name: "339" + value: "340" + path: "336" + port: "337" + scheme: C"6x$1s tcpSocket: - host: "319" - port: "318" + host: "342" + port: "341" preStop: exec: command: - - "320" + - "343" httpGet: - host: "323" + host: "345" httpHeaders: - - name: "324" - value: "325" - path: "321" - port: "322" - scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² + - name: "346" + value: "347" + path: "344" + port: -518160270 + scheme: ɔ幩še tcpSocket: - host: "326" - port: -1187301925 + host: "348" + port: 1956567721 livenessProbe: exec: command: - - "297" - failureThreshold: 2030115750 + - "313" + failureThreshold: 472742933 httpGet: - host: "300" + host: "316" httpHeaders: - - name: "301" - value: "302" - path: "298" - port: "299" - scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 - initialDelaySeconds: 2066735093 - periodSeconds: -940334911 - successThreshold: -341287812 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 冓鍓贯 + initialDelaySeconds: 1290950685 + periodSeconds: 1058960779 + successThreshold: -2133441986 tcpSocket: - host: "304" - port: "303" - timeoutSeconds: -190183379 - name: "271" + host: "320" + port: "319" + timeoutSeconds: 12533543 + name: "287" ports: - - containerPort: -379385405 - hostIP: "277" - hostPort: 2058122084 - name: "276" - protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + - containerPort: -1296830577 + hostIP: "293" + hostPort: 1313273370 + name: "292" readinessProbe: exec: command: - - "305" - failureThreshold: -385597677 + - "321" + failureThreshold: 620822482 httpGet: - host: "308" + host: "323" httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - initialDelaySeconds: -1971421078 - periodSeconds: -1730959016 - successThreshold: 1272940694 + - name: "324" + value: "325" + path: "322" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "311" - port: 458427807 - timeoutSeconds: 1905181464 + host: "327" + port: "326" + timeoutSeconds: 386804041 resources: limits: - '|E剒蔞|表徶đ寳议Ƭƶ氩': "337" + 淳4揻-$ɽ丟×x锏ɟ: "178" requests: - "": "124" + Ö闊 鰔澝qV: "752" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - SvEȤƏ埮p + - '|ʐşƧ諔迮ƙIJ嘢' drop: - - '{WOŭW灬pȭCV擭銆jʒǚ鍰' + - ʗN privileged: false - procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ - readOnlyRootFilesystem: false - runAsGroup: 741362943076737213 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: 6726836758549163621 runAsNonRoot: false - runAsUser: 6726836758549163621 + runAsUser: -6048969174364431391 seLinuxOptions: - level: "331" - role: "329" - type: "330" - user: "328" + level: "353" + role: "351" + type: "352" + user: "350" windowsOptions: - gmsaCredentialSpec: "333" - gmsaCredentialSpecName: "332" - runAsUserName: "334" + gmsaCredentialSpec: "355" + gmsaCredentialSpecName: "354" + runAsUserName: "356" + startupProbe: + exec: + command: + - "328" + failureThreshold: -560238386 + httpGet: + host: "331" + httpHeaders: + - name: "332" + value: "333" + path: "329" + port: "330" + scheme: 鍏H鯂² + initialDelaySeconds: -402384013 + periodSeconds: -617381112 + successThreshold: 1851229369 + tcpSocket: + host: "334" + port: -1187301925 + timeoutSeconds: -181601395 stdin: true stdinOnce: true - targetContainerName: "335" - terminationMessagePath: "327" - terminationMessagePolicy: Őnj汰8ŕ + targetContainerName: "357" + terminationMessagePath: "349" + terminationMessagePolicy: ȤƏ埮pɵ tty: true volumeDevices: - - devicePath: "296" - name: "295" + - devicePath: "312" + name: "311" volumeMounts: - - mountPath: "292" - mountPropagation: 簳°Ļǟi&皥贸 - name: "291" - subPath: "293" - subPathExpr: "294" - workingDir: "275" + - mountPath: "308" + mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î + name: "307" + readOnly: true + subPath: "309" + subPathExpr: "310" + workingDir: "291" hostAliases: - hostnames: - - "397" - ip: "396" - hostPID: true - hostname: "351" + - "419" + ip: "418" + hostNetwork: true + hostname: "373" imagePullSecrets: - - name: "350" + - name: "372" initContainers: - args: - "150" @@ -507,37 +545,38 @@ spec: name: "156" optional: false image: "148" - imagePullPolicy: Ŵ廷s{Ⱦdz@ + imagePullPolicy: ŤǢʭ嵔棂p儼Ƿ裚瓶 lifecycle: postStart: exec: command: - - "188" + - "196" httpGet: - host: "191" + host: "199" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" + - name: "200" + value: "201" + path: "197" + port: "198" + scheme: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C' tcpSocket: - host: "194" - port: 559781916 + host: "202" + port: 2126876305 preStop: exec: command: - - "195" + - "203" httpGet: - host: "197" + host: "206" httpHeaders: - - name: "198" - value: "199" - path: "196" - port: 1150375229 - scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: Ŵ廷s{Ⱦdz@ tcpSocket: - host: "200" - port: -1696471293 + host: "209" + port: 406308963 livenessProbe: exec: command: @@ -593,28 +632,49 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - ʋŀ樺ȃv渟7¤7d + - +j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn drop: - - ƯĖ漘Z剚敍0)鈼¬麄p呝T + - 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 privileged: true - procMount: 瓧嫭塓烀罁胾^拜 + procMount: fǣ萭旿@ readOnlyRootFilesystem: true - runAsGroup: 825262458636305509 + runAsGroup: 6506922239346928579 runAsNonRoot: true - runAsUser: 4181787587415673530 + runAsUser: 1563703589270296759 seLinuxOptions: - level: "205" - role: "203" - type: "204" - user: "202" + level: "214" + role: "212" + type: "213" + user: "211" windowsOptions: - gmsaCredentialSpec: "207" - gmsaCredentialSpecName: "206" - runAsUserName: "208" + gmsaCredentialSpec: "216" + gmsaCredentialSpecName: "215" + runAsUserName: "217" + startupProbe: + exec: + command: + - "188" + failureThreshold: 905846572 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: k_瀹鞎sn芞QÄȻ + initialDelaySeconds: 364013971 + periodSeconds: -1790124395 + successThreshold: 1094670193 + tcpSocket: + host: "195" + port: "194" + timeoutSeconds: 1596422492 stdin: true stdinOnce: true - terminationMessagePath: "201" - terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + terminationMessagePath: "210" + terminationMessagePolicy: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -626,61 +686,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "340" + nodeName: "362" nodeSelector: - "336": "337" + "358": "359" overhead: - 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" - preemptionPolicy: eáNRNJ丧鴻Ŀ - priority: 1690570439 - priorityClassName: "398" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "420" readinessGates: - - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 - restartPolicy: åe躒訙 - runtimeClassName: "403" - schedulerName: "393" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɭɪǹ0衷, + runtimeClassName: "425" + schedulerName: "415" securityContext: - fsGroup: -7117039988160665426 - runAsGroup: 2548453080315983269 + fsGroup: 2585323675983182372 + runAsGroup: 6386250802140824739 runAsNonRoot: false - runAsUser: 7747616967629081728 + runAsUser: -5315960194881172085 seLinuxOptions: - level: "344" - role: "342" - type: "343" - user: "341" + level: "366" + role: "364" + type: "365" + user: "363" supplementalGroups: - - -1193643752264108019 + - -4480129203693517072 sysctls: - - name: "348" - value: "349" + - name: "370" + value: "371" windowsOptions: - gmsaCredentialSpec: "346" - gmsaCredentialSpecName: "345" - runAsUserName: "347" - serviceAccount: "339" - serviceAccountName: "338" - shareProcessNamespace: false - subdomain: "352" - terminationGracePeriodSeconds: 6942343986058351509 + gmsaCredentialSpec: "368" + gmsaCredentialSpecName: "367" + runAsUserName: "369" + serviceAccount: "361" + serviceAccountName: "360" + shareProcessNamespace: true + subdomain: "374" + terminationGracePeriodSeconds: -3039830979334099524 tolerations: - - effect: 料ȭzV镜籬ƽ - key: "394" - operator: ƹ| - tolerationSeconds: 935587338391120947 - value: "395" + - effect: ŽɣB矗E¸乾 + key: "416" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "417" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: qW + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W operator: In values: - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X - maxSkew: -137402083 - topologyKey: "404" - whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "426" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "47" @@ -887,8 +947,8 @@ status: collisionCount: -449319810 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "412" - reason: "411" + message: "434" + reason: "433" status: '''ƈoIǢ龞瞯å' type: "" currentNumberScheduled: -1979737528 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 d0e0ebe63df..215c0ce1559 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1295,31 +1374,32 @@ } }, "strategy": { + "type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5", "rollingUpdate": { } }, - "minReadySeconds": 997447044, - "revisionHistoryLimit": 989524452, - "progressDeadlineSeconds": 1791868025 + "minReadySeconds": 212061711, + "revisionHistoryLimit": -1092090658, + "progressDeadlineSeconds": -1707056814 }, "status": { - "observedGeneration": -1249679108465412698, - "replicas": -1152625369, - "updatedReplicas": -1832836223, - "readyReplicas": -1292943463, - "availableReplicas": -1734448297, - "unavailableReplicas": -1757575936, + "observedGeneration": 2992108727478230062, + "replicas": 407742062, + "updatedReplicas": 2115789304, + "readyReplicas": 902022378, + "availableReplicas": 1660081568, + "unavailableReplicas": 904244563, "conditions": [ { - "type": "ȷ滣ƆƾȊ(XEfê澙凋B/ü", - "status": "ZÕW肤 ", - "lastUpdateTime": "2674-04-10T12:16:26Z", - "lastTransitionTime": "2674-07-14T13:22:49Z", - "reason": "406", - "message": "407" + "type": "洅啶", + "status": "Ƅ抄3昞财Î嘝zʄ", + "lastUpdateTime": "2524-02-08T04:27:05Z", + "lastTransitionTime": "2146-08-16T07:05:27Z", + "reason": "426", + "message": "427" } ], - "collisionCount": 1658632493 + "collisionCount": -1977467928 } } \ 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 de20f657135..896f5886b1a 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 68cc942ba5a..dad648a7e34 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: 997447044 - progressDeadlineSeconds: 1791868025 + minReadySeconds: 212061711 + progressDeadlineSeconds: -1707056814 replicas: 896585016 - revisionHistoryLimit: 989524452 + revisionHistoryLimit: -1092090658 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 @@ -42,6 +42,7 @@ spec: 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 template: metadata: annotations: @@ -73,412 +74,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -512,37 +547,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -599,28 +635,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -632,60 +687,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -886,17 +942,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -1734448297 - collisionCount: 1658632493 + availableReplicas: 1660081568 + collisionCount: -1977467928 conditions: - - lastTransitionTime: "2674-07-14T13:22:49Z" - lastUpdateTime: "2674-04-10T12:16:26Z" - message: "407" - reason: "406" - status: ZÕW肤  - type: ȷ滣ƆƾȊ(XEfê澙凋B/ü - observedGeneration: -1249679108465412698 - readyReplicas: -1292943463 - replicas: -1152625369 - unavailableReplicas: -1757575936 - updatedReplicas: -1832836223 + - lastTransitionTime: "2146-08-16T07:05:27Z" + lastUpdateTime: "2524-02-08T04:27:05Z" + message: "427" + reason: "426" + status: Ƅ抄3昞财Î嘝zʄ + type: 洅啶 + observedGeneration: 2992108727478230062 + readyReplicas: 902022378 + replicas: 407742062 + unavailableReplicas: 904244563 + updatedReplicas: 2115789304 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 962342fe7e9..b8f6df81b17 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 @@ -511,364 +511,418 @@ "successThreshold": 290736426, "failureThreshold": -57352147 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "閝ȝ", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": "194", + "host": "195" + }, + "initialDelaySeconds": -2142865739, + "timeoutSeconds": -1179067190, + "periodSeconds": 1434408532, + "successThreshold": -566408554, + "failureThreshold": 1133369651 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "196" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", - "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", + "path": "197", + "port": -1327537699, + "host": "198", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "199", + "value": "200" } ] }, "tcpSocket": { - "port": -337353552, - "host": "194" + "port": "201", + "host": "202" } }, "preStop": { "exec": { "command": [ - "195" + "203" ] }, "httpGet": { - "path": "196", - "port": -374922344, - "host": "197", - "scheme": "緄Ú|dk_瀹鞎sn芞", + "path": "204", + "port": "205", + "host": "206", + "scheme": "ĉş蝿ɖȃ賲鐅臬", "httpHeaders": [ { - "name": "198", - "value": "199" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": 912103005, - "host": "200" + "port": "209", + "host": "210" } } }, - "terminationMessagePath": "201", - "terminationMessagePolicy": "Ȋ+?ƭ峧Y栲茇竛吲蚛", - "imagePullPolicy": "\u003cé瞾", + "terminationMessagePath": "211", + "imagePullPolicy": "k_瀹鞎sn芞QÄȻ", "securityContext": { "capabilities": { "add": [ - "Ŭ" + "?" ], "drop": [ - "ǙÄr蛏豈" + "峧Y栲茇竛吲蚛隖" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "202", - "role": "203", - "type": "204", - "level": "205" + "user": "212", + "role": "213", + "type": "214", + "level": "215" }, "windowsOptions": { - "gmsaCredentialSpecName": "206", - "gmsaCredentialSpec": "207", - "runAsUserName": "208" + "gmsaCredentialSpecName": "216", + "gmsaCredentialSpec": "217", + "runAsUserName": "218" }, - "runAsUser": -3447077152667955293, - "runAsGroup": -6457174729896610090, + "runAsUser": 7312518131318481396, + "runAsGroup": -7286288718856494813, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "ȉ彂" + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ʙ嫙\u0026" }, + "stdin": true, "stdinOnce": true } ], "containers": [ { - "name": "209", - "image": "210", + "name": "219", + "image": "220", "command": [ - "211" + "221" ], "args": [ - "212" + "222" ], - "workingDir": "213", + "workingDir": "223", "ports": [ { - "name": "214", - "hostPort": 1065976533, - "containerPort": -820119398, - "protocol": "@ùƸʋŀ樺ȃv", - "hostIP": "215" + "name": "224", + "hostPort": 1944205014, + "containerPort": -2079582559, + "protocol": "K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ", + "hostIP": "225" } ], "envFrom": [ { - "prefix": "216", + "prefix": "226", "configMapRef": { - "name": "217", + "name": "227", "optional": true }, "secretRef": { - "name": "218", - "optional": true + "name": "228", + "optional": false } } ], "env": [ { - "name": "219", - "value": "220", + "name": "229", + "value": "230", "valueFrom": { "fieldRef": { - "apiVersion": "221", - "fieldPath": "222" + "apiVersion": "231", + "fieldPath": "232" }, "resourceFieldRef": { - "containerName": "223", - "resource": "224", - "divisor": "508" + "containerName": "233", + "resource": "234", + "divisor": "901" }, "configMapKeyRef": { - "name": "225", - "key": "226", + "name": "235", + "key": "236", "optional": false }, "secretKeyRef": { - "name": "227", - "key": "228", - "optional": true + "name": "237", + "key": "238", + "optional": false } } } ], "resources": { "limits": { - "剚敍0)鈼¬麄p呝TG": "305" + "羭,铻OŤǢʭ嵔": "340" }, "requests": { - "瓶": "806" + "TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜": "755" } }, "volumeMounts": [ { - "name": "229", - "readOnly": true, - "mountPath": "230", - "subPath": "231", - "mountPropagation": "", - "subPathExpr": "232" + "name": "239", + "mountPath": "240", + "subPath": "241", + "mountPropagation": "ʒ刽ʼn掏1ſ盷褎weLJèux榜", + "subPathExpr": "242" } ], "volumeDevices": [ { - "name": "233", - "devicePath": "234" + "name": "243", + "devicePath": "244" } ], "livenessProbe": { "exec": { "command": [ - "235" + "245" ] }, "httpGet": { - "path": "236", - "port": "237", - "host": "238", - "scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", + "path": "246", + "port": "247", + "host": "248", + "scheme": "賃ɪ鐊瀑Ź9ǕLLȊ", "httpHeaders": [ { - "name": "239", - "value": "240" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": 1096174794, - "host": "241" + "port": -26910286, + "host": "251" }, - "initialDelaySeconds": 1591029717, - "timeoutSeconds": 1255169591, - "periodSeconds": 622473257, - "successThreshold": -966649167, - "failureThreshold": 817152661 + "initialDelaySeconds": 1214895765, + "timeoutSeconds": 1181519543, + "periodSeconds": 282592353, + "successThreshold": 377225334, + "failureThreshold": -1191434089 }, "readinessProbe": { "exec": { "command": [ - "242" + "252" ] }, "httpGet": { - "path": "243", - "port": "244", - "host": "245", - "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ", + "path": "253", + "port": "254", + "host": "255", "httpHeaders": [ { - "name": "246", - "value": "247" + "name": "256", + "value": "257" } ] }, "tcpSocket": { - "port": "248", - "host": "249" + "port": "258", + "host": "259" }, - "initialDelaySeconds": -394397948, - "timeoutSeconds": 2040455355, - "periodSeconds": 1505972335, - "successThreshold": -26910286, - "failureThreshold": 1214895765 + "initialDelaySeconds": -839281354, + "timeoutSeconds": 2035347577, + "periodSeconds": -819723498, + "successThreshold": -150133456, + "failureThreshold": 1507815593 + }, + "startupProbe": { + "exec": { + "command": [ + "260" + ] + }, + "httpGet": { + "path": "261", + "port": 1684643131, + "host": "262", + "scheme": "飣奺Ȋ礶惇¸", + "httpHeaders": [ + { + "name": "263", + "value": "264" + } + ] + }, + "tcpSocket": { + "port": "265", + "host": "266" + }, + "initialDelaySeconds": -161753937, + "timeoutSeconds": -1578746609, + "periodSeconds": 1428207963, + "successThreshold": 790462391, + "failureThreshold": -822090785 }, "lifecycle": { "postStart": { "exec": { "command": [ - "250" + "267" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "path": "268", + "port": -421846800, + "host": "269", + "scheme": "zvt莭琽§", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "270", + "value": "271" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -763687725, + "host": "272" } }, "preStop": { "exec": { "command": [ - "258" + "273" ] }, "httpGet": { - "path": "259", - "port": -1675041613, - "host": "260", - "scheme": "揆ɘȌ脾嚏吐", + "path": "274", + "port": -1452676801, + "host": "275", + "scheme": "ȿ0矀Kʝ", "httpHeaders": [ { - "name": "261", - "value": "262" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": -194343002, - "host": "263" + "port": "278", + "host": "279" } } }, - "terminationMessagePath": "264", - "terminationMessagePolicy": "Ȥ藠3.", - "imagePullPolicy": "t莭琽§ć\\ ïì", + "terminationMessagePath": "280", + "terminationMessagePolicy": "\\p[", + "imagePullPolicy": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", "securityContext": { "capabilities": { "add": [ - "Ƙ枛牐ɺ皚|懥ƖN" + "À*f\u003c鴒翁杙Ŧ癃8" ], "drop": [ - "擓ƖHVe熼'FD剂讼ɓȌʟni酛" + "ɱJȉ罴" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "265", - "role": "266", - "type": "267", - "level": "268" + "user": "281", + "role": "282", + "type": "283", + "level": "284" }, "windowsOptions": { - "gmsaCredentialSpecName": "269", - "gmsaCredentialSpec": "270", - "runAsUserName": "271" + "gmsaCredentialSpecName": "285", + "gmsaCredentialSpec": "286", + "runAsUserName": "287" }, - "runAsUser": -2142888785755371163, - "runAsGroup": -2879304435996142911, + "runAsUser": -2706913289057230267, + "runAsGroup": -3689959065086680033, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?" + "allowPrivilegeEscalation": true, + "procMount": "棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅" }, - "stdin": true + "stdinOnce": true } ], "ephemeralContainers": [ { - "name": "272", - "image": "273", + "name": "288", + "image": "289", "command": [ - "274" + "290" ], "args": [ - "275" + "291" ], - "workingDir": "276", + "workingDir": "292", "ports": [ { - "name": "277", - "hostPort": -1740959124, - "containerPort": 158280212, - "hostIP": "278" + "name": "293", + "hostPort": 1853396726, + "containerPort": 1330271338, + "protocol": "逴", + "hostIP": "294" } ], "envFrom": [ { - "prefix": "279", + "prefix": "295", "configMapRef": { - "name": "280", + "name": "296", "optional": true }, "secretRef": { - "name": "281", + "name": "297", "optional": true } } ], "env": [ { - "name": "282", - "value": "283", + "name": "298", + "value": "299", "valueFrom": { "fieldRef": { - "apiVersion": "284", - "fieldPath": "285" + "apiVersion": "300", + "fieldPath": "301" }, "resourceFieldRef": { - "containerName": "286", - "resource": "287", - "divisor": "985" + "containerName": "302", + "resource": "303", + "divisor": "709" }, "configMapKeyRef": { - "name": "288", - "key": "289", + "name": "304", + "key": "305", "optional": false }, "secretKeyRef": { - "name": "290", - "key": "291", + "name": "306", + "key": "307", "optional": false } } @@ -876,215 +930,240 @@ ], "resources": { "limits": { - "ɖ緕ȚÍ勅跦Opwǩ": "957" + "颐o": "230" }, "requests": { - "Ɔȓ蹣ɐǛv+8Ƥ熪": "951" + "[+扴ȨŮ+朷Ǝ膯ljV": "728" } }, "volumeMounts": [ { - "name": "292", - "mountPath": "293", - "subPath": "294", - "mountPropagation": "啛更", - "subPathExpr": "295" + "name": "308", + "mountPath": "309", + "subPath": "310", + "mountPropagation": "ŕ-Ɂ圯W:ĸ輦唊#v铿", + "subPathExpr": "311" } ], "volumeDevices": [ { - "name": "296", - "devicePath": "297" + "name": "312", + "devicePath": "313" } ], "livenessProbe": { "exec": { "command": [ - "298" + "314" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "Ů+朷Ǝ膯ljVX1虊", + "path": "315", + "port": "316", + "host": "317", + "scheme": "屡ʁ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "318", + "value": "319" } ] }, "tcpSocket": { - "port": -979584143, - "host": "304" + "port": -1554559634, + "host": "320" }, - "initialDelaySeconds": -1748648882, - "timeoutSeconds": -239843014, - "periodSeconds": 1381579966, - "successThreshold": -1418092595, - "failureThreshold": -1538905728 + "initialDelaySeconds": 1718241831, + "timeoutSeconds": 550615941, + "periodSeconds": 1180971695, + "successThreshold": -1971944908, + "failureThreshold": 1742259603 }, "readinessProbe": { "exec": { "command": [ - "305" + "321" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "铿ʩȂ4ē鐭#嬀ơŸ8T", + "path": "322", + "port": -1620315711, + "host": "323", + "scheme": "ɐ扵", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": "311", - "host": "312" + "port": "326", + "host": "327" }, - "initialDelaySeconds": 37514563, - "timeoutSeconds": -1871050070, - "periodSeconds": 474715842, - "successThreshold": -1620315711, - "failureThreshold": 522560228 + "initialDelaySeconds": -1358663652, + "timeoutSeconds": 1543146222, + "periodSeconds": -527306221, + "successThreshold": 2098694289, + "failureThreshold": 1150925735 + }, + "startupProbe": { + "exec": { + "command": [ + "328" + ] + }, + "httpGet": { + "path": "329", + "port": "330", + "host": "331", + "scheme": "榝$î.Ȏ蝪ʜ5遰", + "httpHeaders": [ + { + "name": "332", + "value": "333" + } + ] + }, + "tcpSocket": { + "port": -1438286448, + "host": "334" + }, + "initialDelaySeconds": 834105836, + "timeoutSeconds": -1462219068, + "periodSeconds": -370386363, + "successThreshold": 1714588921, + "failureThreshold": -1246371817 }, "lifecycle": { "postStart": { "exec": { "command": [ - "313" + "335" ] }, "httpGet": { - "path": "314", - "port": "315", - "host": "316", - "scheme": "绤fʀļ腩墺Ò媁荭g", + "path": "336", + "port": "337", + "host": "338", + "scheme": "跩aŕ翑", "httpHeaders": [ { - "name": "317", - "value": "318" + "name": "339", + "value": "340" } ] }, "tcpSocket": { - "port": "319", - "host": "320" + "port": "341", + "host": "342" } }, "preStop": { "exec": { "command": [ - "321" + "343" ] }, "httpGet": { - "path": "322", - "port": -2133054549, - "host": "323", - "scheme": "遰=E", + "path": "344", + "port": 1017803158, + "host": "345", + "scheme": "碔", "httpHeaders": [ { - "name": "324", - "value": "325" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": "326", - "host": "327" + "port": "348", + "host": "349" } } }, - "terminationMessagePath": "328", - "terminationMessagePolicy": "朦 wƯ貾坢'跩", - "imagePullPolicy": "簳°Ļǟi\u0026皥贸", + "terminationMessagePath": "350", + "terminationMessagePolicy": "Kƙ順\\E¦队偯J僳徥淳4揻-$ɽ丟", + "imagePullPolicy": "拉Œɥ颶妧Ö闊 鰔澝qV訆", "securityContext": { "capabilities": { "add": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ŧL²sNƗ¸gĩ餠籲磣Óƿ" ], "drop": [ - "丟×x锏ɟ4Ǒ" + "\"冓鍓贯澔 ƺ蛜6" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "329", - "role": "330", - "type": "331", - "level": "332" + "user": "351", + "role": "352", + "type": "353", + "level": "354" }, "windowsOptions": { - "gmsaCredentialSpecName": "333", - "gmsaCredentialSpec": "334", - "runAsUserName": "335" + "gmsaCredentialSpecName": "355", + "gmsaCredentialSpec": "356", + "runAsUserName": "357" }, - "runAsUser": 7933506142593743951, - "runAsGroup": -8521633679555431923, + "runAsUser": 4353696140684277635, + "runAsGroup": 6057650398488995896, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "/»頸+SÄ蚃ɣľ)酊龨Î" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "鰥Z龏´DÒȗ" }, - "stdin": true, - "stdinOnce": true, "tty": true, - "targetContainerName": "336" + "targetContainerName": "358" } ], - "restartPolicy": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", - "terminationGracePeriodSeconds": 5620818514944490121, - "activeDeadlineSeconds": -499179336506637450, - "dnsPolicy": "ɐ鰥", + "restartPolicy": "ɘɢ鬍熖B芭花ª瘡", + "terminationGracePeriodSeconds": 2666412258966278206, + "activeDeadlineSeconds": -8715915045560617563, + "dnsPolicy": "丆", "nodeSelector": { - "337": "338" + "359": "360" }, - "serviceAccountName": "339", - "serviceAccount": "340", - "automountServiceAccountToken": true, - "nodeName": "341", - "hostNetwork": true, + "serviceAccountName": "361", + "serviceAccount": "362", + "automountServiceAccountToken": false, + "nodeName": "363", "hostPID": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "342", - "role": "343", - "type": "344", - "level": "345" + "user": "364", + "role": "365", + "type": "366", + "level": "367" }, "windowsOptions": { - "gmsaCredentialSpecName": "346", - "gmsaCredentialSpec": "347", - "runAsUserName": "348" + "gmsaCredentialSpecName": "368", + "gmsaCredentialSpec": "369", + "runAsUserName": "370" }, - "runAsUser": 3634773701753283428, - "runAsGroup": -3042614092601658792, + "runAsUser": 2179199799235189619, + "runAsGroup": -779972051078659613, "runAsNonRoot": false, "supplementalGroups": [ - -2125560879532395341 + -7127205672279904050 ], - "fsGroup": -1778638259613624198, + "fsGroup": 7124276984274024394, "sysctls": [ { - "name": "349", - "value": "350" + "name": "371", + "value": "372" } ] }, "imagePullSecrets": [ { - "name": "351" + "name": "373" } ], - "hostname": "352", - "subdomain": "353", + "hostname": "374", + "subdomain": "375", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1092,19 +1171,19 @@ { "matchExpressions": [ { - "key": "354", - "operator": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", + "key": "376", + "operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "values": [ - "355" + "377" ] } ], "matchFields": [ { - "key": "356", - "operator": "C\"6x$1s", + "key": "378", + "operator": "埮pɵ{WOŭW灬p", "values": [ - "357" + "379" ] } ] @@ -1113,23 +1192,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1292310438, + "weight": 199049889, "preference": { "matchExpressions": [ { - "key": "358", - "operator": "鋄5弢ȹ均", + "key": "380", + "operator": "擭銆jʒǚ鍰\\縑", "values": [ - "359" + "381" ] } ], "matchFields": [ { - "key": "360", - "operator": "SvEȤƏ埮p", + "key": "382", + "operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "values": [ - "361" + "383" ] } ] @@ -1142,43 +1221,43 @@ { "labelSelector": { "matchLabels": { - "o.6GA2C": "s.Nj-s" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "A3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-p", - "operator": "DoesNotExist" + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", + "operator": "NotIn", + "values": [ + "z" + ] } ] }, "namespaces": [ - "368" + "390" ], - "topologyKey": "369" + "topologyKey": "391" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -531787516, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1/dCv3j._.-_pP__up.2L_s-o7": "k-5___-Qq..csh-3--Z1Tvw3F" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "0--z-o-3bz6-2/6Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.B", - "operator": "In", - "values": [ - "U1_-__.71-_-9_._X-D---k..1Q7.l" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "376" + "398" ], - "topologyKey": "377" + "topologyKey": "399" } } ] @@ -1188,106 +1267,109 @@ { "labelSelector": { "matchLabels": { - "4.B.__6m": "J1-1.9_.-.Ms7_tP" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v", - "operator": "NotIn", - "values": [ - "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" - ] + "key": "QZ9p_6.C.e", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "384" + "406" ], - "topologyKey": "385" + "topologyKey": "407" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1139477828, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "0l_.23--_6l.-5_BZk5v3U", - "operator": "DoesNotExist" + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", + "operator": "NotIn", + "values": [ + "txb__-ex-_1_-ODgC_1-_V" + ] } ] }, "namespaces": [ - "392" + "414" ], - "topologyKey": "393" + "topologyKey": "415" } } ] } }, - "schedulerName": "394", + "schedulerName": "416", "tolerations": [ { - "key": "395", - "operator": "[L", - "value": "396", - "effect": "Ġ滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼ", - "tolerationSeconds": 4456040724914385859 + "key": "417", + "operator": "堺ʣ", + "value": "418", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "397", + "ip": "419", "hostnames": [ - "398" + "420" ] } ], - "priorityClassName": "399", - "priority": -1576968453, + "priorityClassName": "421", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "400" + "422" ], "searches": [ - "401" + "423" ], "options": [ { - "name": "402", - "value": "403" + "name": "424", + "value": "425" } ] }, "readinessGates": [ { - "conditionType": "v" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "404", + "runtimeClassName": "426", "enableServiceLinks": false, - "preemptionPolicy": "忖p様", + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "U凮": "684" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -782776982, - "topologyKey": "405", - "whenUnsatisfiable": "鈀", + "maxSkew": -150478704, + "topologyKey": "427", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A": "BM.6-.Y_72-_--p7" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "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" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1297,18 +1379,18 @@ } }, "status": { - "replicas": -106050665, - "fullyLabeledReplicas": -929473748, - "readyReplicas": -1450995995, - "availableReplicas": 740158871, - "observedGeneration": -5350227579821888386, + "replicas": -330302940, + "fullyLabeledReplicas": 138911331, + "readyReplicas": 1613009760, + "availableReplicas": -1469601144, + "observedGeneration": 6703635170896137755, "conditions": [ { - "type": "", - "status": "'ƈoIǢ龞瞯å", + "type": "ɡj瓇ɽ丿YƄZZ塖bʘ", + "status": "ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "412", - "message": "413" + "reason": "434", + "message": "435" } ] } 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 962e311e8a2..424f09a43be 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 4e0cf655b94..c9f941b74fd 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,411 +71,447 @@ spec: selfLink: "28" uid: ʬ spec: - activeDeadlineSeconds: -499179336506637450 + activeDeadlineSeconds: -8715915045560617563 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "358" - operator: 鋄5弢ȹ均 + - key: "380" + operator: 擭銆jʒǚ鍰\縑 values: - - "359" + - "381" matchFields: - - key: "360" - operator: SvEȤƏ埮p + - key: "382" + operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ values: - - "361" - weight: -1292310438 + - "383" + weight: 199049889 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "354" - operator: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 + - key: "376" + operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 values: - - "355" + - "377" matchFields: - - key: "356" - operator: C"6x$1s + - key: "378" + operator: 埮pɵ{WOŭW灬p values: - - "357" + - "379" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0--z-o-3bz6-2/6Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.B - operator: In - values: - - U1_-__.71-_-9_._X-D---k..1Q7.l + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - 1/dCv3j._.-_pP__up.2L_s-o7: k-5___-Qq..csh-3--Z1Tvw3F + 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP namespaces: - - "376" - topologyKey: "377" - weight: -531787516 + - "398" + topologyKey: "399" + weight: -217760519 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: A3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-p - operator: DoesNotExist + - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 + operator: NotIn + values: + - z matchLabels: - o.6GA2C: s.Nj-s + 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r namespaces: - - "368" - topologyKey: "369" + - "390" + topologyKey: "391" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0l_.23--_6l.-5_BZk5v3U - operator: DoesNotExist + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D + operator: NotIn + values: + - txb__-ex-_1_-ODgC_1-_V matchLabels: - t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6 + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "392" - topologyKey: "393" - weight: -1139477828 + - "414" + topologyKey: "415" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v - operator: NotIn - values: - - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc + - key: QZ9p_6.C.e + operator: DoesNotExist matchLabels: - 4.B.__6m: J1-1.9_.-.Ms7_tP + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "384" - topologyKey: "385" - automountServiceAccountToken: true + - "406" + topologyKey: "407" + automountServiceAccountToken: false containers: - args: - - "212" + - "222" command: - - "211" + - "221" env: - - name: "219" - value: "220" + - name: "229" + value: "230" valueFrom: configMapKeyRef: - key: "226" - name: "225" + key: "236" + name: "235" optional: false fieldRef: - apiVersion: "221" - fieldPath: "222" + apiVersion: "231" + fieldPath: "232" resourceFieldRef: - containerName: "223" - divisor: "508" - resource: "224" + containerName: "233" + divisor: "901" + resource: "234" secretKeyRef: - key: "228" - name: "227" - optional: true + key: "238" + name: "237" + optional: false envFrom: - configMapRef: - name: "217" + name: "227" optional: true - prefix: "216" + prefix: "226" secretRef: - name: "218" - optional: true - image: "210" - imagePullPolicy: t莭琽§ć\ ïì + name: "228" + optional: false + image: "220" + imagePullPolicy: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 lifecycle: postStart: exec: command: - - "250" + - "267" httpGet: - host: "253" + host: "269" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 + - name: "270" + value: "271" + path: "268" + port: -421846800 + scheme: zvt莭琽§ tcpSocket: - host: "257" - port: "256" + host: "272" + port: -763687725 preStop: exec: command: - - "258" + - "273" httpGet: - host: "260" + host: "275" httpHeaders: - - name: "261" - value: "262" - path: "259" - port: -1675041613 - scheme: 揆ɘȌ脾嚏吐 + - name: "276" + value: "277" + path: "274" + port: -1452676801 + scheme: ȿ0矀Kʝ tcpSocket: - host: "263" - port: -194343002 + host: "279" + port: "278" livenessProbe: exec: command: - - "235" - failureThreshold: 817152661 + - "245" + failureThreshold: -1191434089 httpGet: - host: "238" + host: "248" httpHeaders: - - name: "239" - value: "240" - path: "236" - port: "237" - scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽 - initialDelaySeconds: 1591029717 - periodSeconds: 622473257 - successThreshold: -966649167 + - name: "249" + value: "250" + path: "246" + port: "247" + scheme: 賃ɪ鐊瀑Ź9ǕLLȊ + initialDelaySeconds: 1214895765 + periodSeconds: 282592353 + successThreshold: 377225334 tcpSocket: - host: "241" - port: 1096174794 - timeoutSeconds: 1255169591 - name: "209" + host: "251" + port: -26910286 + timeoutSeconds: 1181519543 + name: "219" ports: - - containerPort: -820119398 - hostIP: "215" - hostPort: 1065976533 - name: "214" - protocol: '@ùƸʋŀ樺ȃv' + - containerPort: -2079582559 + hostIP: "225" + hostPort: 1944205014 + name: "224" + protocol: K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ readinessProbe: exec: command: - - "242" - failureThreshold: 1214895765 + - "252" + failureThreshold: 1507815593 httpGet: - host: "245" + host: "255" httpHeaders: - - name: "246" - value: "247" - path: "243" - port: "244" - scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ - initialDelaySeconds: -394397948 - periodSeconds: 1505972335 - successThreshold: -26910286 + - name: "256" + value: "257" + path: "253" + port: "254" + initialDelaySeconds: -839281354 + periodSeconds: -819723498 + successThreshold: -150133456 tcpSocket: - host: "249" - port: "248" - timeoutSeconds: 2040455355 + host: "259" + port: "258" + timeoutSeconds: 2035347577 resources: limits: - 剚敍0)鈼¬麄p呝TG: "305" + 羭,铻OŤǢʭ嵔: "340" requests: - 瓶: "806" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - Ƙ枛牐ɺ皚|懥ƖN - drop: - - 擓ƖHVe熼'FD剂讼ɓȌʟni酛 - privileged: true - procMount: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? - readOnlyRootFilesystem: false - runAsGroup: -2879304435996142911 - runAsNonRoot: false - runAsUser: -2142888785755371163 - seLinuxOptions: - level: "268" - role: "266" - type: "267" - user: "265" - windowsOptions: - gmsaCredentialSpec: "270" - gmsaCredentialSpecName: "269" - runAsUserName: "271" - stdin: true - terminationMessagePath: "264" - terminationMessagePolicy: Ȥ藠3. - volumeDevices: - - devicePath: "234" - name: "233" - volumeMounts: - - mountPath: "230" - mountPropagation: "" - name: "229" - readOnly: true - subPath: "231" - subPathExpr: "232" - workingDir: "213" - dnsConfig: - nameservers: - - "400" - options: - - name: "402" - value: "403" - searches: - - "401" - dnsPolicy: ɐ鰥 - enableServiceLinks: false - ephemeralContainers: - - args: - - "275" - command: - - "274" - env: - - name: "282" - value: "283" - valueFrom: - configMapKeyRef: - key: "289" - name: "288" - optional: false - fieldRef: - apiVersion: "284" - fieldPath: "285" - resourceFieldRef: - containerName: "286" - divisor: "985" - resource: "287" - secretKeyRef: - key: "291" - name: "290" - optional: false - envFrom: - - configMapRef: - name: "280" - optional: true - prefix: "279" - secretRef: - name: "281" - optional: true - image: "273" - imagePullPolicy: 簳°Ļǟi&皥贸 - lifecycle: - postStart: - exec: - command: - - "313" - httpGet: - host: "316" - httpHeaders: - - name: "317" - value: "318" - path: "314" - port: "315" - scheme: 绤fʀļ腩墺Ò媁荭g - tcpSocket: - host: "320" - port: "319" - preStop: - exec: - command: - - "321" - httpGet: - host: "323" - httpHeaders: - - name: "324" - value: "325" - path: "322" - port: -2133054549 - scheme: 遰=E - tcpSocket: - host: "327" - port: "326" - livenessProbe: - exec: - command: - - "298" - failureThreshold: -1538905728 - httpGet: - host: "301" - httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: Ů+朷Ǝ膯ljVX1虊 - initialDelaySeconds: -1748648882 - periodSeconds: 1381579966 - successThreshold: -1418092595 - tcpSocket: - host: "304" - port: -979584143 - timeoutSeconds: -239843014 - name: "272" - ports: - - containerPort: 158280212 - hostIP: "278" - hostPort: -1740959124 - name: "277" - readinessProbe: - exec: - command: - - "305" - failureThreshold: 522560228 - httpGet: - host: "308" - httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: 铿ʩȂ4ē鐭#嬀ơŸ8T - initialDelaySeconds: 37514563 - periodSeconds: 474715842 - successThreshold: -1620315711 - tcpSocket: - host: "312" - port: "311" - timeoutSeconds: -1871050070 - resources: - limits: - ɖ緕ȚÍ勅跦Opwǩ: "957" - requests: - Ɔȓ蹣ɐǛv+8Ƥ熪: "951" + TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜: "755" securityContext: allowPrivilegeEscalation: true capabilities: add: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - À*f<鴒翁杙Ŧ癃8 drop: - - 丟×x锏ɟ4Ǒ - privileged: true - procMount: /»頸+SÄ蚃ɣľ)酊龨Î + - ɱJȉ罴 + privileged: false + procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅 readOnlyRootFilesystem: false - runAsGroup: -8521633679555431923 - runAsNonRoot: true - runAsUser: 7933506142593743951 + runAsGroup: -3689959065086680033 + runAsNonRoot: false + runAsUser: -2706913289057230267 seLinuxOptions: - level: "332" - role: "330" - type: "331" - user: "329" + level: "284" + role: "282" + type: "283" + user: "281" windowsOptions: - gmsaCredentialSpec: "334" - gmsaCredentialSpecName: "333" - runAsUserName: "335" - stdin: true + gmsaCredentialSpec: "286" + gmsaCredentialSpecName: "285" + runAsUserName: "287" + startupProbe: + exec: + command: + - "260" + failureThreshold: -822090785 + httpGet: + host: "262" + httpHeaders: + - name: "263" + value: "264" + path: "261" + port: 1684643131 + scheme: 飣奺Ȋ礶惇¸ + initialDelaySeconds: -161753937 + periodSeconds: 1428207963 + successThreshold: 790462391 + tcpSocket: + host: "266" + port: "265" + timeoutSeconds: -1578746609 stdinOnce: true - targetContainerName: "336" - terminationMessagePath: "328" - terminationMessagePolicy: 朦 wƯ貾坢'跩 + terminationMessagePath: "280" + terminationMessagePolicy: \p[ + volumeDevices: + - devicePath: "244" + name: "243" + volumeMounts: + - mountPath: "240" + mountPropagation: ʒ刽ʼn掏1ſ盷褎weLJèux榜 + name: "239" + subPath: "241" + subPathExpr: "242" + workingDir: "223" + dnsConfig: + nameservers: + - "422" + options: + - name: "424" + value: "425" + searches: + - "423" + dnsPolicy: 丆 + enableServiceLinks: false + ephemeralContainers: + - args: + - "291" + command: + - "290" + env: + - name: "298" + value: "299" + valueFrom: + configMapKeyRef: + key: "305" + name: "304" + optional: false + fieldRef: + apiVersion: "300" + fieldPath: "301" + resourceFieldRef: + containerName: "302" + divisor: "709" + resource: "303" + secretKeyRef: + key: "307" + name: "306" + optional: false + envFrom: + - configMapRef: + name: "296" + optional: true + prefix: "295" + secretRef: + name: "297" + optional: true + image: "289" + imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆 + lifecycle: + postStart: + exec: + command: + - "335" + httpGet: + host: "338" + httpHeaders: + - name: "339" + value: "340" + path: "336" + port: "337" + scheme: 跩aŕ翑 + tcpSocket: + host: "342" + port: "341" + preStop: + exec: + command: + - "343" + httpGet: + host: "345" + httpHeaders: + - name: "346" + value: "347" + path: "344" + port: 1017803158 + scheme: 碔 + tcpSocket: + host: "349" + port: "348" + livenessProbe: + exec: + command: + - "314" + failureThreshold: 1742259603 + httpGet: + host: "317" + httpHeaders: + - name: "318" + value: "319" + path: "315" + port: "316" + scheme: 屡ʁ + initialDelaySeconds: 1718241831 + periodSeconds: 1180971695 + successThreshold: -1971944908 + tcpSocket: + host: "320" + port: -1554559634 + timeoutSeconds: 550615941 + name: "288" + ports: + - containerPort: 1330271338 + hostIP: "294" + hostPort: 1853396726 + name: "293" + protocol: 逴 + readinessProbe: + exec: + command: + - "321" + failureThreshold: 1150925735 + httpGet: + host: "323" + httpHeaders: + - name: "324" + value: "325" + path: "322" + port: -1620315711 + scheme: ɐ扵 + initialDelaySeconds: -1358663652 + periodSeconds: -527306221 + successThreshold: 2098694289 + tcpSocket: + host: "327" + port: "326" + timeoutSeconds: 1543146222 + resources: + limits: + 颐o: "230" + requests: + '[+扴ȨŮ+朷Ǝ膯ljV': "728" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ŧL²sNƗ¸gĩ餠籲磣Óƿ + drop: + - '"冓鍓贯澔 ƺ蛜6' + privileged: false + procMount: 鰥Z龏´DÒȗ + readOnlyRootFilesystem: true + runAsGroup: 6057650398488995896 + runAsNonRoot: true + runAsUser: 4353696140684277635 + seLinuxOptions: + level: "354" + role: "352" + type: "353" + user: "351" + windowsOptions: + gmsaCredentialSpec: "356" + gmsaCredentialSpecName: "355" + runAsUserName: "357" + startupProbe: + exec: + command: + - "328" + failureThreshold: -1246371817 + httpGet: + host: "331" + httpHeaders: + - name: "332" + value: "333" + path: "329" + port: "330" + scheme: 榝$î.Ȏ蝪ʜ5遰 + initialDelaySeconds: 834105836 + periodSeconds: -370386363 + successThreshold: 1714588921 + tcpSocket: + host: "334" + port: -1438286448 + timeoutSeconds: -1462219068 + targetContainerName: "358" + terminationMessagePath: "350" + terminationMessagePolicy: Kƙ順\E¦队偯J僳徥淳4揻-$ɽ丟 tty: true volumeDevices: - - devicePath: "297" - name: "296" + - devicePath: "313" + name: "312" volumeMounts: - - mountPath: "293" - mountPropagation: 啛更 - name: "292" - subPath: "294" - subPathExpr: "295" - workingDir: "276" + - mountPath: "309" + mountPropagation: ŕ-Ɂ圯W:ĸ輦唊#v铿 + name: "308" + subPath: "310" + subPathExpr: "311" + workingDir: "292" hostAliases: - hostnames: - - "398" - ip: "397" - hostNetwork: true + - "420" + ip: "419" hostPID: true - hostname: "352" + hostname: "374" imagePullSecrets: - - name: "351" + - name: "373" initContainers: - args: - "150" @@ -509,38 +545,37 @@ spec: name: "156" optional: false image: "148" - imagePullPolicy: <é瞾 + imagePullPolicy: k_瀹鞎sn芞QÄȻ lifecycle: postStart: exec: command: - - "188" + - "196" httpGet: - host: "191" + host: "198" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" - scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ + - name: "199" + value: "200" + path: "197" + port: -1327537699 tcpSocket: - host: "194" - port: -337353552 + host: "202" + port: "201" preStop: exec: command: - - "195" + - "203" httpGet: - host: "197" + host: "206" httpHeaders: - - name: "198" - value: "199" - path: "196" - port: -374922344 - scheme: 緄Ú|dk_瀹鞎sn芞 + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: ĉş蝿ɖȃ賲鐅臬 tcpSocket: - host: "200" - port: 912103005 + host: "210" + port: "209" livenessProbe: exec: command: @@ -594,30 +629,50 @@ spec: requests: á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ: "372" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Ŭ + - '?' drop: - - ǙÄr蛏豈 - privileged: true - procMount: ȉ彂 - readOnlyRootFilesystem: true - runAsGroup: -6457174729896610090 + - 峧Y栲茇竛吲蚛隖 + privileged: false + procMount: ʙ嫙& + readOnlyRootFilesystem: false + runAsGroup: -7286288718856494813 runAsNonRoot: true - runAsUser: -3447077152667955293 + runAsUser: 7312518131318481396 seLinuxOptions: - level: "205" - role: "203" - type: "204" - user: "202" + level: "215" + role: "213" + type: "214" + user: "212" windowsOptions: - gmsaCredentialSpec: "207" - gmsaCredentialSpecName: "206" - runAsUserName: "208" + gmsaCredentialSpec: "217" + gmsaCredentialSpecName: "216" + runAsUserName: "218" + startupProbe: + exec: + command: + - "188" + failureThreshold: 1133369651 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: 閝ȝ + initialDelaySeconds: -2142865739 + periodSeconds: 1434408532 + successThreshold: -566408554 + tcpSocket: + host: "195" + port: "194" + timeoutSeconds: -1179067190 + stdin: true stdinOnce: true - terminationMessagePath: "201" - terminationMessagePolicy: Ȋ+?ƭ峧Y栲茇竛吲蚛 + terminationMessagePath: "211" volumeDevices: - devicePath: "172" name: "171" @@ -629,60 +684,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "341" + nodeName: "363" nodeSelector: - "337": "338" + "359": "360" overhead: - U凮: "684" - preemptionPolicy: 忖p様 - priority: -1576968453 - priorityClassName: "399" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "421" readinessGates: - - conditionType: v - restartPolicy: ȱğ_<ǬëJ橈'琕鶫:顇ə - runtimeClassName: "404" - schedulerName: "394" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɘɢ鬍熖B芭花ª瘡 + runtimeClassName: "426" + schedulerName: "416" securityContext: - fsGroup: -1778638259613624198 - runAsGroup: -3042614092601658792 + fsGroup: 7124276984274024394 + runAsGroup: -779972051078659613 runAsNonRoot: false - runAsUser: 3634773701753283428 + runAsUser: 2179199799235189619 seLinuxOptions: - level: "345" - role: "343" - type: "344" - user: "342" + level: "367" + role: "365" + type: "366" + user: "364" supplementalGroups: - - -2125560879532395341 + - -7127205672279904050 sysctls: - - name: "349" - value: "350" + - name: "371" + value: "372" windowsOptions: - gmsaCredentialSpec: "347" - gmsaCredentialSpecName: "346" - runAsUserName: "348" - serviceAccount: "340" - serviceAccountName: "339" - shareProcessNamespace: false - subdomain: "353" - terminationGracePeriodSeconds: 5620818514944490121 + gmsaCredentialSpec: "369" + gmsaCredentialSpecName: "368" + runAsUserName: "370" + serviceAccount: "362" + serviceAccountName: "361" + shareProcessNamespace: true + subdomain: "375" + terminationGracePeriodSeconds: 2666412258966278206 tolerations: - - effect: Ġ滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼ - key: "395" - operator: '[L' - tolerationSeconds: 4456040724914385859 - value: "396" + - effect: ŽɣB矗E¸乾 + key: "417" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "418" topologySpreadConstraints: - labelSelector: matchExpressions: - - 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 + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A - : BM.6-.Y_72-_--p7 - maxSkew: -782776982 - topologyKey: "405" - whenUnsatisfiable: 鈀 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "427" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "47" @@ -882,14 +938,14 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: 740158871 + availableReplicas: -1469601144 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "413" - reason: "412" - status: '''ƈoIǢ龞瞯å' - type: "" - fullyLabeledReplicas: -929473748 - observedGeneration: -5350227579821888386 - readyReplicas: -1450995995 - replicas: -106050665 + message: "435" + reason: "434" + status: ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å + type: ɡj瓇ɽ丿YƄZZ塖bʘ + fullyLabeledReplicas: 138911331 + observedGeneration: 6703635170896137755 + readyReplicas: 1613009760 + replicas: -330302940 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 ea1b66e1833..b37b0bf1c8d 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1297,123 +1376,123 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "406", - "generateName": "407", - "namespace": "408", - "selfLink": "409", - "uid": "鋡浤ɖ緖焿熣", - "resourceVersion": "7821588463673401230", - "generation": -3408884454087787958, + "name": "426", + "generateName": "427", + "namespace": "428", + "selfLink": "429", + "uid": "`ȗ\u003c8^翜T蘈", + "resourceVersion": "6281861817195808867", + "generation": -8502907933203165744, "creationTimestamp": null, - "deletionGracePeriodSeconds": -7871971636641833314, + "deletionGracePeriodSeconds": -1824067601569574665, "labels": { - "411": "412" + "431": "432" }, "annotations": { - "413": "414" + "433": "434" }, "ownerReferences": [ { - "apiVersion": "415", - "kind": "416", - "name": "417", - "uid": "9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ", - "controller": false, - "blockOwnerDeletion": true + "apiVersion": "435", + "kind": "436", + "name": "437", + "uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ", + "controller": true, + "blockOwnerDeletion": false } ], "finalizers": [ - "418" + "438" ], - "clusterName": "419", + "clusterName": "439", "managedFields": [ { - "manager": "420", - "operation": "ÕW肤", - "apiVersion": "421", - "fieldsType": "422" + "manager": "440", + "operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā", + "apiVersion": "441", + "fieldsType": "442" } ] }, "spec": { "accessModes": [ - "婻漛Ǒ僕ʨƌɦ" + "銲tHǽ÷閂抰^窄CǙķȈĐI梞ū" ], "selector": { "matchLabels": { - "ANx__-F_._n.WaY_o.-0-yE-R55": "2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H" + "p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C": "a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r" }, "matchExpressions": [ { - "key": "6_81_---l_3_-_G-D....js--a---..6bD_M-c", + "key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv", "operator": "Exists" } ] }, "resources": { "limits": { - "宥ɓ": "692" + "O^:": "847" }, "requests": { - "犔kU坥;ȉv5": "156" + "Ɍ蚊ơ鎊t潑": "199" } }, - "volumeName": "429", - "storageClassName": "430", - "volumeMode": "qwïźU痤ȵ", + "volumeName": "449", + "storageClassName": "450", + "volumeMode": "ȳT", "dataSource": { - "apiGroup": "431", - "kind": "432", - "name": "433" + "apiGroup": "451", + "kind": "452", + "name": "453" } }, "status": { - "phase": "怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj", + "phase": "戱PRɄ", "accessModes": [ - "\\屪kƱ" + "熔ķ´ʑ潞Ĵ3Q蠯0" ], "capacity": { - "\"娥Qô!- å2:濕": "362" + "\\溮Ŀ傜NZ!š": "952" }, "conditions": [ { - "type": "nj", - "status": "RY客\\ǯ'_", - "lastProbeTime": "2513-10-02T03:37:43Z", - "lastTransitionTime": "2172-12-06T22:36:31Z", - "reason": "434", - "message": "435" + "type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:", + "status": "ƿOqõƨj2愴ňù廻@p", + "lastProbeTime": "2252-06-28T22:34:24Z", + "lastTransitionTime": "1974-04-29T05:51:38Z", + "reason": "454", + "message": "455" } ] } } ], - "serviceName": "436", - "podManagementPolicy": "榭ș«lj}砵(ɋǬAÃɮǜ:ɐ", + "serviceName": "456", + "podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣", "updateStrategy": { - "type": "瓘ȿ4", + "type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ", "rollingUpdate": { - "partition": -1578718618 + "partition": 86666826 } }, - "revisionHistoryLimit": 1575668098 + "revisionHistoryLimit": 69142596 }, "status": { - "observedGeneration": -2994706141758547943, - "replicas": -148329440, - "readyReplicas": -1823513364, - "currentReplicas": -981691190, - "updatedReplicas": 2069003631, - "currentRevision": "437", - "updateRevision": "438", - "collisionCount": -2044314719, + "observedGeneration": 3474169154658456972, + "replicas": 1449104338, + "readyReplicas": 2037461401, + "currentReplicas": -1847673756, + "updatedReplicas": 154782591, + "currentRevision": "457", + "updateRevision": "458", + "collisionCount": 341287797, "conditions": [ { - "type": "GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V", - "status": "x臥", - "lastTransitionTime": "2583-07-02T00:14:17Z", - "reason": "439", - "message": "440" + "type": "ÆŁĪŀc=Ƨz鈡煰敹xŪO", + "status": "ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+", + "lastTransitionTime": "2493-11-15T11:08:04Z", + "reason": "459", + "message": "460" } ] } 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 1b92aab60f8..3fcb204ffde 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 11b6e4871cb..c9c58634774 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: 榭ș«lj}砵(ɋǬAÃɮǜ:ɐ + podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣 replicas: 896585016 - revisionHistoryLimit: 1575668098 + revisionHistoryLimit: 69142596 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: "436" + serviceName: "456" template: metadata: annotations: @@ -71,412 +71,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -510,37 +544,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -597,28 +632,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -630,60 +684,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -885,84 +940,84 @@ spec: volumePath: "101" updateStrategy: rollingUpdate: - partition: -1578718618 - type: 瓘ȿ4 + partition: 86666826 + type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ volumeClaimTemplates: - metadata: annotations: - "413": "414" - clusterName: "419" + "433": "434" + clusterName: "439" creationTimestamp: null - deletionGracePeriodSeconds: -7871971636641833314 + deletionGracePeriodSeconds: -1824067601569574665 finalizers: - - "418" - generateName: "407" - generation: -3408884454087787958 + - "438" + generateName: "427" + generation: -8502907933203165744 labels: - "411": "412" + "431": "432" managedFields: - - apiVersion: "421" - fieldsType: "422" - manager: "420" - operation: ÕW肤 - name: "406" - namespace: "408" + - apiVersion: "441" + fieldsType: "442" + manager: "440" + operation: Bi攵&ý"ʀ废査Z綶Ā + name: "426" + namespace: "428" ownerReferences: - - apiVersion: "415" - blockOwnerDeletion: true - controller: false - kind: "416" - name: "417" - uid: 9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ - resourceVersion: "7821588463673401230" - selfLink: "409" - uid: 鋡浤ɖ緖焿熣 + - apiVersion: "435" + blockOwnerDeletion: false + controller: true + kind: "436" + name: "437" + uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ + resourceVersion: "6281861817195808867" + selfLink: "429" + uid: '`ȗ<8^翜T蘈' spec: accessModes: - - 婻漛Ǒ僕ʨƌɦ + - 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū dataSource: - apiGroup: "431" - kind: "432" - name: "433" + apiGroup: "451" + kind: "452" + name: "453" resources: limits: - 宥ɓ: "692" + 'O^:': "847" requests: - 犔kU坥;ȉv5: "156" + Ɍ蚊ơ鎊t潑: "199" selector: matchExpressions: - - key: 6_81_---l_3_-_G-D....js--a---..6bD_M-c + - key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv operator: Exists matchLabels: - ANx__-F_._n.WaY_o.-0-yE-R55: 2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H - storageClassName: "430" - volumeMode: qwïźU痤ȵ - volumeName: "429" + p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C: a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r + storageClassName: "450" + volumeMode: ȳT + volumeName: "449" status: accessModes: - - \屪kƱ + - 熔ķ´ʑ潞Ĵ3Q蠯0 capacity: - '"娥Qô!- å2:濕': "362" + \溮Ŀ傜NZ!š: "952" conditions: - - lastProbeTime: "2513-10-02T03:37:43Z" - lastTransitionTime: "2172-12-06T22:36:31Z" - message: "435" - reason: "434" - status: RY客\ǯ'_ - type: nj - phase: 怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj + - lastProbeTime: "2252-06-28T22:34:24Z" + lastTransitionTime: "1974-04-29T05:51:38Z" + message: "455" + reason: "454" + status: ƿOqõƨj2愴ňù廻@p + type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:' + phase: 戱PRɄ status: - collisionCount: -2044314719 + collisionCount: 341287797 conditions: - - lastTransitionTime: "2583-07-02T00:14:17Z" - message: "440" - reason: "439" - status: x臥 - type: GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V - currentReplicas: -981691190 - currentRevision: "437" - observedGeneration: -2994706141758547943 - readyReplicas: -1823513364 - replicas: -148329440 - updateRevision: "438" - updatedReplicas: 2069003631 + - lastTransitionTime: "2493-11-15T11:08:04Z" + message: "460" + reason: "459" + status: ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+ + type: ÆŁĪŀc=Ƨz鈡煰敹xŪO + currentReplicas: -1847673756 + currentRevision: "457" + observedGeneration: 3474169154658456972 + readyReplicas: 2037461401 + replicas: 1449104338 + updateRevision: "458" + updatedReplicas: 154782591 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 d285704563c..26d07131042 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1295,34 +1374,35 @@ } }, "strategy": { + "type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5", "rollingUpdate": { } }, - "minReadySeconds": 997447044, - "revisionHistoryLimit": 989524452, + "minReadySeconds": 212061711, + "revisionHistoryLimit": -1092090658, "rollbackTo": { - "revision": -7811637368862163847 + "revision": -318895959020904110 }, - "progressDeadlineSeconds": 1774123594 + "progressDeadlineSeconds": 1109758199 }, "status": { - "observedGeneration": -4950488263500864484, - "replicas": 67329694, - "updatedReplicas": 1689648303, - "readyReplicas": -1121580186, - "availableReplicas": -1521312599, - "unavailableReplicas": 129237050, + "observedGeneration": 1751238822830387407, + "replicas": -106050665, + "updatedReplicas": -929473748, + "readyReplicas": -1450995995, + "availableReplicas": 740158871, + "unavailableReplicas": -449319810, "conditions": [ { - "type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö", - "status": "2ț", - "lastUpdateTime": "2733-02-09T15:36:31Z", - "lastTransitionTime": "2615-10-02T05:14:27Z", - "reason": "406", - "message": "407" + "type": "", + "status": "'ƈoIǢ龞瞯å", + "lastUpdateTime": "2469-07-10T03:20:34Z", + "lastTransitionTime": "1970-05-16T01:44:00Z", + "reason": "426", + "message": "427" } ], - "collisionCount": -612321491 + "collisionCount": 571778293 } } \ 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 a2334b15a9f..5a870634b93 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 dac939e96b7..ca6a34b7bb8 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: 997447044 - progressDeadlineSeconds: 1774123594 + minReadySeconds: 212061711 + progressDeadlineSeconds: 1109758199 replicas: 896585016 - revisionHistoryLimit: 989524452 + revisionHistoryLimit: -1092090658 rollbackTo: - revision: -7811637368862163847 + revision: -318895959020904110 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,6 +44,7 @@ spec: 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 template: metadata: annotations: @@ -75,412 +76,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -514,37 +549,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -601,28 +637,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -634,60 +689,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -888,17 +944,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -1521312599 - collisionCount: -612321491 + availableReplicas: 740158871 + collisionCount: 571778293 conditions: - - lastTransitionTime: "2615-10-02T05:14:27Z" - lastUpdateTime: "2733-02-09T15:36:31Z" - message: "407" - reason: "406" - status: 2ț - type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö' - observedGeneration: -4950488263500864484 - readyReplicas: -1121580186 - replicas: 67329694 - unavailableReplicas: 129237050 - updatedReplicas: 1689648303 + - lastTransitionTime: "1970-05-16T01:44:00Z" + lastUpdateTime: "2469-07-10T03:20:34Z" + message: "427" + reason: "426" + status: '''ƈoIǢ龞瞯å' + type: "" + observedGeneration: 1751238822830387407 + readyReplicas: -1450995995 + replicas: -106050665 + unavailableReplicas: -449319810 + updatedReplicas: -929473748 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 6543ea631e7..fc54e006e22 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1297,123 +1376,123 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "406", - "generateName": "407", - "namespace": "408", - "selfLink": "409", - "uid": "鋡浤ɖ緖焿熣", - "resourceVersion": "7821588463673401230", - "generation": -3408884454087787958, + "name": "426", + "generateName": "427", + "namespace": "428", + "selfLink": "429", + "uid": "`ȗ\u003c8^翜T蘈", + "resourceVersion": "6281861817195808867", + "generation": -8502907933203165744, "creationTimestamp": null, - "deletionGracePeriodSeconds": -7871971636641833314, + "deletionGracePeriodSeconds": -1824067601569574665, "labels": { - "411": "412" + "431": "432" }, "annotations": { - "413": "414" + "433": "434" }, "ownerReferences": [ { - "apiVersion": "415", - "kind": "416", - "name": "417", - "uid": "9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ", - "controller": false, - "blockOwnerDeletion": true + "apiVersion": "435", + "kind": "436", + "name": "437", + "uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ", + "controller": true, + "blockOwnerDeletion": false } ], "finalizers": [ - "418" + "438" ], - "clusterName": "419", + "clusterName": "439", "managedFields": [ { - "manager": "420", - "operation": "ÕW肤", - "apiVersion": "421", - "fieldsType": "422" + "manager": "440", + "operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā", + "apiVersion": "441", + "fieldsType": "442" } ] }, "spec": { "accessModes": [ - "婻漛Ǒ僕ʨƌɦ" + "銲tHǽ÷閂抰^窄CǙķȈĐI梞ū" ], "selector": { "matchLabels": { - "ANx__-F_._n.WaY_o.-0-yE-R55": "2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H" + "p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C": "a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r" }, "matchExpressions": [ { - "key": "6_81_---l_3_-_G-D....js--a---..6bD_M-c", + "key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv", "operator": "Exists" } ] }, "resources": { "limits": { - "宥ɓ": "692" + "O^:": "847" }, "requests": { - "犔kU坥;ȉv5": "156" + "Ɍ蚊ơ鎊t潑": "199" } }, - "volumeName": "429", - "storageClassName": "430", - "volumeMode": "qwïźU痤ȵ", + "volumeName": "449", + "storageClassName": "450", + "volumeMode": "ȳT", "dataSource": { - "apiGroup": "431", - "kind": "432", - "name": "433" + "apiGroup": "451", + "kind": "452", + "name": "453" } }, "status": { - "phase": "怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj", + "phase": "戱PRɄ", "accessModes": [ - "\\屪kƱ" + "熔ķ´ʑ潞Ĵ3Q蠯0" ], "capacity": { - "\"娥Qô!- å2:濕": "362" + "\\溮Ŀ傜NZ!š": "952" }, "conditions": [ { - "type": "nj", - "status": "RY客\\ǯ'_", - "lastProbeTime": "2513-10-02T03:37:43Z", - "lastTransitionTime": "2172-12-06T22:36:31Z", - "reason": "434", - "message": "435" + "type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:", + "status": "ƿOqõƨj2愴ňù廻@p", + "lastProbeTime": "2252-06-28T22:34:24Z", + "lastTransitionTime": "1974-04-29T05:51:38Z", + "reason": "454", + "message": "455" } ] } } ], - "serviceName": "436", - "podManagementPolicy": "榭ș«lj}砵(ɋǬAÃɮǜ:ɐ", + "serviceName": "456", + "podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣", "updateStrategy": { - "type": "瓘ȿ4", + "type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ", "rollingUpdate": { - "partition": -1578718618 + "partition": 86666826 } }, - "revisionHistoryLimit": 1575668098 + "revisionHistoryLimit": 69142596 }, "status": { - "observedGeneration": 8488467370342917811, - "replicas": -1786394556, - "readyReplicas": -1633381902, - "currentReplicas": 125606756, - "updatedReplicas": 120643071, - "currentRevision": "437", - "updateRevision": "438", - "collisionCount": -126974464, + "observedGeneration": 8145135462833081718, + "replicas": -1589158932, + "readyReplicas": -1470626063, + "currentReplicas": -2011137790, + "updatedReplicas": -126896219, + "currentRevision": "457", + "updateRevision": "458", + "collisionCount": 1664714908, "conditions": [ { - "type": "5ƞɔJ灭ƳĽ", - "status": "ɭ锻ó/階", - "lastTransitionTime": "2478-01-26T13:55:29Z", - "reason": "439", - "message": "440" + "type": "靌瀞鈝Ń¥厀Ł8Ì", + "status": "", + "lastTransitionTime": "2456-08-06T13:26:39Z", + "reason": "459", + "message": "460" } ] } 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 b76eba7dbf9..6a2f628f684 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 c401830056c..49ac65ecc40 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: 榭ș«lj}砵(ɋǬAÃɮǜ:ɐ + podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣 replicas: 896585016 - revisionHistoryLimit: 1575668098 + revisionHistoryLimit: 69142596 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: "436" + serviceName: "456" template: metadata: annotations: @@ -71,412 +71,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -510,37 +544,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -597,28 +632,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -630,60 +684,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -885,84 +940,84 @@ spec: volumePath: "101" updateStrategy: rollingUpdate: - partition: -1578718618 - type: 瓘ȿ4 + partition: 86666826 + type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ volumeClaimTemplates: - metadata: annotations: - "413": "414" - clusterName: "419" + "433": "434" + clusterName: "439" creationTimestamp: null - deletionGracePeriodSeconds: -7871971636641833314 + deletionGracePeriodSeconds: -1824067601569574665 finalizers: - - "418" - generateName: "407" - generation: -3408884454087787958 + - "438" + generateName: "427" + generation: -8502907933203165744 labels: - "411": "412" + "431": "432" managedFields: - - apiVersion: "421" - fieldsType: "422" - manager: "420" - operation: ÕW肤 - name: "406" - namespace: "408" + - apiVersion: "441" + fieldsType: "442" + manager: "440" + operation: Bi攵&ý"ʀ废査Z綶Ā + name: "426" + namespace: "428" ownerReferences: - - apiVersion: "415" - blockOwnerDeletion: true - controller: false - kind: "416" - name: "417" - uid: 9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ - resourceVersion: "7821588463673401230" - selfLink: "409" - uid: 鋡浤ɖ緖焿熣 + - apiVersion: "435" + blockOwnerDeletion: false + controller: true + kind: "436" + name: "437" + uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ + resourceVersion: "6281861817195808867" + selfLink: "429" + uid: '`ȗ<8^翜T蘈' spec: accessModes: - - 婻漛Ǒ僕ʨƌɦ + - 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū dataSource: - apiGroup: "431" - kind: "432" - name: "433" + apiGroup: "451" + kind: "452" + name: "453" resources: limits: - 宥ɓ: "692" + 'O^:': "847" requests: - 犔kU坥;ȉv5: "156" + Ɍ蚊ơ鎊t潑: "199" selector: matchExpressions: - - key: 6_81_---l_3_-_G-D....js--a---..6bD_M-c + - key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv operator: Exists matchLabels: - ANx__-F_._n.WaY_o.-0-yE-R55: 2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H - storageClassName: "430" - volumeMode: qwïźU痤ȵ - volumeName: "429" + p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C: a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r + storageClassName: "450" + volumeMode: ȳT + volumeName: "449" status: accessModes: - - \屪kƱ + - 熔ķ´ʑ潞Ĵ3Q蠯0 capacity: - '"娥Qô!- å2:濕': "362" + \溮Ŀ傜NZ!š: "952" conditions: - - lastProbeTime: "2513-10-02T03:37:43Z" - lastTransitionTime: "2172-12-06T22:36:31Z" - message: "435" - reason: "434" - status: RY客\ǯ'_ - type: nj - phase: 怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj + - lastProbeTime: "2252-06-28T22:34:24Z" + lastTransitionTime: "1974-04-29T05:51:38Z" + message: "455" + reason: "454" + status: ƿOqõƨj2愴ňù廻@p + type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:' + phase: 戱PRɄ status: - collisionCount: -126974464 + collisionCount: 1664714908 conditions: - - lastTransitionTime: "2478-01-26T13:55:29Z" - message: "440" - reason: "439" - status: ɭ锻ó/階 - type: 5ƞɔJ灭ƳĽ - currentReplicas: 125606756 - currentRevision: "437" - observedGeneration: 8488467370342917811 - readyReplicas: -1633381902 - replicas: -1786394556 - updateRevision: "438" - updatedReplicas: 120643071 + - lastTransitionTime: "2456-08-06T13:26:39Z" + message: "460" + reason: "459" + status: "" + type: 靌瀞鈝Ń¥厀Ł8Ì + currentReplicas: -2011137790 + currentRevision: "457" + observedGeneration: 8145135462833081718 + readyReplicas: -1470626063 + replicas: -1589158932 + updateRevision: "458" + updatedReplicas: -126896219 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 3ef8660bbd4..d198478fb8c 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 @@ -509,143 +509,173 @@ "successThreshold": -1430577593, "failureThreshold": 524249411 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "k_瀹鞎sn芞QÄȻ", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": "194", + "host": "195" + }, + "initialDelaySeconds": 364013971, + "timeoutSeconds": 1596422492, + "periodSeconds": -1790124395, + "successThreshold": 1094670193, + "failureThreshold": 905846572 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "196" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", + "path": "197", + "port": "198", + "host": "199", + "scheme": "蚛隖\u003cǶĬ4y£軶ǃ*ʙ嫙\u0026蒒5靇C'", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "200", + "value": "201" } ] }, "tcpSocket": { - "port": 559781916, - "host": "194" + "port": 2126876305, + "host": "202" } }, "preStop": { "exec": { "command": [ - "195" + "203" ] }, "httpGet": { - "path": "196", - "port": 1150375229, - "host": "197", - "scheme": "QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖\u003cǶ", + "path": "204", + "port": "205", + "host": "206", + "scheme": "Ŵ廷s{Ⱦdz@", "httpHeaders": [ { - "name": "198", - "value": "199" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": -1696471293, - "host": "200" + "port": 406308963, + "host": "209" } } }, - "terminationMessagePath": "201", - "terminationMessagePolicy": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", - "imagePullPolicy": "Ŵ廷s{Ⱦdz@", + "terminationMessagePath": "210", + "terminationMessagePolicy": "ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0", + "imagePullPolicy": "ŤǢʭ嵔棂p儼Ƿ裚瓶", "securityContext": { "capabilities": { "add": [ - "ʋŀ樺ȃv渟7¤7d" + "+j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn" ], "drop": [ - "ƯĖ漘Z剚敍0)鈼¬麄p呝T" + "1ſ盷褎weLJèux榜VƋZ1Ůđ眊" ] }, "privileged": true, "seLinuxOptions": { - "user": "202", - "role": "203", - "type": "204", - "level": "205" + "user": "211", + "role": "212", + "type": "213", + "level": "214" }, "windowsOptions": { - "gmsaCredentialSpecName": "206", - "gmsaCredentialSpec": "207", - "runAsUserName": "208" + "gmsaCredentialSpecName": "215", + "gmsaCredentialSpec": "216", + "runAsUserName": "217" }, - "runAsUser": 4181787587415673530, - "runAsGroup": 825262458636305509, + "runAsUser": 1563703589270296759, + "runAsGroup": 6506922239346928579, "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "瓧嫭塓烀罁胾^拜" + "procMount": "fǣ萭旿@" }, "stdin": true, - "stdinOnce": true + "stdinOnce": true, + "tty": true } ], "containers": [ { - "name": "209", - "image": "210", + "name": "218", + "image": "219", "command": [ - "211" + "220" ], "args": [ - "212" + "221" ], - "workingDir": "213", + "workingDir": "222", "ports": [ { - "name": "214", - "hostPort": 1385030458, - "containerPort": 427196286, - "protocol": "o/樝fw[Řż丩Ž", - "hostIP": "215" + "name": "223", + "hostPort": 1584001904, + "containerPort": -839281354, + "protocol": "5姣\u003e懔%熷谟þ蛯ɰ荶ljʁ", + "hostIP": "224" } ], "envFrom": [ { - "prefix": "216", + "prefix": "225", "configMapRef": { - "name": "217", + "name": "226", "optional": false }, "secretRef": { - "name": "218", - "optional": true + "name": "227", + "optional": false } } ], "env": [ { - "name": "219", - "value": "220", + "name": "228", + "value": "229", "valueFrom": { "fieldRef": { - "apiVersion": "221", - "fieldPath": "222" + "apiVersion": "230", + "fieldPath": "231" }, "resourceFieldRef": { - "containerName": "223", - "resource": "224", - "divisor": "932" + "containerName": "232", + "resource": "233", + "divisor": "357" }, "configMapKeyRef": { - "name": "225", - "key": "226", - "optional": false + "name": "234", + "key": "235", + "optional": true }, "secretKeyRef": { - "name": "227", - "key": "228", + "name": "236", + "key": "237", "optional": true } } @@ -653,67 +683,38 @@ ], "resources": { "limits": { - "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę": "638" + "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0": "175" }, "requests": { - "ǂ\u003e5姣\u003e懔%熷": "440" + "ɺ皚|懥ƖN粕擓ƖHV": "962" } }, "volumeMounts": [ { - "name": "229", - "readOnly": true, - "mountPath": "230", - "subPath": "231", - "mountPropagation": "奺Ȋ礶惇¸t颟.鵫ǚ", - "subPathExpr": "232" + "name": "238", + "mountPath": "239", + "subPath": "240", + "mountPropagation": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "subPathExpr": "241" } ], "volumeDevices": [ { - "name": "233", - "devicePath": "234" + "name": "242", + "devicePath": "243" } ], "livenessProbe": { "exec": { "command": [ - "235" + "244" ] }, "httpGet": { - "path": "236", - "port": "237", - "host": "238", - "scheme": "Ȥ藠3.", - "httpHeaders": [ - { - "name": "239", - "value": "240" - } - ] - }, - "tcpSocket": { - "port": "241", - "host": "242" - }, - "initialDelaySeconds": -1389418722, - "timeoutSeconds": 851018015, - "periodSeconds": 596942561, - "successThreshold": -1880980172, - "failureThreshold": -161485752 - }, - "readinessProbe": { - "exec": { - "command": [ - "243" - ] - }, - "httpGet": { - "path": "244", - "port": "245", + "path": "245", + "port": -393291312, "host": "246", - "scheme": "«丯Ƙ枛牐ɺ皚", + "scheme": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?", "httpHeaders": [ { "name": "247", @@ -722,152 +723,207 @@ ] }, "tcpSocket": { - "port": -1934111455, - "host": "249" + "port": "249", + "host": "250" }, - "initialDelaySeconds": 766864314, - "timeoutSeconds": 1146016612, - "periodSeconds": 1495880465, - "successThreshold": -1032967081, - "failureThreshold": 59664438 + "initialDelaySeconds": 627713162, + "timeoutSeconds": 1255312175, + "periodSeconds": -1740959124, + "successThreshold": 158280212, + "failureThreshold": -361442565 + }, + "readinessProbe": { + "exec": { + "command": [ + "251" + ] + }, + "httpGet": { + "path": "252", + "port": -2013568185, + "host": "253", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "254", + "value": "255" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "256" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737 + }, + "startupProbe": { + "exec": { + "command": [ + "257" + ] + }, + "httpGet": { + "path": "258", + "port": "259", + "host": "260", + "scheme": "Qg鄠[", + "httpHeaders": [ + { + "name": "261", + "value": "262" + } + ] + }, + "tcpSocket": { + "port": -241238495, + "host": "263" + }, + "initialDelaySeconds": -1556231754, + "timeoutSeconds": 461585849, + "periodSeconds": -321709789, + "successThreshold": -1463645123, + "failureThreshold": -1011390276 }, "lifecycle": { "postStart": { "exec": { "command": [ - "250" + "264" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "'", + "path": "265", + "port": "266", + "host": "267", + "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "268", + "value": "269" } ] }, "tcpSocket": { - "port": -801430937, - "host": "256" + "port": "270", + "host": "271" } }, "preStop": { "exec": { "command": [ - "257" + "272" ] }, "httpGet": { - "path": "258", - "port": 1810980158, - "host": "259", - "scheme": "_ƮA攤/ɸɎ R§耶FfBl", + "path": "273", + "port": -1161649101, + "host": "274", + "scheme": "嚧ʣq埄", "httpHeaders": [ { - "name": "260", - "value": "261" + "name": "275", + "value": "276" } ] }, "tcpSocket": { - "port": 1074486306, - "host": "262" + "port": "277", + "host": "278" } } }, - "terminationMessagePath": "263", - "terminationMessagePolicy": "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ", - "imagePullPolicy": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "terminationMessagePath": "279", + "terminationMessagePolicy": "ʁ岼昕ĬÇ", + "imagePullPolicy": "T 苧yñKJɐ扵G", "securityContext": { "capabilities": { "add": [ - "勅跦Opwǩ曬逴褜1Ø" + "fʀļ腩墺Ò媁荭gw忊" ], "drop": [ - "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]" + "E剒蔞" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "264", - "role": "265", - "type": "266", - "level": "267" + "user": "280", + "role": "281", + "type": "282", + "level": "283" }, "windowsOptions": { - "gmsaCredentialSpecName": "268", - "gmsaCredentialSpec": "269", - "runAsUserName": "270" + "gmsaCredentialSpecName": "284", + "gmsaCredentialSpec": "285", + "runAsUserName": "286" }, - "runAsUser": -6470941481344047265, - "runAsGroup": 1373384864388370080, - "runAsNonRoot": false, + "runAsUser": -6177393256425700216, + "runAsGroup": 2001337664780390084, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "W:ĸ輦唊#v" + "allowPrivilegeEscalation": false, + "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026" }, - "tty": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "271", - "image": "272", + "name": "287", + "image": "288", "command": [ - "273" + "289" ], "args": [ - "274" + "290" ], - "workingDir": "275", + "workingDir": "291", "ports": [ { - "name": "276", - "hostPort": 2058122084, - "containerPort": -379385405, - "protocol": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", - "hostIP": "277" + "name": "292", + "hostPort": 1313273370, + "containerPort": -1296830577, + "hostIP": "293" } ], "envFrom": [ { - "prefix": "278", + "prefix": "294", "configMapRef": { - "name": "279", + "name": "295", "optional": true }, "secretRef": { - "name": "280", + "name": "296", "optional": false } } ], "env": [ { - "name": "281", - "value": "282", + "name": "297", + "value": "298", "valueFrom": { "fieldRef": { - "apiVersion": "283", - "fieldPath": "284" + "apiVersion": "299", + "fieldPath": "300" }, "resourceFieldRef": { - "containerName": "285", - "resource": "286", - "divisor": "355" + "containerName": "301", + "resource": "302", + "divisor": "3" }, "configMapKeyRef": { - "name": "287", - "key": "288", - "optional": false + "name": "303", + "key": "304", + "optional": true }, "secretKeyRef": { - "name": "289", - "key": "290", + "name": "305", + "key": "306", "optional": true } } @@ -875,214 +931,242 @@ ], "resources": { "limits": { - "|E剒蔞|表徶đ寳议Ƭƶ氩": "337" + "淳4揻-$ɽ丟×x锏ɟ": "178" }, "requests": { - "": "124" + "Ö闊 鰔澝qV": "752" } }, "volumeMounts": [ { - "name": "291", - "mountPath": "292", - "subPath": "293", - "mountPropagation": "簳°Ļǟi\u0026皥贸", - "subPathExpr": "294" + "name": "307", + "readOnly": true, + "mountPath": "308", + "subPath": "309", + "mountPropagation": "/»頸+SÄ蚃ɣľ)酊龨Î", + "subPathExpr": "310" } ], "volumeDevices": [ { - "name": "295", - "devicePath": "296" + "name": "311", + "devicePath": "312" } ], "livenessProbe": { "exec": { "command": [ - "297" + "313" ] }, "httpGet": { - "path": "298", - "port": "299", - "host": "300", - "scheme": "现葢ŵ橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉", + "path": "314", + "port": "315", + "host": "316", + "scheme": "冓鍓贯", "httpHeaders": [ { - "name": "301", - "value": "302" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "303", - "host": "304" + "port": "319", + "host": "320" }, - "initialDelaySeconds": 2066735093, - "timeoutSeconds": -190183379, - "periodSeconds": -940334911, - "successThreshold": -341287812, - "failureThreshold": 2030115750 + "initialDelaySeconds": 1290950685, + "timeoutSeconds": 12533543, + "periodSeconds": 1058960779, + "successThreshold": -2133441986, + "failureThreshold": 472742933 }, "readinessProbe": { "exec": { "command": [ - "305" + "321" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "path": "322", + "port": 1332783160, + "host": "323", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": 458427807, - "host": "311" + "port": "326", + "host": "327" }, - "initialDelaySeconds": -1971421078, - "timeoutSeconds": 1905181464, - "periodSeconds": -1730959016, - "successThreshold": 1272940694, - "failureThreshold": -385597677 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482 + }, + "startupProbe": { + "exec": { + "command": [ + "328" + ] + }, + "httpGet": { + "path": "329", + "port": "330", + "host": "331", + "scheme": "鍏H鯂²", + "httpHeaders": [ + { + "name": "332", + "value": "333" + } + ] + }, + "tcpSocket": { + "port": -1187301925, + "host": "334" + }, + "initialDelaySeconds": -402384013, + "timeoutSeconds": -181601395, + "periodSeconds": -617381112, + "successThreshold": 1851229369, + "failureThreshold": -560238386 }, "lifecycle": { "postStart": { "exec": { "command": [ - "312" + "335" ] }, "httpGet": { - "path": "313", - "port": "314", - "host": "315", - "scheme": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC", + "path": "336", + "port": "337", + "host": "338", + "scheme": "C\"6x$1s", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "339", + "value": "340" } ] }, "tcpSocket": { - "port": "318", - "host": "319" + "port": "341", + "host": "342" } }, "preStop": { "exec": { "command": [ - "320" + "343" ] }, "httpGet": { - "path": "321", - "port": "322", - "host": "323", - "scheme": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²", + "path": "344", + "port": -518160270, + "host": "345", + "scheme": "ɔ幩še", "httpHeaders": [ { - "name": "324", - "value": "325" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": -1187301925, - "host": "326" + "port": 1956567721, + "host": "348" } } }, - "terminationMessagePath": "327", - "terminationMessagePolicy": "Őnj汰8ŕ", - "imagePullPolicy": "邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩", + "terminationMessagePath": "349", + "terminationMessagePolicy": "ȤƏ埮pɵ", "securityContext": { "capabilities": { "add": [ - "SvEȤƏ埮p" + "|ʐşƧ諔迮ƙIJ嘢" ], "drop": [ - "{WOŭW灬pȭCV擭銆jʒǚ鍰" + "ʗN" ] }, "privileged": false, "seLinuxOptions": { - "user": "328", - "role": "329", - "type": "330", - "level": "331" + "user": "350", + "role": "351", + "type": "352", + "level": "353" }, "windowsOptions": { - "gmsaCredentialSpecName": "332", - "gmsaCredentialSpec": "333", - "runAsUserName": "334" + "gmsaCredentialSpecName": "354", + "gmsaCredentialSpec": "355", + "runAsUserName": "356" }, - "runAsUser": 6726836758549163621, - "runAsGroup": 741362943076737213, + "runAsUser": -6048969174364431391, + "runAsGroup": 6726836758549163621, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "DµņP)DŽ髐njʉBn(fǂǢ曣ŋ" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "" }, "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "335" + "targetContainerName": "357" } ], - "restartPolicy": "åe躒訙", - "terminationGracePeriodSeconds": 6942343986058351509, - "activeDeadlineSeconds": 9212087462729867542, - "dnsPolicy": "娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ", + "restartPolicy": "ɭɪǹ0衷,", + "terminationGracePeriodSeconds": -3039830979334099524, + "activeDeadlineSeconds": 7270263763744228913, + "dnsPolicy": "n(fǂǢ曣ŋayåe躒訙Ǫ", "nodeSelector": { - "336": "337" + "358": "359" }, - "serviceAccountName": "338", - "serviceAccount": "339", - "automountServiceAccountToken": false, - "nodeName": "340", - "hostPID": true, - "shareProcessNamespace": false, + "serviceAccountName": "360", + "serviceAccount": "361", + "automountServiceAccountToken": true, + "nodeName": "362", + "hostNetwork": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "341", - "role": "342", - "type": "343", - "level": "344" + "user": "363", + "role": "364", + "type": "365", + "level": "366" }, "windowsOptions": { - "gmsaCredentialSpecName": "345", - "gmsaCredentialSpec": "346", - "runAsUserName": "347" + "gmsaCredentialSpecName": "367", + "gmsaCredentialSpec": "368", + "runAsUserName": "369" }, - "runAsUser": 7747616967629081728, - "runAsGroup": 2548453080315983269, + "runAsUser": -5315960194881172085, + "runAsGroup": 6386250802140824739, "runAsNonRoot": false, "supplementalGroups": [ - -1193643752264108019 + -4480129203693517072 ], - "fsGroup": -7117039988160665426, + "fsGroup": 2585323675983182372, "sysctls": [ { - "name": "348", - "value": "349" + "name": "370", + "value": "371" } ] }, "imagePullSecrets": [ { - "name": "350" + "name": "372" } ], - "hostname": "351", - "subdomain": "352", + "hostname": "373", + "subdomain": "374", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1090,19 +1174,19 @@ { "matchExpressions": [ { - "key": "353", - "operator": "", + "key": "375", + "operator": "Ã茓pȓɻ", "values": [ - "354" + "376" ] } ], "matchFields": [ { - "key": "355", - "operator": "ƽ眝{æ盪泙", + "key": "377", + "operator": "", "values": [ - "356" + "378" ] } ] @@ -1111,23 +1195,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 646133945, + "weight": -767058113, "preference": { "matchExpressions": [ { - "key": "357", - "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "key": "379", + "operator": "Ǹ|蕎'佉賞ǧĒz", "values": [ - "358" + "380" ] } ], "matchFields": [ { - "key": "359", - "operator": "ʨIk(dŊiɢzĮ蛋I滞", + "key": "381", + "operator": "ùfŭƽ", "values": [ - "360" + "382" ] } ] @@ -1140,43 +1224,40 @@ { "labelSelector": { "matchLabels": { - "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" + "h-up52--sjo7799-skj5--9/R_rm": "CR.s--f.-f.-zv._._.o" }, "matchExpressions": [ { - "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", - "operator": "Exists" + "key": "K_A-_9_Z_C..7o_x3..-.8-Jp-94", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "367" + "389" ], - "topologyKey": "368" + "topologyKey": "390" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -855547676, + "weight": 801902541, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" + "bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I": "x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4" }, "matchExpressions": [ { - "key": "8.--w0_1V7", - "operator": "In", - "values": [ - "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "397" ], - "topologyKey": "376" + "topologyKey": "398" } } ] @@ -1186,102 +1267,105 @@ { "labelSelector": { "matchLabels": { - "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "key": "QZ9p_6.C.e", "operator": "DoesNotExist" } ] }, "namespaces": [ - "383" + "405" ], - "topologyKey": "384" + "topologyKey": "406" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 808399187, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", - "operator": "DoesNotExist" + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", + "operator": "NotIn", + "values": [ + "txb__-ex-_1_-ODgC_1-_V" + ] } ] }, "namespaces": [ - "391" + "413" ], - "topologyKey": "392" + "topologyKey": "414" } } ] } }, - "schedulerName": "393", + "schedulerName": "415", "tolerations": [ { - "key": "394", - "operator": "ƹ|", - "value": "395", - "effect": "料ȭzV镜籬ƽ", - "tolerationSeconds": 935587338391120947 + "key": "416", + "operator": "堺ʣ", + "value": "417", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "396", + "ip": "418", "hostnames": [ - "397" + "419" ] } ], - "priorityClassName": "398", - "priority": 1690570439, + "priorityClassName": "420", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "399" + "421" ], "searches": [ - "400" + "422" ], "options": [ { - "name": "401", - "value": "402" + "name": "423", + "value": "424" } ] }, "readinessGates": [ { - "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "403", - "enableServiceLinks": true, - "preemptionPolicy": "eáNRNJ丧鴻Ŀ", + "runtimeClassName": "425", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -137402083, - "topologyKey": "404", - "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", + "maxSkew": -150478704, + "topologyKey": "426", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "qW", + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "operator": "In", "values": [ "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" @@ -1317,8 +1401,8 @@ "type": "", "status": "'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "411", - "message": "412" + "reason": "433", + "message": "434" } ] } 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 8ee663b76eb..f512b3d723d 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 c96298eb3c4..a863b758eb9 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 @@ -71,409 +71,447 @@ spec: selfLink: "28" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: 9212087462729867542 + activeDeadlineSeconds: 7270263763744228913 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "357" - operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' + - key: "379" + operator: Ǹ|蕎'佉賞ǧĒz values: - - "358" + - "380" matchFields: - - key: "359" - operator: ʨIk(dŊiɢzĮ蛋I滞 + - key: "381" + operator: ùfŭƽ values: - - "360" - weight: 646133945 + - "382" + weight: -767058113 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "353" + - key: "375" + operator: Ã茓pȓɻ + values: + - "376" + matchFields: + - key: "377" operator: "" values: - - "354" - matchFields: - - key: "355" - operator: ƽ眝{æ盪泙 - values: - - "356" + - "378" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8.--w0_1V7 - operator: In - values: - - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 + bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I: x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4 namespaces: - - "375" - topologyKey: "376" - weight: -855547676 + - "397" + topologyKey: "398" + weight: 801902541 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd - operator: Exists + - key: K_A-_9_Z_C..7o_x3..-.8-Jp-94 + operator: DoesNotExist matchLabels: - 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 + h-up52--sjo7799-skj5--9/R_rm: CR.s--f.-f.-zv._._.o namespaces: - - "367" - topologyKey: "368" + - "389" + topologyKey: "390" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf - operator: DoesNotExist + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D + operator: NotIn + values: + - txb__-ex-_1_-ODgC_1-_V matchLabels: - 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "391" - topologyKey: "392" - weight: 808399187 + - "413" + topologyKey: "414" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + - key: QZ9p_6.C.e operator: DoesNotExist matchLabels: - 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "383" - topologyKey: "384" - automountServiceAccountToken: false + - "405" + topologyKey: "406" + automountServiceAccountToken: true containers: - args: - - "212" + - "221" command: - - "211" + - "220" env: - - name: "219" - value: "220" + - name: "228" + value: "229" valueFrom: configMapKeyRef: - key: "226" - name: "225" - optional: false + key: "235" + name: "234" + optional: true fieldRef: - apiVersion: "221" - fieldPath: "222" + apiVersion: "230" + fieldPath: "231" resourceFieldRef: - containerName: "223" - divisor: "932" - resource: "224" + containerName: "232" + divisor: "357" + resource: "233" secretKeyRef: - key: "228" - name: "227" + key: "237" + name: "236" optional: true envFrom: - configMapRef: - name: "217" + name: "226" optional: false - prefix: "216" + prefix: "225" secretRef: - name: "218" - optional: true - image: "210" - imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 + name: "227" + optional: false + image: "219" + imagePullPolicy: T 苧yñKJɐ扵G lifecycle: postStart: exec: command: - - "250" + - "264" httpGet: - host: "253" + host: "267" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: '''' + - name: "268" + value: "269" + path: "265" + port: "266" + scheme: ']佱¿>犵殇ŕ-Ɂ圯W' tcpSocket: - host: "256" - port: -801430937 + host: "271" + port: "270" preStop: exec: command: - - "257" + - "272" httpGet: - host: "259" + host: "274" httpHeaders: - - name: "260" - value: "261" - path: "258" - port: 1810980158 - scheme: _ƮA攤/ɸɎ R§耶FfBl + - name: "275" + value: "276" + path: "273" + port: -1161649101 + scheme: 嚧ʣq埄 tcpSocket: - host: "262" - port: 1074486306 + host: "278" + port: "277" livenessProbe: exec: command: - - "235" - failureThreshold: -161485752 - httpGet: - host: "238" - httpHeaders: - - name: "239" - value: "240" - path: "236" - port: "237" - scheme: Ȥ藠3. - initialDelaySeconds: -1389418722 - periodSeconds: 596942561 - successThreshold: -1880980172 - tcpSocket: - host: "242" - port: "241" - timeoutSeconds: 851018015 - name: "209" - ports: - - containerPort: 427196286 - hostIP: "215" - hostPort: 1385030458 - name: "214" - protocol: o/樝fw[Řż丩Ž - readinessProbe: - exec: - command: - - "243" - failureThreshold: 59664438 + - "244" + failureThreshold: -361442565 httpGet: host: "246" httpHeaders: - name: "247" value: "248" - path: "244" - port: "245" - scheme: «丯Ƙ枛牐ɺ皚 - initialDelaySeconds: 766864314 - periodSeconds: 1495880465 - successThreshold: -1032967081 + path: "245" + port: -393291312 + scheme: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? + initialDelaySeconds: 627713162 + periodSeconds: -1740959124 + successThreshold: 158280212 tcpSocket: - host: "249" - port: -1934111455 - timeoutSeconds: 1146016612 + host: "250" + port: "249" + timeoutSeconds: 1255312175 + name: "218" + ports: + - containerPort: -839281354 + hostIP: "224" + hostPort: 1584001904 + name: "223" + protocol: 5姣>懔%熷谟þ蛯ɰ荶ljʁ + readinessProbe: + exec: + command: + - "251" + failureThreshold: -36782737 + httpGet: + host: "253" + httpHeaders: + - name: "254" + value: "255" + path: "252" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' + initialDelaySeconds: -1244623134 + periodSeconds: -398297599 + successThreshold: 873056500 + tcpSocket: + host: "256" + port: -20130017 + timeoutSeconds: -1334110502 resources: limits: - 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" + 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0: "175" requests: - ǂ>5姣>懔%熷: "440" + ɺ皚|懥ƖN粕擓ƖHV: "962" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 勅跦Opwǩ曬逴褜1Ø + - fʀļ腩墺Ò媁荭gw忊 drop: - - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] - privileged: true - procMount: W:ĸ輦唊#v + - E剒蔞 + privileged: false + procMount: Ȩ<6鄰簳°Ļǟi& readOnlyRootFilesystem: true - runAsGroup: 1373384864388370080 - runAsNonRoot: false - runAsUser: -6470941481344047265 + runAsGroup: 2001337664780390084 + runAsNonRoot: true + runAsUser: -6177393256425700216 seLinuxOptions: - level: "267" - role: "265" - type: "266" - user: "264" + level: "283" + role: "281" + type: "282" + user: "280" windowsOptions: - gmsaCredentialSpec: "269" - gmsaCredentialSpecName: "268" - runAsUserName: "270" - terminationMessagePath: "263" - terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ - tty: true + gmsaCredentialSpec: "285" + gmsaCredentialSpecName: "284" + runAsUserName: "286" + startupProbe: + exec: + command: + - "257" + failureThreshold: -1011390276 + httpGet: + host: "260" + httpHeaders: + - name: "261" + value: "262" + path: "258" + port: "259" + scheme: Qg鄠[ + initialDelaySeconds: -1556231754 + periodSeconds: -321709789 + successThreshold: -1463645123 + tcpSocket: + host: "263" + port: -241238495 + timeoutSeconds: 461585849 + stdin: true + terminationMessagePath: "279" + terminationMessagePolicy: ʁ岼昕ĬÇ volumeDevices: - - devicePath: "234" - name: "233" + - devicePath: "243" + name: "242" volumeMounts: - - mountPath: "230" - mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ - name: "229" - readOnly: true - subPath: "231" - subPathExpr: "232" - workingDir: "213" + - mountPath: "239" + mountPropagation: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' + name: "238" + subPath: "240" + subPathExpr: "241" + workingDir: "222" dnsConfig: nameservers: - - "399" + - "421" options: - - name: "401" - value: "402" + - name: "423" + value: "424" searches: - - "400" - dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ - enableServiceLinks: true + - "422" + dnsPolicy: n(fǂǢ曣ŋayåe躒訙Ǫ + enableServiceLinks: false ephemeralContainers: - args: - - "274" + - "290" command: - - "273" + - "289" env: - - name: "281" - value: "282" + - name: "297" + value: "298" valueFrom: configMapKeyRef: - key: "288" - name: "287" - optional: false + key: "304" + name: "303" + optional: true fieldRef: - apiVersion: "283" - fieldPath: "284" + apiVersion: "299" + fieldPath: "300" resourceFieldRef: - containerName: "285" - divisor: "355" - resource: "286" + containerName: "301" + divisor: "3" + resource: "302" secretKeyRef: - key: "290" - name: "289" + key: "306" + name: "305" optional: true envFrom: - configMapRef: - name: "279" + name: "295" optional: true - prefix: "278" + prefix: "294" secretRef: - name: "280" + name: "296" optional: false - image: "272" - imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + image: "288" lifecycle: postStart: exec: command: - - "312" + - "335" httpGet: - host: "315" + host: "338" httpHeaders: - - name: "316" - value: "317" - path: "313" - port: "314" - scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC + - name: "339" + value: "340" + path: "336" + port: "337" + scheme: C"6x$1s tcpSocket: - host: "319" - port: "318" + host: "342" + port: "341" preStop: exec: command: - - "320" + - "343" httpGet: - host: "323" + host: "345" httpHeaders: - - name: "324" - value: "325" - path: "321" - port: "322" - scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² + - name: "346" + value: "347" + path: "344" + port: -518160270 + scheme: ɔ幩še tcpSocket: - host: "326" - port: -1187301925 + host: "348" + port: 1956567721 livenessProbe: exec: command: - - "297" - failureThreshold: 2030115750 + - "313" + failureThreshold: 472742933 httpGet: - host: "300" + host: "316" httpHeaders: - - name: "301" - value: "302" - path: "298" - port: "299" - scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 - initialDelaySeconds: 2066735093 - periodSeconds: -940334911 - successThreshold: -341287812 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 冓鍓贯 + initialDelaySeconds: 1290950685 + periodSeconds: 1058960779 + successThreshold: -2133441986 tcpSocket: - host: "304" - port: "303" - timeoutSeconds: -190183379 - name: "271" + host: "320" + port: "319" + timeoutSeconds: 12533543 + name: "287" ports: - - containerPort: -379385405 - hostIP: "277" - hostPort: 2058122084 - name: "276" - protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + - containerPort: -1296830577 + hostIP: "293" + hostPort: 1313273370 + name: "292" readinessProbe: exec: command: - - "305" - failureThreshold: -385597677 + - "321" + failureThreshold: 620822482 httpGet: - host: "308" + host: "323" httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - initialDelaySeconds: -1971421078 - periodSeconds: -1730959016 - successThreshold: 1272940694 + - name: "324" + value: "325" + path: "322" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "311" - port: 458427807 - timeoutSeconds: 1905181464 + host: "327" + port: "326" + timeoutSeconds: 386804041 resources: limits: - '|E剒蔞|表徶đ寳议Ƭƶ氩': "337" + 淳4揻-$ɽ丟×x锏ɟ: "178" requests: - "": "124" + Ö闊 鰔澝qV: "752" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - SvEȤƏ埮p + - '|ʐşƧ諔迮ƙIJ嘢' drop: - - '{WOŭW灬pȭCV擭銆jʒǚ鍰' + - ʗN privileged: false - procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ - readOnlyRootFilesystem: false - runAsGroup: 741362943076737213 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: 6726836758549163621 runAsNonRoot: false - runAsUser: 6726836758549163621 + runAsUser: -6048969174364431391 seLinuxOptions: - level: "331" - role: "329" - type: "330" - user: "328" + level: "353" + role: "351" + type: "352" + user: "350" windowsOptions: - gmsaCredentialSpec: "333" - gmsaCredentialSpecName: "332" - runAsUserName: "334" + gmsaCredentialSpec: "355" + gmsaCredentialSpecName: "354" + runAsUserName: "356" + startupProbe: + exec: + command: + - "328" + failureThreshold: -560238386 + httpGet: + host: "331" + httpHeaders: + - name: "332" + value: "333" + path: "329" + port: "330" + scheme: 鍏H鯂² + initialDelaySeconds: -402384013 + periodSeconds: -617381112 + successThreshold: 1851229369 + tcpSocket: + host: "334" + port: -1187301925 + timeoutSeconds: -181601395 stdin: true stdinOnce: true - targetContainerName: "335" - terminationMessagePath: "327" - terminationMessagePolicy: Őnj汰8ŕ + targetContainerName: "357" + terminationMessagePath: "349" + terminationMessagePolicy: ȤƏ埮pɵ tty: true volumeDevices: - - devicePath: "296" - name: "295" + - devicePath: "312" + name: "311" volumeMounts: - - mountPath: "292" - mountPropagation: 簳°Ļǟi&皥贸 - name: "291" - subPath: "293" - subPathExpr: "294" - workingDir: "275" + - mountPath: "308" + mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î + name: "307" + readOnly: true + subPath: "309" + subPathExpr: "310" + workingDir: "291" hostAliases: - hostnames: - - "397" - ip: "396" - hostPID: true - hostname: "351" + - "419" + ip: "418" + hostNetwork: true + hostname: "373" imagePullSecrets: - - name: "350" + - name: "372" initContainers: - args: - "150" @@ -507,37 +545,38 @@ spec: name: "156" optional: false image: "148" - imagePullPolicy: Ŵ廷s{Ⱦdz@ + imagePullPolicy: ŤǢʭ嵔棂p儼Ƿ裚瓶 lifecycle: postStart: exec: command: - - "188" + - "196" httpGet: - host: "191" + host: "199" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" + - name: "200" + value: "201" + path: "197" + port: "198" + scheme: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C' tcpSocket: - host: "194" - port: 559781916 + host: "202" + port: 2126876305 preStop: exec: command: - - "195" + - "203" httpGet: - host: "197" + host: "206" httpHeaders: - - name: "198" - value: "199" - path: "196" - port: 1150375229 - scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: Ŵ廷s{Ⱦdz@ tcpSocket: - host: "200" - port: -1696471293 + host: "209" + port: 406308963 livenessProbe: exec: command: @@ -593,28 +632,49 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - ʋŀ樺ȃv渟7¤7d + - +j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn drop: - - ƯĖ漘Z剚敍0)鈼¬麄p呝T + - 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 privileged: true - procMount: 瓧嫭塓烀罁胾^拜 + procMount: fǣ萭旿@ readOnlyRootFilesystem: true - runAsGroup: 825262458636305509 + runAsGroup: 6506922239346928579 runAsNonRoot: true - runAsUser: 4181787587415673530 + runAsUser: 1563703589270296759 seLinuxOptions: - level: "205" - role: "203" - type: "204" - user: "202" + level: "214" + role: "212" + type: "213" + user: "211" windowsOptions: - gmsaCredentialSpec: "207" - gmsaCredentialSpecName: "206" - runAsUserName: "208" + gmsaCredentialSpec: "216" + gmsaCredentialSpecName: "215" + runAsUserName: "217" + startupProbe: + exec: + command: + - "188" + failureThreshold: 905846572 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: k_瀹鞎sn芞QÄȻ + initialDelaySeconds: 364013971 + periodSeconds: -1790124395 + successThreshold: 1094670193 + tcpSocket: + host: "195" + port: "194" + timeoutSeconds: 1596422492 stdin: true stdinOnce: true - terminationMessagePath: "201" - terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + terminationMessagePath: "210" + terminationMessagePolicy: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -626,61 +686,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "340" + nodeName: "362" nodeSelector: - "336": "337" + "358": "359" overhead: - 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" - preemptionPolicy: eáNRNJ丧鴻Ŀ - priority: 1690570439 - priorityClassName: "398" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "420" readinessGates: - - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 - restartPolicy: åe躒訙 - runtimeClassName: "403" - schedulerName: "393" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɭɪǹ0衷, + runtimeClassName: "425" + schedulerName: "415" securityContext: - fsGroup: -7117039988160665426 - runAsGroup: 2548453080315983269 + fsGroup: 2585323675983182372 + runAsGroup: 6386250802140824739 runAsNonRoot: false - runAsUser: 7747616967629081728 + runAsUser: -5315960194881172085 seLinuxOptions: - level: "344" - role: "342" - type: "343" - user: "341" + level: "366" + role: "364" + type: "365" + user: "363" supplementalGroups: - - -1193643752264108019 + - -4480129203693517072 sysctls: - - name: "348" - value: "349" + - name: "370" + value: "371" windowsOptions: - gmsaCredentialSpec: "346" - gmsaCredentialSpecName: "345" - runAsUserName: "347" - serviceAccount: "339" - serviceAccountName: "338" - shareProcessNamespace: false - subdomain: "352" - terminationGracePeriodSeconds: 6942343986058351509 + gmsaCredentialSpec: "368" + gmsaCredentialSpecName: "367" + runAsUserName: "369" + serviceAccount: "361" + serviceAccountName: "360" + shareProcessNamespace: true + subdomain: "374" + terminationGracePeriodSeconds: -3039830979334099524 tolerations: - - effect: 料ȭzV镜籬ƽ - key: "394" - operator: ƹ| - tolerationSeconds: 935587338391120947 - value: "395" + - effect: ŽɣB矗E¸乾 + key: "416" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "417" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: qW + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W operator: In values: - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X - maxSkew: -137402083 - topologyKey: "404" - whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "426" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "47" @@ -887,8 +947,8 @@ status: collisionCount: -449319810 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "412" - reason: "411" + message: "434" + reason: "433" status: '''ƈoIǢ龞瞯å' type: "" currentNumberScheduled: -1979737528 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 8e3d7cc73f0..44a446238f0 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1295,31 +1374,32 @@ } }, "strategy": { + "type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5", "rollingUpdate": { } }, - "minReadySeconds": 997447044, - "revisionHistoryLimit": 989524452, - "progressDeadlineSeconds": 1791868025 + "minReadySeconds": 212061711, + "revisionHistoryLimit": -1092090658, + "progressDeadlineSeconds": -1707056814 }, "status": { - "observedGeneration": -1249679108465412698, - "replicas": -1152625369, - "updatedReplicas": -1832836223, - "readyReplicas": -1292943463, - "availableReplicas": -1734448297, - "unavailableReplicas": -1757575936, + "observedGeneration": 2992108727478230062, + "replicas": 407742062, + "updatedReplicas": 2115789304, + "readyReplicas": 902022378, + "availableReplicas": 1660081568, + "unavailableReplicas": 904244563, "conditions": [ { - "type": "ȷ滣ƆƾȊ(XEfê澙凋B/ü", - "status": "ZÕW肤 ", - "lastUpdateTime": "2674-04-10T12:16:26Z", - "lastTransitionTime": "2674-07-14T13:22:49Z", - "reason": "406", - "message": "407" + "type": "洅啶", + "status": "Ƅ抄3昞财Î嘝zʄ", + "lastUpdateTime": "2524-02-08T04:27:05Z", + "lastTransitionTime": "2146-08-16T07:05:27Z", + "reason": "426", + "message": "427" } ], - "collisionCount": 1658632493 + "collisionCount": -1977467928 } } \ 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 8670adf6edd..d9ea50c5224 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 7e13169c1ee..7b6eddb956e 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: 997447044 - progressDeadlineSeconds: 1791868025 + minReadySeconds: 212061711 + progressDeadlineSeconds: -1707056814 replicas: 896585016 - revisionHistoryLimit: 989524452 + revisionHistoryLimit: -1092090658 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 @@ -42,6 +42,7 @@ spec: 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 template: metadata: annotations: @@ -73,412 +74,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -512,37 +547,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -599,28 +635,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -632,60 +687,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -886,17 +942,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -1734448297 - collisionCount: 1658632493 + availableReplicas: 1660081568 + collisionCount: -1977467928 conditions: - - lastTransitionTime: "2674-07-14T13:22:49Z" - lastUpdateTime: "2674-04-10T12:16:26Z" - message: "407" - reason: "406" - status: ZÕW肤  - type: ȷ滣ƆƾȊ(XEfê澙凋B/ü - observedGeneration: -1249679108465412698 - readyReplicas: -1292943463 - replicas: -1152625369 - unavailableReplicas: -1757575936 - updatedReplicas: -1832836223 + - lastTransitionTime: "2146-08-16T07:05:27Z" + lastUpdateTime: "2524-02-08T04:27:05Z" + message: "427" + reason: "426" + status: Ƅ抄3昞财Î嘝zʄ + type: 洅啶 + observedGeneration: 2992108727478230062 + readyReplicas: 902022378 + replicas: 407742062 + unavailableReplicas: 904244563 + updatedReplicas: 2115789304 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 8dda6190a83..560a566a798 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 @@ -511,364 +511,418 @@ "successThreshold": 290736426, "failureThreshold": -57352147 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "閝ȝ", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": "194", + "host": "195" + }, + "initialDelaySeconds": -2142865739, + "timeoutSeconds": -1179067190, + "periodSeconds": 1434408532, + "successThreshold": -566408554, + "failureThreshold": 1133369651 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "196" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", - "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", + "path": "197", + "port": -1327537699, + "host": "198", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "199", + "value": "200" } ] }, "tcpSocket": { - "port": -337353552, - "host": "194" + "port": "201", + "host": "202" } }, "preStop": { "exec": { "command": [ - "195" + "203" ] }, "httpGet": { - "path": "196", - "port": -374922344, - "host": "197", - "scheme": "緄Ú|dk_瀹鞎sn芞", + "path": "204", + "port": "205", + "host": "206", + "scheme": "ĉş蝿ɖȃ賲鐅臬", "httpHeaders": [ { - "name": "198", - "value": "199" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": 912103005, - "host": "200" + "port": "209", + "host": "210" } } }, - "terminationMessagePath": "201", - "terminationMessagePolicy": "Ȋ+?ƭ峧Y栲茇竛吲蚛", - "imagePullPolicy": "\u003cé瞾", + "terminationMessagePath": "211", + "imagePullPolicy": "k_瀹鞎sn芞QÄȻ", "securityContext": { "capabilities": { "add": [ - "Ŭ" + "?" ], "drop": [ - "ǙÄr蛏豈" + "峧Y栲茇竛吲蚛隖" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "202", - "role": "203", - "type": "204", - "level": "205" + "user": "212", + "role": "213", + "type": "214", + "level": "215" }, "windowsOptions": { - "gmsaCredentialSpecName": "206", - "gmsaCredentialSpec": "207", - "runAsUserName": "208" + "gmsaCredentialSpecName": "216", + "gmsaCredentialSpec": "217", + "runAsUserName": "218" }, - "runAsUser": -3447077152667955293, - "runAsGroup": -6457174729896610090, + "runAsUser": 7312518131318481396, + "runAsGroup": -7286288718856494813, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "ȉ彂" + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ʙ嫙\u0026" }, + "stdin": true, "stdinOnce": true } ], "containers": [ { - "name": "209", - "image": "210", + "name": "219", + "image": "220", "command": [ - "211" + "221" ], "args": [ - "212" + "222" ], - "workingDir": "213", + "workingDir": "223", "ports": [ { - "name": "214", - "hostPort": 1065976533, - "containerPort": -820119398, - "protocol": "@ùƸʋŀ樺ȃv", - "hostIP": "215" + "name": "224", + "hostPort": 1944205014, + "containerPort": -2079582559, + "protocol": "K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ", + "hostIP": "225" } ], "envFrom": [ { - "prefix": "216", + "prefix": "226", "configMapRef": { - "name": "217", + "name": "227", "optional": true }, "secretRef": { - "name": "218", - "optional": true + "name": "228", + "optional": false } } ], "env": [ { - "name": "219", - "value": "220", + "name": "229", + "value": "230", "valueFrom": { "fieldRef": { - "apiVersion": "221", - "fieldPath": "222" + "apiVersion": "231", + "fieldPath": "232" }, "resourceFieldRef": { - "containerName": "223", - "resource": "224", - "divisor": "508" + "containerName": "233", + "resource": "234", + "divisor": "901" }, "configMapKeyRef": { - "name": "225", - "key": "226", + "name": "235", + "key": "236", "optional": false }, "secretKeyRef": { - "name": "227", - "key": "228", - "optional": true + "name": "237", + "key": "238", + "optional": false } } } ], "resources": { "limits": { - "剚敍0)鈼¬麄p呝TG": "305" + "羭,铻OŤǢʭ嵔": "340" }, "requests": { - "瓶": "806" + "TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜": "755" } }, "volumeMounts": [ { - "name": "229", - "readOnly": true, - "mountPath": "230", - "subPath": "231", - "mountPropagation": "", - "subPathExpr": "232" + "name": "239", + "mountPath": "240", + "subPath": "241", + "mountPropagation": "ʒ刽ʼn掏1ſ盷褎weLJèux榜", + "subPathExpr": "242" } ], "volumeDevices": [ { - "name": "233", - "devicePath": "234" + "name": "243", + "devicePath": "244" } ], "livenessProbe": { "exec": { "command": [ - "235" + "245" ] }, "httpGet": { - "path": "236", - "port": "237", - "host": "238", - "scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", + "path": "246", + "port": "247", + "host": "248", + "scheme": "賃ɪ鐊瀑Ź9ǕLLȊ", "httpHeaders": [ { - "name": "239", - "value": "240" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": 1096174794, - "host": "241" + "port": -26910286, + "host": "251" }, - "initialDelaySeconds": 1591029717, - "timeoutSeconds": 1255169591, - "periodSeconds": 622473257, - "successThreshold": -966649167, - "failureThreshold": 817152661 + "initialDelaySeconds": 1214895765, + "timeoutSeconds": 1181519543, + "periodSeconds": 282592353, + "successThreshold": 377225334, + "failureThreshold": -1191434089 }, "readinessProbe": { "exec": { "command": [ - "242" + "252" ] }, "httpGet": { - "path": "243", - "port": "244", - "host": "245", - "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ", + "path": "253", + "port": "254", + "host": "255", "httpHeaders": [ { - "name": "246", - "value": "247" + "name": "256", + "value": "257" } ] }, "tcpSocket": { - "port": "248", - "host": "249" + "port": "258", + "host": "259" }, - "initialDelaySeconds": -394397948, - "timeoutSeconds": 2040455355, - "periodSeconds": 1505972335, - "successThreshold": -26910286, - "failureThreshold": 1214895765 + "initialDelaySeconds": -839281354, + "timeoutSeconds": 2035347577, + "periodSeconds": -819723498, + "successThreshold": -150133456, + "failureThreshold": 1507815593 + }, + "startupProbe": { + "exec": { + "command": [ + "260" + ] + }, + "httpGet": { + "path": "261", + "port": 1684643131, + "host": "262", + "scheme": "飣奺Ȋ礶惇¸", + "httpHeaders": [ + { + "name": "263", + "value": "264" + } + ] + }, + "tcpSocket": { + "port": "265", + "host": "266" + }, + "initialDelaySeconds": -161753937, + "timeoutSeconds": -1578746609, + "periodSeconds": 1428207963, + "successThreshold": 790462391, + "failureThreshold": -822090785 }, "lifecycle": { "postStart": { "exec": { "command": [ - "250" + "267" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "path": "268", + "port": -421846800, + "host": "269", + "scheme": "zvt莭琽§", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "270", + "value": "271" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -763687725, + "host": "272" } }, "preStop": { "exec": { "command": [ - "258" + "273" ] }, "httpGet": { - "path": "259", - "port": -1675041613, - "host": "260", - "scheme": "揆ɘȌ脾嚏吐", + "path": "274", + "port": -1452676801, + "host": "275", + "scheme": "ȿ0矀Kʝ", "httpHeaders": [ { - "name": "261", - "value": "262" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": -194343002, - "host": "263" + "port": "278", + "host": "279" } } }, - "terminationMessagePath": "264", - "terminationMessagePolicy": "Ȥ藠3.", - "imagePullPolicy": "t莭琽§ć\\ ïì", + "terminationMessagePath": "280", + "terminationMessagePolicy": "\\p[", + "imagePullPolicy": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", "securityContext": { "capabilities": { "add": [ - "Ƙ枛牐ɺ皚|懥ƖN" + "À*f\u003c鴒翁杙Ŧ癃8" ], "drop": [ - "擓ƖHVe熼'FD剂讼ɓȌʟni酛" + "ɱJȉ罴" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "265", - "role": "266", - "type": "267", - "level": "268" + "user": "281", + "role": "282", + "type": "283", + "level": "284" }, "windowsOptions": { - "gmsaCredentialSpecName": "269", - "gmsaCredentialSpec": "270", - "runAsUserName": "271" + "gmsaCredentialSpecName": "285", + "gmsaCredentialSpec": "286", + "runAsUserName": "287" }, - "runAsUser": -2142888785755371163, - "runAsGroup": -2879304435996142911, + "runAsUser": -2706913289057230267, + "runAsGroup": -3689959065086680033, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?" + "allowPrivilegeEscalation": true, + "procMount": "棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅" }, - "stdin": true + "stdinOnce": true } ], "ephemeralContainers": [ { - "name": "272", - "image": "273", + "name": "288", + "image": "289", "command": [ - "274" + "290" ], "args": [ - "275" + "291" ], - "workingDir": "276", + "workingDir": "292", "ports": [ { - "name": "277", - "hostPort": -1740959124, - "containerPort": 158280212, - "hostIP": "278" + "name": "293", + "hostPort": 1853396726, + "containerPort": 1330271338, + "protocol": "逴", + "hostIP": "294" } ], "envFrom": [ { - "prefix": "279", + "prefix": "295", "configMapRef": { - "name": "280", + "name": "296", "optional": true }, "secretRef": { - "name": "281", + "name": "297", "optional": true } } ], "env": [ { - "name": "282", - "value": "283", + "name": "298", + "value": "299", "valueFrom": { "fieldRef": { - "apiVersion": "284", - "fieldPath": "285" + "apiVersion": "300", + "fieldPath": "301" }, "resourceFieldRef": { - "containerName": "286", - "resource": "287", - "divisor": "985" + "containerName": "302", + "resource": "303", + "divisor": "709" }, "configMapKeyRef": { - "name": "288", - "key": "289", + "name": "304", + "key": "305", "optional": false }, "secretKeyRef": { - "name": "290", - "key": "291", + "name": "306", + "key": "307", "optional": false } } @@ -876,215 +930,240 @@ ], "resources": { "limits": { - "ɖ緕ȚÍ勅跦Opwǩ": "957" + "颐o": "230" }, "requests": { - "Ɔȓ蹣ɐǛv+8Ƥ熪": "951" + "[+扴ȨŮ+朷Ǝ膯ljV": "728" } }, "volumeMounts": [ { - "name": "292", - "mountPath": "293", - "subPath": "294", - "mountPropagation": "啛更", - "subPathExpr": "295" + "name": "308", + "mountPath": "309", + "subPath": "310", + "mountPropagation": "ŕ-Ɂ圯W:ĸ輦唊#v铿", + "subPathExpr": "311" } ], "volumeDevices": [ { - "name": "296", - "devicePath": "297" + "name": "312", + "devicePath": "313" } ], "livenessProbe": { "exec": { "command": [ - "298" + "314" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "Ů+朷Ǝ膯ljVX1虊", + "path": "315", + "port": "316", + "host": "317", + "scheme": "屡ʁ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "318", + "value": "319" } ] }, "tcpSocket": { - "port": -979584143, - "host": "304" + "port": -1554559634, + "host": "320" }, - "initialDelaySeconds": -1748648882, - "timeoutSeconds": -239843014, - "periodSeconds": 1381579966, - "successThreshold": -1418092595, - "failureThreshold": -1538905728 + "initialDelaySeconds": 1718241831, + "timeoutSeconds": 550615941, + "periodSeconds": 1180971695, + "successThreshold": -1971944908, + "failureThreshold": 1742259603 }, "readinessProbe": { "exec": { "command": [ - "305" + "321" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "铿ʩȂ4ē鐭#嬀ơŸ8T", + "path": "322", + "port": -1620315711, + "host": "323", + "scheme": "ɐ扵", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": "311", - "host": "312" + "port": "326", + "host": "327" }, - "initialDelaySeconds": 37514563, - "timeoutSeconds": -1871050070, - "periodSeconds": 474715842, - "successThreshold": -1620315711, - "failureThreshold": 522560228 + "initialDelaySeconds": -1358663652, + "timeoutSeconds": 1543146222, + "periodSeconds": -527306221, + "successThreshold": 2098694289, + "failureThreshold": 1150925735 + }, + "startupProbe": { + "exec": { + "command": [ + "328" + ] + }, + "httpGet": { + "path": "329", + "port": "330", + "host": "331", + "scheme": "榝$î.Ȏ蝪ʜ5遰", + "httpHeaders": [ + { + "name": "332", + "value": "333" + } + ] + }, + "tcpSocket": { + "port": -1438286448, + "host": "334" + }, + "initialDelaySeconds": 834105836, + "timeoutSeconds": -1462219068, + "periodSeconds": -370386363, + "successThreshold": 1714588921, + "failureThreshold": -1246371817 }, "lifecycle": { "postStart": { "exec": { "command": [ - "313" + "335" ] }, "httpGet": { - "path": "314", - "port": "315", - "host": "316", - "scheme": "绤fʀļ腩墺Ò媁荭g", + "path": "336", + "port": "337", + "host": "338", + "scheme": "跩aŕ翑", "httpHeaders": [ { - "name": "317", - "value": "318" + "name": "339", + "value": "340" } ] }, "tcpSocket": { - "port": "319", - "host": "320" + "port": "341", + "host": "342" } }, "preStop": { "exec": { "command": [ - "321" + "343" ] }, "httpGet": { - "path": "322", - "port": -2133054549, - "host": "323", - "scheme": "遰=E", + "path": "344", + "port": 1017803158, + "host": "345", + "scheme": "碔", "httpHeaders": [ { - "name": "324", - "value": "325" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": "326", - "host": "327" + "port": "348", + "host": "349" } } }, - "terminationMessagePath": "328", - "terminationMessagePolicy": "朦 wƯ貾坢'跩", - "imagePullPolicy": "簳°Ļǟi\u0026皥贸", + "terminationMessagePath": "350", + "terminationMessagePolicy": "Kƙ順\\E¦队偯J僳徥淳4揻-$ɽ丟", + "imagePullPolicy": "拉Œɥ颶妧Ö闊 鰔澝qV訆", "securityContext": { "capabilities": { "add": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ŧL²sNƗ¸gĩ餠籲磣Óƿ" ], "drop": [ - "丟×x锏ɟ4Ǒ" + "\"冓鍓贯澔 ƺ蛜6" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "329", - "role": "330", - "type": "331", - "level": "332" + "user": "351", + "role": "352", + "type": "353", + "level": "354" }, "windowsOptions": { - "gmsaCredentialSpecName": "333", - "gmsaCredentialSpec": "334", - "runAsUserName": "335" + "gmsaCredentialSpecName": "355", + "gmsaCredentialSpec": "356", + "runAsUserName": "357" }, - "runAsUser": 7933506142593743951, - "runAsGroup": -8521633679555431923, + "runAsUser": 4353696140684277635, + "runAsGroup": 6057650398488995896, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "/»頸+SÄ蚃ɣľ)酊龨Î" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "鰥Z龏´DÒȗ" }, - "stdin": true, - "stdinOnce": true, "tty": true, - "targetContainerName": "336" + "targetContainerName": "358" } ], - "restartPolicy": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", - "terminationGracePeriodSeconds": 5620818514944490121, - "activeDeadlineSeconds": -499179336506637450, - "dnsPolicy": "ɐ鰥", + "restartPolicy": "ɘɢ鬍熖B芭花ª瘡", + "terminationGracePeriodSeconds": 2666412258966278206, + "activeDeadlineSeconds": -8715915045560617563, + "dnsPolicy": "丆", "nodeSelector": { - "337": "338" + "359": "360" }, - "serviceAccountName": "339", - "serviceAccount": "340", - "automountServiceAccountToken": true, - "nodeName": "341", - "hostNetwork": true, + "serviceAccountName": "361", + "serviceAccount": "362", + "automountServiceAccountToken": false, + "nodeName": "363", "hostPID": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "342", - "role": "343", - "type": "344", - "level": "345" + "user": "364", + "role": "365", + "type": "366", + "level": "367" }, "windowsOptions": { - "gmsaCredentialSpecName": "346", - "gmsaCredentialSpec": "347", - "runAsUserName": "348" + "gmsaCredentialSpecName": "368", + "gmsaCredentialSpec": "369", + "runAsUserName": "370" }, - "runAsUser": 3634773701753283428, - "runAsGroup": -3042614092601658792, + "runAsUser": 2179199799235189619, + "runAsGroup": -779972051078659613, "runAsNonRoot": false, "supplementalGroups": [ - -2125560879532395341 + -7127205672279904050 ], - "fsGroup": -1778638259613624198, + "fsGroup": 7124276984274024394, "sysctls": [ { - "name": "349", - "value": "350" + "name": "371", + "value": "372" } ] }, "imagePullSecrets": [ { - "name": "351" + "name": "373" } ], - "hostname": "352", - "subdomain": "353", + "hostname": "374", + "subdomain": "375", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1092,19 +1171,19 @@ { "matchExpressions": [ { - "key": "354", - "operator": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", + "key": "376", + "operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "values": [ - "355" + "377" ] } ], "matchFields": [ { - "key": "356", - "operator": "C\"6x$1s", + "key": "378", + "operator": "埮pɵ{WOŭW灬p", "values": [ - "357" + "379" ] } ] @@ -1113,23 +1192,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1292310438, + "weight": 199049889, "preference": { "matchExpressions": [ { - "key": "358", - "operator": "鋄5弢ȹ均", + "key": "380", + "operator": "擭銆jʒǚ鍰\\縑", "values": [ - "359" + "381" ] } ], "matchFields": [ { - "key": "360", - "operator": "SvEȤƏ埮p", + "key": "382", + "operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "values": [ - "361" + "383" ] } ] @@ -1142,43 +1221,43 @@ { "labelSelector": { "matchLabels": { - "o.6GA2C": "s.Nj-s" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "A3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-p", - "operator": "DoesNotExist" + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", + "operator": "NotIn", + "values": [ + "z" + ] } ] }, "namespaces": [ - "368" + "390" ], - "topologyKey": "369" + "topologyKey": "391" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -531787516, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1/dCv3j._.-_pP__up.2L_s-o7": "k-5___-Qq..csh-3--Z1Tvw3F" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "0--z-o-3bz6-2/6Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.B", - "operator": "In", - "values": [ - "U1_-__.71-_-9_._X-D---k..1Q7.l" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "376" + "398" ], - "topologyKey": "377" + "topologyKey": "399" } } ] @@ -1188,106 +1267,109 @@ { "labelSelector": { "matchLabels": { - "4.B.__6m": "J1-1.9_.-.Ms7_tP" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v", - "operator": "NotIn", - "values": [ - "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" - ] + "key": "QZ9p_6.C.e", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "384" + "406" ], - "topologyKey": "385" + "topologyKey": "407" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1139477828, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "0l_.23--_6l.-5_BZk5v3U", - "operator": "DoesNotExist" + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", + "operator": "NotIn", + "values": [ + "txb__-ex-_1_-ODgC_1-_V" + ] } ] }, "namespaces": [ - "392" + "414" ], - "topologyKey": "393" + "topologyKey": "415" } } ] } }, - "schedulerName": "394", + "schedulerName": "416", "tolerations": [ { - "key": "395", - "operator": "[L", - "value": "396", - "effect": "Ġ滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼ", - "tolerationSeconds": 4456040724914385859 + "key": "417", + "operator": "堺ʣ", + "value": "418", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "397", + "ip": "419", "hostnames": [ - "398" + "420" ] } ], - "priorityClassName": "399", - "priority": -1576968453, + "priorityClassName": "421", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "400" + "422" ], "searches": [ - "401" + "423" ], "options": [ { - "name": "402", - "value": "403" + "name": "424", + "value": "425" } ] }, "readinessGates": [ { - "conditionType": "v" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "404", + "runtimeClassName": "426", "enableServiceLinks": false, - "preemptionPolicy": "忖p様", + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "U凮": "684" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -782776982, - "topologyKey": "405", - "whenUnsatisfiable": "鈀", + "maxSkew": -150478704, + "topologyKey": "427", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A": "BM.6-.Y_72-_--p7" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "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" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1297,18 +1379,18 @@ } }, "status": { - "replicas": -106050665, - "fullyLabeledReplicas": -929473748, - "readyReplicas": -1450995995, - "availableReplicas": 740158871, - "observedGeneration": -5350227579821888386, + "replicas": -330302940, + "fullyLabeledReplicas": 138911331, + "readyReplicas": 1613009760, + "availableReplicas": -1469601144, + "observedGeneration": 6703635170896137755, "conditions": [ { - "type": "", - "status": "'ƈoIǢ龞瞯å", + "type": "ɡj瓇ɽ丿YƄZZ塖bʘ", + "status": "ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "412", - "message": "413" + "reason": "434", + "message": "435" } ] } 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 45ab115c85d..dbe2ed4c530 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 dfc25d1d706..29891ccf044 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,411 +71,447 @@ spec: selfLink: "28" uid: ʬ spec: - activeDeadlineSeconds: -499179336506637450 + activeDeadlineSeconds: -8715915045560617563 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "358" - operator: 鋄5弢ȹ均 + - key: "380" + operator: 擭銆jʒǚ鍰\縑 values: - - "359" + - "381" matchFields: - - key: "360" - operator: SvEȤƏ埮p + - key: "382" + operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ values: - - "361" - weight: -1292310438 + - "383" + weight: 199049889 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "354" - operator: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 + - key: "376" + operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 values: - - "355" + - "377" matchFields: - - key: "356" - operator: C"6x$1s + - key: "378" + operator: 埮pɵ{WOŭW灬p values: - - "357" + - "379" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0--z-o-3bz6-2/6Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.B - operator: In - values: - - U1_-__.71-_-9_._X-D---k..1Q7.l + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - 1/dCv3j._.-_pP__up.2L_s-o7: k-5___-Qq..csh-3--Z1Tvw3F + 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP namespaces: - - "376" - topologyKey: "377" - weight: -531787516 + - "398" + topologyKey: "399" + weight: -217760519 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: A3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-p - operator: DoesNotExist + - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 + operator: NotIn + values: + - z matchLabels: - o.6GA2C: s.Nj-s + 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r namespaces: - - "368" - topologyKey: "369" + - "390" + topologyKey: "391" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0l_.23--_6l.-5_BZk5v3U - operator: DoesNotExist + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D + operator: NotIn + values: + - txb__-ex-_1_-ODgC_1-_V matchLabels: - t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6 + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "392" - topologyKey: "393" - weight: -1139477828 + - "414" + topologyKey: "415" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v - operator: NotIn - values: - - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc + - key: QZ9p_6.C.e + operator: DoesNotExist matchLabels: - 4.B.__6m: J1-1.9_.-.Ms7_tP + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "384" - topologyKey: "385" - automountServiceAccountToken: true + - "406" + topologyKey: "407" + automountServiceAccountToken: false containers: - args: - - "212" + - "222" command: - - "211" + - "221" env: - - name: "219" - value: "220" + - name: "229" + value: "230" valueFrom: configMapKeyRef: - key: "226" - name: "225" + key: "236" + name: "235" optional: false fieldRef: - apiVersion: "221" - fieldPath: "222" + apiVersion: "231" + fieldPath: "232" resourceFieldRef: - containerName: "223" - divisor: "508" - resource: "224" + containerName: "233" + divisor: "901" + resource: "234" secretKeyRef: - key: "228" - name: "227" - optional: true + key: "238" + name: "237" + optional: false envFrom: - configMapRef: - name: "217" + name: "227" optional: true - prefix: "216" + prefix: "226" secretRef: - name: "218" - optional: true - image: "210" - imagePullPolicy: t莭琽§ć\ ïì + name: "228" + optional: false + image: "220" + imagePullPolicy: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 lifecycle: postStart: exec: command: - - "250" + - "267" httpGet: - host: "253" + host: "269" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 + - name: "270" + value: "271" + path: "268" + port: -421846800 + scheme: zvt莭琽§ tcpSocket: - host: "257" - port: "256" + host: "272" + port: -763687725 preStop: exec: command: - - "258" + - "273" httpGet: - host: "260" + host: "275" httpHeaders: - - name: "261" - value: "262" - path: "259" - port: -1675041613 - scheme: 揆ɘȌ脾嚏吐 + - name: "276" + value: "277" + path: "274" + port: -1452676801 + scheme: ȿ0矀Kʝ tcpSocket: - host: "263" - port: -194343002 + host: "279" + port: "278" livenessProbe: exec: command: - - "235" - failureThreshold: 817152661 + - "245" + failureThreshold: -1191434089 httpGet: - host: "238" + host: "248" httpHeaders: - - name: "239" - value: "240" - path: "236" - port: "237" - scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽 - initialDelaySeconds: 1591029717 - periodSeconds: 622473257 - successThreshold: -966649167 + - name: "249" + value: "250" + path: "246" + port: "247" + scheme: 賃ɪ鐊瀑Ź9ǕLLȊ + initialDelaySeconds: 1214895765 + periodSeconds: 282592353 + successThreshold: 377225334 tcpSocket: - host: "241" - port: 1096174794 - timeoutSeconds: 1255169591 - name: "209" + host: "251" + port: -26910286 + timeoutSeconds: 1181519543 + name: "219" ports: - - containerPort: -820119398 - hostIP: "215" - hostPort: 1065976533 - name: "214" - protocol: '@ùƸʋŀ樺ȃv' + - containerPort: -2079582559 + hostIP: "225" + hostPort: 1944205014 + name: "224" + protocol: K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ readinessProbe: exec: command: - - "242" - failureThreshold: 1214895765 + - "252" + failureThreshold: 1507815593 httpGet: - host: "245" + host: "255" httpHeaders: - - name: "246" - value: "247" - path: "243" - port: "244" - scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ - initialDelaySeconds: -394397948 - periodSeconds: 1505972335 - successThreshold: -26910286 + - name: "256" + value: "257" + path: "253" + port: "254" + initialDelaySeconds: -839281354 + periodSeconds: -819723498 + successThreshold: -150133456 tcpSocket: - host: "249" - port: "248" - timeoutSeconds: 2040455355 + host: "259" + port: "258" + timeoutSeconds: 2035347577 resources: limits: - 剚敍0)鈼¬麄p呝TG: "305" + 羭,铻OŤǢʭ嵔: "340" requests: - 瓶: "806" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - Ƙ枛牐ɺ皚|懥ƖN - drop: - - 擓ƖHVe熼'FD剂讼ɓȌʟni酛 - privileged: true - procMount: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? - readOnlyRootFilesystem: false - runAsGroup: -2879304435996142911 - runAsNonRoot: false - runAsUser: -2142888785755371163 - seLinuxOptions: - level: "268" - role: "266" - type: "267" - user: "265" - windowsOptions: - gmsaCredentialSpec: "270" - gmsaCredentialSpecName: "269" - runAsUserName: "271" - stdin: true - terminationMessagePath: "264" - terminationMessagePolicy: Ȥ藠3. - volumeDevices: - - devicePath: "234" - name: "233" - volumeMounts: - - mountPath: "230" - mountPropagation: "" - name: "229" - readOnly: true - subPath: "231" - subPathExpr: "232" - workingDir: "213" - dnsConfig: - nameservers: - - "400" - options: - - name: "402" - value: "403" - searches: - - "401" - dnsPolicy: ɐ鰥 - enableServiceLinks: false - ephemeralContainers: - - args: - - "275" - command: - - "274" - env: - - name: "282" - value: "283" - valueFrom: - configMapKeyRef: - key: "289" - name: "288" - optional: false - fieldRef: - apiVersion: "284" - fieldPath: "285" - resourceFieldRef: - containerName: "286" - divisor: "985" - resource: "287" - secretKeyRef: - key: "291" - name: "290" - optional: false - envFrom: - - configMapRef: - name: "280" - optional: true - prefix: "279" - secretRef: - name: "281" - optional: true - image: "273" - imagePullPolicy: 簳°Ļǟi&皥贸 - lifecycle: - postStart: - exec: - command: - - "313" - httpGet: - host: "316" - httpHeaders: - - name: "317" - value: "318" - path: "314" - port: "315" - scheme: 绤fʀļ腩墺Ò媁荭g - tcpSocket: - host: "320" - port: "319" - preStop: - exec: - command: - - "321" - httpGet: - host: "323" - httpHeaders: - - name: "324" - value: "325" - path: "322" - port: -2133054549 - scheme: 遰=E - tcpSocket: - host: "327" - port: "326" - livenessProbe: - exec: - command: - - "298" - failureThreshold: -1538905728 - httpGet: - host: "301" - httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: Ů+朷Ǝ膯ljVX1虊 - initialDelaySeconds: -1748648882 - periodSeconds: 1381579966 - successThreshold: -1418092595 - tcpSocket: - host: "304" - port: -979584143 - timeoutSeconds: -239843014 - name: "272" - ports: - - containerPort: 158280212 - hostIP: "278" - hostPort: -1740959124 - name: "277" - readinessProbe: - exec: - command: - - "305" - failureThreshold: 522560228 - httpGet: - host: "308" - httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: 铿ʩȂ4ē鐭#嬀ơŸ8T - initialDelaySeconds: 37514563 - periodSeconds: 474715842 - successThreshold: -1620315711 - tcpSocket: - host: "312" - port: "311" - timeoutSeconds: -1871050070 - resources: - limits: - ɖ緕ȚÍ勅跦Opwǩ: "957" - requests: - Ɔȓ蹣ɐǛv+8Ƥ熪: "951" + TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜: "755" securityContext: allowPrivilegeEscalation: true capabilities: add: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - À*f<鴒翁杙Ŧ癃8 drop: - - 丟×x锏ɟ4Ǒ - privileged: true - procMount: /»頸+SÄ蚃ɣľ)酊龨Î + - ɱJȉ罴 + privileged: false + procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅 readOnlyRootFilesystem: false - runAsGroup: -8521633679555431923 - runAsNonRoot: true - runAsUser: 7933506142593743951 + runAsGroup: -3689959065086680033 + runAsNonRoot: false + runAsUser: -2706913289057230267 seLinuxOptions: - level: "332" - role: "330" - type: "331" - user: "329" + level: "284" + role: "282" + type: "283" + user: "281" windowsOptions: - gmsaCredentialSpec: "334" - gmsaCredentialSpecName: "333" - runAsUserName: "335" - stdin: true + gmsaCredentialSpec: "286" + gmsaCredentialSpecName: "285" + runAsUserName: "287" + startupProbe: + exec: + command: + - "260" + failureThreshold: -822090785 + httpGet: + host: "262" + httpHeaders: + - name: "263" + value: "264" + path: "261" + port: 1684643131 + scheme: 飣奺Ȋ礶惇¸ + initialDelaySeconds: -161753937 + periodSeconds: 1428207963 + successThreshold: 790462391 + tcpSocket: + host: "266" + port: "265" + timeoutSeconds: -1578746609 stdinOnce: true - targetContainerName: "336" - terminationMessagePath: "328" - terminationMessagePolicy: 朦 wƯ貾坢'跩 + terminationMessagePath: "280" + terminationMessagePolicy: \p[ + volumeDevices: + - devicePath: "244" + name: "243" + volumeMounts: + - mountPath: "240" + mountPropagation: ʒ刽ʼn掏1ſ盷褎weLJèux榜 + name: "239" + subPath: "241" + subPathExpr: "242" + workingDir: "223" + dnsConfig: + nameservers: + - "422" + options: + - name: "424" + value: "425" + searches: + - "423" + dnsPolicy: 丆 + enableServiceLinks: false + ephemeralContainers: + - args: + - "291" + command: + - "290" + env: + - name: "298" + value: "299" + valueFrom: + configMapKeyRef: + key: "305" + name: "304" + optional: false + fieldRef: + apiVersion: "300" + fieldPath: "301" + resourceFieldRef: + containerName: "302" + divisor: "709" + resource: "303" + secretKeyRef: + key: "307" + name: "306" + optional: false + envFrom: + - configMapRef: + name: "296" + optional: true + prefix: "295" + secretRef: + name: "297" + optional: true + image: "289" + imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆 + lifecycle: + postStart: + exec: + command: + - "335" + httpGet: + host: "338" + httpHeaders: + - name: "339" + value: "340" + path: "336" + port: "337" + scheme: 跩aŕ翑 + tcpSocket: + host: "342" + port: "341" + preStop: + exec: + command: + - "343" + httpGet: + host: "345" + httpHeaders: + - name: "346" + value: "347" + path: "344" + port: 1017803158 + scheme: 碔 + tcpSocket: + host: "349" + port: "348" + livenessProbe: + exec: + command: + - "314" + failureThreshold: 1742259603 + httpGet: + host: "317" + httpHeaders: + - name: "318" + value: "319" + path: "315" + port: "316" + scheme: 屡ʁ + initialDelaySeconds: 1718241831 + periodSeconds: 1180971695 + successThreshold: -1971944908 + tcpSocket: + host: "320" + port: -1554559634 + timeoutSeconds: 550615941 + name: "288" + ports: + - containerPort: 1330271338 + hostIP: "294" + hostPort: 1853396726 + name: "293" + protocol: 逴 + readinessProbe: + exec: + command: + - "321" + failureThreshold: 1150925735 + httpGet: + host: "323" + httpHeaders: + - name: "324" + value: "325" + path: "322" + port: -1620315711 + scheme: ɐ扵 + initialDelaySeconds: -1358663652 + periodSeconds: -527306221 + successThreshold: 2098694289 + tcpSocket: + host: "327" + port: "326" + timeoutSeconds: 1543146222 + resources: + limits: + 颐o: "230" + requests: + '[+扴ȨŮ+朷Ǝ膯ljV': "728" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ŧL²sNƗ¸gĩ餠籲磣Óƿ + drop: + - '"冓鍓贯澔 ƺ蛜6' + privileged: false + procMount: 鰥Z龏´DÒȗ + readOnlyRootFilesystem: true + runAsGroup: 6057650398488995896 + runAsNonRoot: true + runAsUser: 4353696140684277635 + seLinuxOptions: + level: "354" + role: "352" + type: "353" + user: "351" + windowsOptions: + gmsaCredentialSpec: "356" + gmsaCredentialSpecName: "355" + runAsUserName: "357" + startupProbe: + exec: + command: + - "328" + failureThreshold: -1246371817 + httpGet: + host: "331" + httpHeaders: + - name: "332" + value: "333" + path: "329" + port: "330" + scheme: 榝$î.Ȏ蝪ʜ5遰 + initialDelaySeconds: 834105836 + periodSeconds: -370386363 + successThreshold: 1714588921 + tcpSocket: + host: "334" + port: -1438286448 + timeoutSeconds: -1462219068 + targetContainerName: "358" + terminationMessagePath: "350" + terminationMessagePolicy: Kƙ順\E¦队偯J僳徥淳4揻-$ɽ丟 tty: true volumeDevices: - - devicePath: "297" - name: "296" + - devicePath: "313" + name: "312" volumeMounts: - - mountPath: "293" - mountPropagation: 啛更 - name: "292" - subPath: "294" - subPathExpr: "295" - workingDir: "276" + - mountPath: "309" + mountPropagation: ŕ-Ɂ圯W:ĸ輦唊#v铿 + name: "308" + subPath: "310" + subPathExpr: "311" + workingDir: "292" hostAliases: - hostnames: - - "398" - ip: "397" - hostNetwork: true + - "420" + ip: "419" hostPID: true - hostname: "352" + hostname: "374" imagePullSecrets: - - name: "351" + - name: "373" initContainers: - args: - "150" @@ -509,38 +545,37 @@ spec: name: "156" optional: false image: "148" - imagePullPolicy: <é瞾 + imagePullPolicy: k_瀹鞎sn芞QÄȻ lifecycle: postStart: exec: command: - - "188" + - "196" httpGet: - host: "191" + host: "198" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" - scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ + - name: "199" + value: "200" + path: "197" + port: -1327537699 tcpSocket: - host: "194" - port: -337353552 + host: "202" + port: "201" preStop: exec: command: - - "195" + - "203" httpGet: - host: "197" + host: "206" httpHeaders: - - name: "198" - value: "199" - path: "196" - port: -374922344 - scheme: 緄Ú|dk_瀹鞎sn芞 + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: ĉş蝿ɖȃ賲鐅臬 tcpSocket: - host: "200" - port: 912103005 + host: "210" + port: "209" livenessProbe: exec: command: @@ -594,30 +629,50 @@ spec: requests: á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ: "372" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Ŭ + - '?' drop: - - ǙÄr蛏豈 - privileged: true - procMount: ȉ彂 - readOnlyRootFilesystem: true - runAsGroup: -6457174729896610090 + - 峧Y栲茇竛吲蚛隖 + privileged: false + procMount: ʙ嫙& + readOnlyRootFilesystem: false + runAsGroup: -7286288718856494813 runAsNonRoot: true - runAsUser: -3447077152667955293 + runAsUser: 7312518131318481396 seLinuxOptions: - level: "205" - role: "203" - type: "204" - user: "202" + level: "215" + role: "213" + type: "214" + user: "212" windowsOptions: - gmsaCredentialSpec: "207" - gmsaCredentialSpecName: "206" - runAsUserName: "208" + gmsaCredentialSpec: "217" + gmsaCredentialSpecName: "216" + runAsUserName: "218" + startupProbe: + exec: + command: + - "188" + failureThreshold: 1133369651 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: 閝ȝ + initialDelaySeconds: -2142865739 + periodSeconds: 1434408532 + successThreshold: -566408554 + tcpSocket: + host: "195" + port: "194" + timeoutSeconds: -1179067190 + stdin: true stdinOnce: true - terminationMessagePath: "201" - terminationMessagePolicy: Ȋ+?ƭ峧Y栲茇竛吲蚛 + terminationMessagePath: "211" volumeDevices: - devicePath: "172" name: "171" @@ -629,60 +684,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "341" + nodeName: "363" nodeSelector: - "337": "338" + "359": "360" overhead: - U凮: "684" - preemptionPolicy: 忖p様 - priority: -1576968453 - priorityClassName: "399" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "421" readinessGates: - - conditionType: v - restartPolicy: ȱğ_<ǬëJ橈'琕鶫:顇ə - runtimeClassName: "404" - schedulerName: "394" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɘɢ鬍熖B芭花ª瘡 + runtimeClassName: "426" + schedulerName: "416" securityContext: - fsGroup: -1778638259613624198 - runAsGroup: -3042614092601658792 + fsGroup: 7124276984274024394 + runAsGroup: -779972051078659613 runAsNonRoot: false - runAsUser: 3634773701753283428 + runAsUser: 2179199799235189619 seLinuxOptions: - level: "345" - role: "343" - type: "344" - user: "342" + level: "367" + role: "365" + type: "366" + user: "364" supplementalGroups: - - -2125560879532395341 + - -7127205672279904050 sysctls: - - name: "349" - value: "350" + - name: "371" + value: "372" windowsOptions: - gmsaCredentialSpec: "347" - gmsaCredentialSpecName: "346" - runAsUserName: "348" - serviceAccount: "340" - serviceAccountName: "339" - shareProcessNamespace: false - subdomain: "353" - terminationGracePeriodSeconds: 5620818514944490121 + gmsaCredentialSpec: "369" + gmsaCredentialSpecName: "368" + runAsUserName: "370" + serviceAccount: "362" + serviceAccountName: "361" + shareProcessNamespace: true + subdomain: "375" + terminationGracePeriodSeconds: 2666412258966278206 tolerations: - - effect: Ġ滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼ - key: "395" - operator: '[L' - tolerationSeconds: 4456040724914385859 - value: "396" + - effect: ŽɣB矗E¸乾 + key: "417" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "418" topologySpreadConstraints: - labelSelector: matchExpressions: - - 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 + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A - : BM.6-.Y_72-_--p7 - maxSkew: -782776982 - topologyKey: "405" - whenUnsatisfiable: 鈀 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "427" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "47" @@ -882,14 +938,14 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: 740158871 + availableReplicas: -1469601144 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "413" - reason: "412" - status: '''ƈoIǢ龞瞯å' - type: "" - fullyLabeledReplicas: -929473748 - observedGeneration: -5350227579821888386 - readyReplicas: -1450995995 - replicas: -106050665 + message: "435" + reason: "434" + status: ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å + type: ɡj瓇ɽ丿YƄZZ塖bʘ + fullyLabeledReplicas: 138911331 + observedGeneration: 6703635170896137755 + readyReplicas: 1613009760 + replicas: -330302940 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 ee87679b5d3..92e7b5f5157 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1297,123 +1376,123 @@ "volumeClaimTemplates": [ { "metadata": { - "name": "406", - "generateName": "407", - "namespace": "408", - "selfLink": "409", - "uid": "鋡浤ɖ緖焿熣", - "resourceVersion": "7821588463673401230", - "generation": -3408884454087787958, + "name": "426", + "generateName": "427", + "namespace": "428", + "selfLink": "429", + "uid": "`ȗ\u003c8^翜T蘈", + "resourceVersion": "6281861817195808867", + "generation": -8502907933203165744, "creationTimestamp": null, - "deletionGracePeriodSeconds": -7871971636641833314, + "deletionGracePeriodSeconds": -1824067601569574665, "labels": { - "411": "412" + "431": "432" }, "annotations": { - "413": "414" + "433": "434" }, "ownerReferences": [ { - "apiVersion": "415", - "kind": "416", - "name": "417", - "uid": "9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ", - "controller": false, - "blockOwnerDeletion": true + "apiVersion": "435", + "kind": "436", + "name": "437", + "uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ", + "controller": true, + "blockOwnerDeletion": false } ], "finalizers": [ - "418" + "438" ], - "clusterName": "419", + "clusterName": "439", "managedFields": [ { - "manager": "420", - "operation": "ÕW肤", - "apiVersion": "421", - "fieldsType": "422" + "manager": "440", + "operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā", + "apiVersion": "441", + "fieldsType": "442" } ] }, "spec": { "accessModes": [ - "婻漛Ǒ僕ʨƌɦ" + "銲tHǽ÷閂抰^窄CǙķȈĐI梞ū" ], "selector": { "matchLabels": { - "ANx__-F_._n.WaY_o.-0-yE-R55": "2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H" + "p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C": "a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r" }, "matchExpressions": [ { - "key": "6_81_---l_3_-_G-D....js--a---..6bD_M-c", + "key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv", "operator": "Exists" } ] }, "resources": { "limits": { - "宥ɓ": "692" + "O^:": "847" }, "requests": { - "犔kU坥;ȉv5": "156" + "Ɍ蚊ơ鎊t潑": "199" } }, - "volumeName": "429", - "storageClassName": "430", - "volumeMode": "qwïźU痤ȵ", + "volumeName": "449", + "storageClassName": "450", + "volumeMode": "ȳT", "dataSource": { - "apiGroup": "431", - "kind": "432", - "name": "433" + "apiGroup": "451", + "kind": "452", + "name": "453" } }, "status": { - "phase": "怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj", + "phase": "戱PRɄ", "accessModes": [ - "\\屪kƱ" + "熔ķ´ʑ潞Ĵ3Q蠯0" ], "capacity": { - "\"娥Qô!- å2:濕": "362" + "\\溮Ŀ傜NZ!š": "952" }, "conditions": [ { - "type": "nj", - "status": "RY客\\ǯ'_", - "lastProbeTime": "2513-10-02T03:37:43Z", - "lastTransitionTime": "2172-12-06T22:36:31Z", - "reason": "434", - "message": "435" + "type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:", + "status": "ƿOqõƨj2愴ňù廻@p", + "lastProbeTime": "2252-06-28T22:34:24Z", + "lastTransitionTime": "1974-04-29T05:51:38Z", + "reason": "454", + "message": "455" } ] } } ], - "serviceName": "436", - "podManagementPolicy": "榭ș«lj}砵(ɋǬAÃɮǜ:ɐ", + "serviceName": "456", + "podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣", "updateStrategy": { - "type": "瓘ȿ4", + "type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ", "rollingUpdate": { - "partition": -1578718618 + "partition": 86666826 } }, - "revisionHistoryLimit": 1575668098 + "revisionHistoryLimit": 69142596 }, "status": { - "observedGeneration": -2994706141758547943, - "replicas": -148329440, - "readyReplicas": -1823513364, - "currentReplicas": -981691190, - "updatedReplicas": 2069003631, - "currentRevision": "437", - "updateRevision": "438", - "collisionCount": -2044314719, + "observedGeneration": 3474169154658456972, + "replicas": 1449104338, + "readyReplicas": 2037461401, + "currentReplicas": -1847673756, + "updatedReplicas": 154782591, + "currentRevision": "457", + "updateRevision": "458", + "collisionCount": 341287797, "conditions": [ { - "type": "GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V", - "status": "x臥", - "lastTransitionTime": "2583-07-02T00:14:17Z", - "reason": "439", - "message": "440" + "type": "ÆŁĪŀc=Ƨz鈡煰敹xŪO", + "status": "ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+", + "lastTransitionTime": "2493-11-15T11:08:04Z", + "reason": "459", + "message": "460" } ] } 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 e7632a0f1c6..7688e1b2b69 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 67456df5345..3d7b7aca80b 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: 榭ș«lj}砵(ɋǬAÃɮǜ:ɐ + podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣 replicas: 896585016 - revisionHistoryLimit: 1575668098 + revisionHistoryLimit: 69142596 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: "436" + serviceName: "456" template: metadata: annotations: @@ -71,412 +71,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -510,37 +544,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -597,28 +632,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -630,60 +684,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -885,84 +940,84 @@ spec: volumePath: "101" updateStrategy: rollingUpdate: - partition: -1578718618 - type: 瓘ȿ4 + partition: 86666826 + type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ volumeClaimTemplates: - metadata: annotations: - "413": "414" - clusterName: "419" + "433": "434" + clusterName: "439" creationTimestamp: null - deletionGracePeriodSeconds: -7871971636641833314 + deletionGracePeriodSeconds: -1824067601569574665 finalizers: - - "418" - generateName: "407" - generation: -3408884454087787958 + - "438" + generateName: "427" + generation: -8502907933203165744 labels: - "411": "412" + "431": "432" managedFields: - - apiVersion: "421" - fieldsType: "422" - manager: "420" - operation: ÕW肤 - name: "406" - namespace: "408" + - apiVersion: "441" + fieldsType: "442" + manager: "440" + operation: Bi攵&ý"ʀ废査Z綶Ā + name: "426" + namespace: "428" ownerReferences: - - apiVersion: "415" - blockOwnerDeletion: true - controller: false - kind: "416" - name: "417" - uid: 9F徵{ɦ!f親ʚ«Ǥ栌Ə侷ŧ - resourceVersion: "7821588463673401230" - selfLink: "409" - uid: 鋡浤ɖ緖焿熣 + - apiVersion: "435" + blockOwnerDeletion: false + controller: true + kind: "436" + name: "437" + uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ + resourceVersion: "6281861817195808867" + selfLink: "429" + uid: '`ȗ<8^翜T蘈' spec: accessModes: - - 婻漛Ǒ僕ʨƌɦ + - 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū dataSource: - apiGroup: "431" - kind: "432" - name: "433" + apiGroup: "451" + kind: "452" + name: "453" resources: limits: - 宥ɓ: "692" + 'O^:': "847" requests: - 犔kU坥;ȉv5: "156" + Ɍ蚊ơ鎊t潑: "199" selector: matchExpressions: - - key: 6_81_---l_3_-_G-D....js--a---..6bD_M-c + - key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv operator: Exists matchLabels: - ANx__-F_._n.WaY_o.-0-yE-R55: 2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._H - storageClassName: "430" - volumeMode: qwïźU痤ȵ - volumeName: "429" + p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C: a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r + storageClassName: "450" + volumeMode: ȳT + volumeName: "449" status: accessModes: - - \屪kƱ + - 熔ķ´ʑ潞Ĵ3Q蠯0 capacity: - '"娥Qô!- å2:濕': "362" + \溮Ŀ傜NZ!š: "952" conditions: - - lastProbeTime: "2513-10-02T03:37:43Z" - lastTransitionTime: "2172-12-06T22:36:31Z" - message: "435" - reason: "434" - status: RY客\ǯ'_ - type: nj - phase: 怿ÿ易+ǴȰ¤趜磕绘翁揌p:oŇE0Lj + - lastProbeTime: "2252-06-28T22:34:24Z" + lastTransitionTime: "1974-04-29T05:51:38Z" + message: "455" + reason: "454" + status: ƿOqõƨj2愴ňù廻@p + type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:' + phase: 戱PRɄ status: - collisionCount: -2044314719 + collisionCount: 341287797 conditions: - - lastTransitionTime: "2583-07-02T00:14:17Z" - message: "440" - reason: "439" - status: x臥 - type: GZ耏驧¹ƽɟ9ɭ锻ó/階ħ叟V - currentReplicas: -981691190 - currentRevision: "437" - observedGeneration: -2994706141758547943 - readyReplicas: -1823513364 - replicas: -148329440 - updateRevision: "438" - updatedReplicas: 2069003631 + - lastTransitionTime: "2493-11-15T11:08:04Z" + message: "460" + reason: "459" + status: ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+ + type: ÆŁĪŀc=Ƨz鈡煰敹xŪO + currentReplicas: -1847673756 + currentRevision: "457" + observedGeneration: 3474169154658456972 + readyReplicas: 2037461401 + replicas: 1449104338 + updateRevision: "458" + updatedReplicas: 154782591 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 bf12123457f..c5c5704f550 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 @@ -512,364 +512,421 @@ "successThreshold": 1169718433, "failureThreshold": -2039036935 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "ƅTG", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": -1629040033, + "host": "194" + }, + "initialDelaySeconds": 1233814916, + "timeoutSeconds": 1632959949, + "periodSeconds": 487826951, + "successThreshold": 87018792, + "failureThreshold": -239847982 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "195" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", - "scheme": "怳冘HǺƶȤ^}穠C]躢|)黰eȪ嵛4", + "path": "196", + "port": "197", + "host": "198", + "scheme": "ƭt?QȫşŇɜ", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "199", + "value": "200" } ] }, "tcpSocket": { - "port": "194", - "host": "195" + "port": "201", + "host": "202" } }, "preStop": { "exec": { "command": [ - "196" + "203" ] }, "httpGet": { - "path": "197", - "port": "198", - "host": "199", - "scheme": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c", + "path": "204", + "port": "205", + "host": "206", + "scheme": "抴ŨfZhUʎ浵ɲõ", "httpHeaders": [ { - "name": "200", - "value": "201" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": "202", - "host": "203" + "port": -1980941277, + "host": "209" } } }, - "terminationMessagePath": "204", - "imagePullPolicy": "j瀉ǚrǜnh0åȂ町恰nj揠8lj黳鈫", + "terminationMessagePath": "210", + "terminationMessagePolicy": "蕭k ź贩j", + "imagePullPolicy": "瑥A", "securityContext": { "capabilities": { "add": [ - "Ƙá腿ħ缶.蒅!a坩O`" + "Ɋł/擇ɦĽ胚O醔ɍ厶耈 " ], "drop": [ - "İ而踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț" + "衧ȇe媹H" ] }, "privileged": false, "seLinuxOptions": { - "user": "205", - "role": "206", - "type": "207", - "level": "208" + "user": "211", + "role": "212", + "type": "213", + "level": "214" }, "windowsOptions": { - "gmsaCredentialSpecName": "209", - "gmsaCredentialSpec": "210", - "runAsUserName": "211" + "gmsaCredentialSpecName": "215", + "gmsaCredentialSpec": "216", + "runAsUserName": "217" }, - "runAsUser": -7587297753202451973, - "runAsGroup": -6305787278980855165, - "runAsNonRoot": true, + "runAsUser": 7459999274215055423, + "runAsGroup": 2900848145000451690, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "綸_Ú8參遼ūPH炮掊°nʮ" + "allowPrivilegeEscalation": true, + "procMount": "ĵ" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "212", - "image": "213", + "name": "218", + "image": "219", "command": [ - "214" + "220" ], "args": [ - "215" + "221" ], - "workingDir": "216", + "workingDir": "222", "ports": [ { - "name": "217", - "hostPort": -766145437, - "containerPort": 1569606284, - "protocol": "ƞ究:hoĂɋ瀐\u003cɉ", - "hostIP": "218" + "name": "223", + "hostPort": -1477511050, + "containerPort": -1373541406, + "protocol": "栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼", + "hostIP": "224" } ], "envFrom": [ { - "prefix": "219", + "prefix": "225", "configMapRef": { - "name": "220", + "name": "226", "optional": false }, "secretRef": { - "name": "221", - "optional": true + "name": "227", + "optional": false } } ], "env": [ { - "name": "222", - "value": "223", + "name": "228", + "value": "229", "valueFrom": { "fieldRef": { - "apiVersion": "224", - "fieldPath": "225" + "apiVersion": "230", + "fieldPath": "231" }, "resourceFieldRef": { - "containerName": "226", - "resource": "227", - "divisor": "343" + "containerName": "232", + "resource": "233", + "divisor": "233" }, "configMapKeyRef": { - "name": "228", - "key": "229", + "name": "234", + "key": "235", "optional": false }, "secretKeyRef": { - "name": "230", - "key": "231", - "optional": true + "name": "236", + "key": "237", + "optional": false } } } ], "resources": { "limits": { - "苆ǮńMǰ溟ɴ扵閝ȝ鐵儣廡": "281" + "+ņ榱*Gưoɘ檲": "340" }, "requests": { - "珝Żwʮ馜ü": "513" + "ʔŊƞ究:hoĂɋ瀐\u003cɉ湨H=å睫}堇": "690" } }, "volumeMounts": [ { - "name": "232", - "readOnly": true, - "mountPath": "233", - "subPath": "234", - "mountPropagation": "=6}ɡ", - "subPathExpr": "235" + "name": "238", + "mountPath": "239", + "subPath": "240", + "mountPropagation": "ï瓼猀2:öY鶪5w垁", + "subPathExpr": "241" } ], "volumeDevices": [ { - "name": "236", - "devicePath": "237" + "name": "242", + "devicePath": "243" } ], "livenessProbe": { "exec": { "command": [ - "238" + "244" ] }, "httpGet": { - "path": "239", - "port": "240", - "host": "241", - "scheme": "賲鐅臬dH巧", + "path": "245", + "port": 1434408532, + "host": "246", + "scheme": "`劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立h", "httpHeaders": [ { - "name": "242", - "value": "243" + "name": "247", + "value": "248" } ] }, "tcpSocket": { - "port": 559781916, - "host": "244" + "port": "249", + "host": "250" }, - "initialDelaySeconds": -1703360754, - "timeoutSeconds": -1569009987, - "periodSeconds": -1053603859, - "successThreshold": 1471432155, - "failureThreshold": 571942197 + "initialDelaySeconds": -1628697284, + "timeoutSeconds": 843845736, + "periodSeconds": 354496320, + "successThreshold": -418887496, + "failureThreshold": -522126070 }, "readinessProbe": { "exec": { "command": [ - "245" + "251" ] }, "httpGet": { - "path": "246", - "port": "247", - "host": "248", - "scheme": "+?ƭ峧Y栲茇竛吲蚛隖", + "path": "252", + "port": -1569009987, + "host": "253", + "scheme": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", "httpHeaders": [ { - "name": "249", - "value": "250" + "name": "254", + "value": "255" } ] }, "tcpSocket": { - "port": "251", - "host": "252" + "port": 1702578303, + "host": "256" }, - "initialDelaySeconds": -1839582103, - "timeoutSeconds": 1054302708, - "periodSeconds": -1696471293, - "successThreshold": 1545364977, - "failureThreshold": -2093767566 + "initialDelaySeconds": -1565157256, + "timeoutSeconds": -1113628381, + "periodSeconds": -1385586997, + "successThreshold": 460997133, + "failureThreshold": -636855511 + }, + "startupProbe": { + "exec": { + "command": [ + "257" + ] + }, + "httpGet": { + "path": "258", + "port": "259", + "host": "260", + "scheme": "\u0026蒒5靇C'ɵ", + "httpHeaders": [ + { + "name": "261", + "value": "262" + } + ] + }, + "tcpSocket": { + "port": -2051962852, + "host": "263" + }, + "initialDelaySeconds": 1768820087, + "timeoutSeconds": 471718695, + "periodSeconds": -1153851625, + "successThreshold": 1428858742, + "failureThreshold": -1169420648 }, "lifecycle": { "postStart": { "exec": { "command": [ - "253" + "264" ] }, "httpGet": { - "path": "254", - "port": "255", - "host": "256", - "scheme": "嫙\u0026蒒5靇C'ɵK.Q貇", + "path": "265", + "port": 1923650413, + "host": "266", + "scheme": "I粛E煹ǐƲE'iþŹʣy", "httpHeaders": [ { - "name": "257", - "value": "258" + "name": "267", + "value": "268" } ] }, "tcpSocket": { - "port": 1428858742, - "host": "259" + "port": "269", + "host": "270" } }, "preStop": { "exec": { "command": [ - "260" + "271" ] }, "httpGet": { - "path": "261", - "port": "262", - "host": "263", - "scheme": "dz@ùƸʋŀ樺ȃv渟7¤7djƯĖ漘Z", + "path": "272", + "port": "273", + "host": "274", + "scheme": "敍0)鈼¬麄", "httpHeaders": [ { - "name": "264", - "value": "265" + "name": "275", + "value": "276" } ] }, "tcpSocket": { - "port": "266", - "host": "267" + "port": -648954478, + "host": "277" } } }, - "terminationMessagePath": "268", - "terminationMessagePolicy": "0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭", - "imagePullPolicy": "捏ĨF", + "terminationMessagePath": "278", + "imagePullPolicy": "Ƿ裚瓶釆Ɗ+j忊", "securityContext": { "capabilities": { "add": [ - "Àǒ" + "焗捏" ], "drop": [ - "ʒ刽ʼn掏1ſ盷褎weLJèux榜" + "Fħ籘Àǒɿʒ刽ʼn掏1ſ盷褎" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "269", - "role": "270", - "type": "271", - "level": "272" + "user": "279", + "role": "280", + "type": "281", + "level": "282" }, "windowsOptions": { - "gmsaCredentialSpecName": "273", - "gmsaCredentialSpec": "274", - "runAsUserName": "275" + "gmsaCredentialSpecName": "283", + "gmsaCredentialSpec": "284", + "runAsUserName": "285" }, - "runAsUser": -7799096735007368868, - "runAsGroup": -7778175203330288214, + "runAsUser": 1875040261412240501, + "runAsGroup": -3078742976292946468, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l" - } + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "Z1Ůđ眊ľǎɳ,ǿ飏騀呣" + }, + "stdin": true, + "stdinOnce": true, + "tty": true } ], "ephemeralContainers": [ { - "name": "276", - "image": "277", + "name": "286", + "image": "287", "command": [ - "278" + "288" ], "args": [ - "279" + "289" ], - "workingDir": "280", + "workingDir": "290", "ports": [ { - "name": "281", - "hostPort": 2035347577, - "containerPort": -819723498, - "protocol": "\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐", - "hostIP": "282" + "name": "291", + "hostPort": -1343558801, + "containerPort": 284401429, + "protocol": "掇lN", + "hostIP": "292" } ], "envFrom": [ { - "prefix": "283", + "prefix": "293", "configMapRef": { - "name": "284", + "name": "294", "optional": false }, "secretRef": { - "name": "285", + "name": "295", "optional": false } } ], "env": [ { - "name": "286", - "value": "287", + "name": "296", + "value": "297", "valueFrom": { "fieldRef": { - "apiVersion": "288", - "fieldPath": "289" + "apiVersion": "298", + "fieldPath": "299" }, "resourceFieldRef": { - "containerName": "290", - "resource": "291", - "divisor": "609" + "containerName": "300", + "resource": "301", + "divisor": "578" }, "configMapKeyRef": { - "name": "292", - "key": "293", + "name": "302", + "key": "303", "optional": false }, "secretKeyRef": { - "name": "294", - "key": "295", + "name": "304", + "key": "305", "optional": true } } @@ -877,215 +934,240 @@ ], "resources": { "limits": { - "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p": "604" + "þ蛯ɰ荶lj": "397" }, "requests": { - "擓ƖHVe熼'FD剂讼ɓȌʟni酛": "499" + "t颟.鵫ǚ灄鸫rʤî萨zvt莭": "453" } }, "volumeMounts": [ { - "name": "296", - "readOnly": true, - "mountPath": "297", - "subPath": "298", - "mountPropagation": "Ɏ R§耶FfBl", - "subPathExpr": "299" + "name": "306", + "mountPath": "307", + "subPath": "308", + "mountPropagation": "Ȣ幟ļ腻Ŭ", + "subPathExpr": "309" } ], "volumeDevices": [ { - "name": "300", - "devicePath": "301" + "name": "310", + "devicePath": "311" } ], "livenessProbe": { "exec": { "command": [ - "302" + "312" ] }, "httpGet": { - "path": "303", - "port": 896430536, - "host": "304", - "scheme": "罴ņ螡źȰ", + "path": "313", + "port": "314", + "host": "315", + "scheme": "牐ɺ皚|懥", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "316", + "value": "317" } ] }, "tcpSocket": { - "port": 513341278, - "host": "307" + "port": "318", + "host": "319" }, - "initialDelaySeconds": 627713162, - "timeoutSeconds": 1255312175, - "periodSeconds": -1740959124, - "successThreshold": 158280212, - "failureThreshold": -361442565 + "initialDelaySeconds": 1146016612, + "timeoutSeconds": 1495880465, + "periodSeconds": -1032967081, + "successThreshold": 59664438, + "failureThreshold": 958482756 }, "readinessProbe": { "exec": { "command": [ - "308" + "320" ] }, "httpGet": { - "path": "309", - "port": -2013568185, - "host": "310", - "scheme": "#yV'WKw(ğ儴Ůĺ}", + "path": "321", + "port": -1983953959, + "host": "322", + "scheme": "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶", "httpHeaders": [ { - "name": "311", - "value": "312" + "name": "323", + "value": "324" } ] }, "tcpSocket": { - "port": -20130017, - "host": "313" + "port": -2107743490, + "host": "325" }, - "initialDelaySeconds": -1244623134, - "timeoutSeconds": -1334110502, - "periodSeconds": -398297599, - "successThreshold": 873056500, - "failureThreshold": -36782737 + "initialDelaySeconds": 1995332035, + "timeoutSeconds": 960499098, + "periodSeconds": -1020896847, + "successThreshold": 1074486306, + "failureThreshold": 630004123 + }, + "startupProbe": { + "exec": { + "command": [ + "326" + ] + }, + "httpGet": { + "path": "327", + "port": 714088955, + "host": "328", + "scheme": "źȰ?$矡ȶ网棊ʢ=wǕɳ", + "httpHeaders": [ + { + "name": "329", + "value": "330" + } + ] + }, + "tcpSocket": { + "port": 1752155096, + "host": "331" + }, + "initialDelaySeconds": -1962065705, + "timeoutSeconds": 1701999128, + "periodSeconds": -1364571630, + "successThreshold": 1689978741, + "failureThreshold": -1423854443 }, "lifecycle": { "postStart": { "exec": { "command": [ - "314" + "332" ] }, "httpGet": { - "path": "315", - "port": 1791615594, - "host": "316", - "scheme": "Ƥ熪军g\u003e郵[+扴", + "path": "333", + "port": "334", + "host": "335", + "scheme": "跦Opwǩ曬逴褜1", "httpHeaders": [ { - "name": "317", - "value": "318" + "name": "336", + "value": "337" } ] }, "tcpSocket": { - "port": "319", - "host": "320" + "port": -1801140031, + "host": "338" } }, "preStop": { "exec": { "command": [ - "321" + "339" ] }, "httpGet": { - "path": "322", - "port": "323", - "host": "324", - "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", + "path": "340", + "port": 785984384, + "host": "341", + "scheme": "熪军g\u003e郵[+扴ȨŮ+朷Ǝ膯ljVX", "httpHeaders": [ { - "name": "325", - "value": "326" + "name": "342", + "value": "343" } ] }, "tcpSocket": { - "port": "327", - "host": "328" + "port": "344", + "host": "345" } } }, - "terminationMessagePath": "329", - "terminationMessagePolicy": "輦唊#v铿ʩȂ4ē鐭", - "imagePullPolicy": "岼昕ĬÇó藢xɮĵȑ6L*Z", + "terminationMessagePath": "346", + "terminationMessagePolicy": "谇j爻ƙ", + "imagePullPolicy": ":", "securityContext": { "capabilities": { "add": [ - "咡W" + "唊#v铿" ], "drop": [ - "敄lu|" + "Ȃ4" ] }, "privileged": false, "seLinuxOptions": { - "user": "330", - "role": "331", - "type": "332", - "level": "333" + "user": "347", + "role": "348", + "type": "349", + "level": "350" }, "windowsOptions": { - "gmsaCredentialSpecName": "334", - "gmsaCredentialSpec": "335", - "runAsUserName": "336" + "gmsaCredentialSpecName": "351", + "gmsaCredentialSpec": "352", + "runAsUserName": "353" }, - "runAsUser": -230763786643460687, - "runAsGroup": 8175137418799691442, - "runAsNonRoot": true, + "runAsUser": 4480986625444454685, + "runAsGroup": -2630324001819898514, + "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "=E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展" + "allowPrivilegeEscalation": false, + "procMount": "苧yñKJɐ扵Gƚ绤fʀļ腩" }, - "stdin": true, - "stdinOnce": true, - "targetContainerName": "337" + "tty": true, + "targetContainerName": "354" } ], - "restartPolicy": "庰%皧V", - "terminationGracePeriodSeconds": -5569844914519516591, - "activeDeadlineSeconds": -1117820874616112287, - "dnsPolicy": "\\E¦队偯J僳徥淳", + "restartPolicy": "媁荭gw忊", + "terminationGracePeriodSeconds": -4333562938396485230, + "activeDeadlineSeconds": -7565148469525206101, + "dnsPolicy": "遰=E", "nodeSelector": { - "338": "339" + "355": "356" }, - "serviceAccountName": "340", - "serviceAccount": "341", - "automountServiceAccountToken": true, - "nodeName": "342", - "hostPID": true, + "serviceAccountName": "357", + "serviceAccount": "358", + "automountServiceAccountToken": false, + "nodeName": "359", "hostIPC": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "343", - "role": "344", - "type": "345", - "level": "346" + "user": "360", + "role": "361", + "type": "362", + "level": "363" }, "windowsOptions": { - "gmsaCredentialSpecName": "347", - "gmsaCredentialSpec": "348", - "runAsUserName": "349" + "gmsaCredentialSpecName": "364", + "gmsaCredentialSpec": "365", + "runAsUserName": "366" }, - "runAsUser": 5307265951662522113, - "runAsGroup": 8025933883888025358, - "runAsNonRoot": true, + "runAsUser": 2651364835047718925, + "runAsGroup": 2695823502041400376, + "runAsNonRoot": false, "supplementalGroups": [ - 6410850623145248813 + -2910346974754087949 ], - "fsGroup": -4038707688124072116, + "fsGroup": -1212012606981050727, "sysctls": [ { - "name": "350", - "value": "351" + "name": "367", + "value": "368" } ] }, "imagePullSecrets": [ { - "name": "352" + "name": "369" } ], - "hostname": "353", - "subdomain": "354", + "hostname": "370", + "subdomain": "371", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1093,19 +1175,19 @@ { "matchExpressions": [ { - "key": "355", - "operator": "", + "key": "372", + "operator": "皥贸碔lNKƙ順\\E¦队", "values": [ - "356" + "373" ] } ], "matchFields": [ { - "key": "357", - "operator": "蘇KŅ/»頸+SÄ蚃", + "key": "374", + "operator": "跣Hǝcw媀瓄\u0026翜舞拉Œɥ颶", "values": [ - "358" + "375" ] } ] @@ -1114,23 +1196,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1179798619, + "weight": 1907998540, "preference": { "matchExpressions": [ { - "key": "359", - "operator": "酊龨δ摖ȱğ_\u003c", + "key": "376", + "operator": " 鰔澝qV訆ƎżŧL²", "values": [ - "360" + "377" ] } ], "matchFields": [ { - "key": "361", - "operator": " ƺ蛜6Ɖ飴Ɏ", + "key": "378", + "operator": "Ä蚃ɣľ)酊龨δ摖ȱğ_\u003c", "values": [ - "362" + "379" ] } ] @@ -1143,40 +1225,40 @@ { "labelSelector": { "matchLabels": { - "5-28x-8-p-lvvm-2qz7-3042017h/vN5.25aWx.2M": "4-_-_-...1py_8-3..s._.x.2K_2u" + "n5v-5925a-x12a-214-3s--gg93--p.2ql/B-.--g": "Y1" }, "matchExpressions": [ { - "key": "t-43--3---93-2-2-37--e00uz-z0sn-8hx-qa-0/P8--21kFc", + "key": "ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/4_.-_-_-...1py_8-3..s._.x2", "operator": "Exists" } ] }, "namespaces": [ - "369" + "386" ], - "topologyKey": "370" + "topologyKey": "387" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 50066853, + "weight": -1058923098, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "7o7799-skj5---r-q3c.2f7ef8jzv4-9-35o-1-5w5z3-d----0p---s-9----747o-x3k/4-P.yP9S--858LI__.8____rO-S-P_-..0": "C9..__-6_k.N-2B_V.-tfh4.caTz_g" + "3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7": "m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1" }, "matchExpressions": [ { - "key": "R8D_X._B__-p", + "key": "3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M", "operator": "Exists" } ] }, "namespaces": [ - "377" + "394" ], - "topologyKey": "378" + "topologyKey": "395" } } ] @@ -1186,108 +1268,108 @@ { "labelSelector": { "matchLabels": { - "w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo": "T1mel--F......G" + "sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" }, "matchExpressions": [ { - "key": "4__XOnf_ZN.-_--r.E__-.8_e_l0", + "key": "v8_.O_..8n.--z_-..6W.K", "operator": "Exists" } ] }, "namespaces": [ - "385" + "402" ], - "topologyKey": "386" + "topologyKey": "403" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1387335192, + "weight": -168773629, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "0..7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_E": "mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33" + "x-3/6-.7D.3_KPgL": "d._.Um.-__k.5" }, "matchExpressions": [ { - "key": "89o9.68o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---r/we16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH1", - "operator": "NotIn", + "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", + "operator": "In", "values": [ - "v_._e_-8" + "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw" ] } ] }, "namespaces": [ - "393" + "410" ], - "topologyKey": "394" + "topologyKey": "411" } } ] } }, - "schedulerName": "395", + "schedulerName": "412", "tolerations": [ { - "key": "396", - "operator": "滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼɏ眞a", - "value": "397", - "effect": "vĝ線", - "tolerationSeconds": 3441490580161241924 + "key": "413", + "operator": "栣险¹贮獘薟8Mĕ霉", + "value": "414", + "effect": "ŪǗȦɆ悼j蛑q", + "tolerationSeconds": 4375148957048018073 } ], "hostAliases": [ { - "ip": "398", + "ip": "415", "hostnames": [ - "399" + "416" ] } ], - "priorityClassName": "400", - "priority": 449312902, + "priorityClassName": "417", + "priority": -1286809305, "dnsConfig": { "nameservers": [ - "401" + "418" ], "searches": [ - "402" + "419" ], "options": [ { - "name": "403", - "value": "404" + "name": "420", + "value": "421" } ] }, "readinessGates": [ { - "conditionType": ":" + "conditionType": "ųŎ群E牬庘颮6(|ǖû" } ], - "runtimeClassName": "405", - "enableServiceLinks": true, - "preemptionPolicy": "L©鈀6w屑_ǪɄ6ɲǛʦ緒gb", + "runtimeClassName": "422", + "enableServiceLinks": false, + "preemptionPolicy": "怨彬ɈNƋl塠傫ü", "overhead": { - "": "814" + "ɮ6)": "299" }, "topologySpreadConstraints": [ { - "maxSkew": -4712534, - "topologyKey": "406", - "whenUnsatisfiable": "'6Ǫ槲Ǭ9|`gɩ", + "maxSkew": -554557703, + "topologyKey": "423", + "whenUnsatisfiable": "¹t骳ɰɰUʜʔŜ0¢", "labelSelector": { "matchLabels": { - "5-ux3--0--2pn-5023-lt3-w-br75gp-c-coa--yh/83Po_L3f1-7_4": "Ca.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-j" + "o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l": "b-L7.-__-G_2kCpS__.3g" }, "matchExpressions": [ { - "key": "sf--kh.f4x4-br5r-g/3_e_3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.eV", - "operator": "NotIn", + "key": "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", + "operator": "In", "values": [ - "8oh..2_uGGP..-_Nh" + "7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx" ] } ] @@ -1296,21 +1378,21 @@ ] } }, - "ttlSecondsAfterFinished": -1388868268 + "ttlSecondsAfterFinished": -1574276574 }, "status": { "conditions": [ { - "type": "ɍ颬灲Ɍ邪鳖üz", - "status": "钖", - "lastProbeTime": "2821-07-19T11:49:26Z", - "lastTransitionTime": "2086-12-20T18:43:07Z", - "reason": "413", - "message": "414" + "type": "ļė[BN柌ë娒汙查o*Ĵ麻齔試", + "status": "昒", + "lastProbeTime": "2756-02-27T11:08:58Z", + "lastTransitionTime": "2296-12-01T04:10:44Z", + "reason": "430", + "message": "431" } ], - "active": -810338968, - "succeeded": -1842112975, - "failed": 1007324766 + "active": -125022959, + "succeeded": 186118994, + "failed": 115522160 } } \ 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 dd8ea04ef89..d735181c468 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 23b0a68553d..9f0b51a80f9 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 @@ -74,409 +74,447 @@ spec: selfLink: "28" uid: ɸ=ǤÆ碛,1 spec: - activeDeadlineSeconds: -1117820874616112287 + activeDeadlineSeconds: -7565148469525206101 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "359" - operator: 酊龨δ摖ȱğ_< + - key: "376" + operator: ' 鰔澝qV訆ƎżŧL²' values: - - "360" + - "377" matchFields: - - key: "361" - operator: ' ƺ蛜6Ɖ飴Ɏ' + - key: "378" + operator: Ä蚃ɣľ)酊龨δ摖ȱğ_< values: - - "362" - weight: -1179798619 + - "379" + weight: 1907998540 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "355" - operator: "" + - key: "372" + operator: 皥贸碔lNKƙ順\E¦队 values: - - "356" + - "373" matchFields: - - key: "357" - operator: 蘇KŅ/»頸+SÄ蚃 + - key: "374" + operator: 跣Hǝcw媀瓄&翜舞拉Œɥ颶 values: - - "358" + - "375" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: R8D_X._B__-p + - key: 3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M operator: Exists matchLabels: - 7o7799-skj5---r-q3c.2f7ef8jzv4-9-35o-1-5w5z3-d----0p---s-9----747o-x3k/4-P.yP9S--858LI__.8____rO-S-P_-..0: C9..__-6_k.N-2B_V.-tfh4.caTz_g + 3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7: m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1 namespaces: - - "377" - topologyKey: "378" - weight: 50066853 + - "394" + topologyKey: "395" + weight: -1058923098 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: t-43--3---93-2-2-37--e00uz-z0sn-8hx-qa-0/P8--21kFc + - key: ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/4_.-_-_-...1py_8-3..s._.x2 operator: Exists matchLabels: - 5-28x-8-p-lvvm-2qz7-3042017h/vN5.25aWx.2M: 4-_-_-...1py_8-3..s._.x.2K_2u + n5v-5925a-x12a-214-3s--gg93--p.2ql/B-.--g: Y1 namespaces: - - "369" - topologyKey: "370" + - "386" + topologyKey: "387" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 89o9.68o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---r/we16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH1 - operator: NotIn + - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C + operator: In values: - - v_._e_-8 + - p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw matchLabels: - 0..7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_E: mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 + x-3/6-.7D.3_KPgL: d._.Um.-__k.5 namespaces: - - "393" - topologyKey: "394" - weight: -1387335192 + - "410" + topologyKey: "411" + weight: -168773629 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 4__XOnf_ZN.-_--r.E__-.8_e_l0 + - key: v8_.O_..8n.--z_-..6W.K operator: Exists matchLabels: - w9-9d8-s7t/ZX-D---k..1Q7._l.._Q.6.I--2_9.v.--_.--4QQo: T1mel--F......G + sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 namespaces: - - "385" - topologyKey: "386" - automountServiceAccountToken: true + - "402" + topologyKey: "403" + automountServiceAccountToken: false containers: - args: - - "215" + - "221" command: - - "214" + - "220" env: - - name: "222" - value: "223" + - name: "228" + value: "229" valueFrom: configMapKeyRef: - key: "229" - name: "228" + key: "235" + name: "234" optional: false fieldRef: - apiVersion: "224" - fieldPath: "225" + apiVersion: "230" + fieldPath: "231" resourceFieldRef: - containerName: "226" - divisor: "343" - resource: "227" + containerName: "232" + divisor: "233" + resource: "233" secretKeyRef: - key: "231" - name: "230" - optional: true + key: "237" + name: "236" + optional: false envFrom: - configMapRef: - name: "220" + name: "226" optional: false - prefix: "219" + prefix: "225" secretRef: - name: "221" - optional: true - image: "213" - imagePullPolicy: 捏ĨF + name: "227" + optional: false + image: "219" + imagePullPolicy: Ƿ裚瓶釆Ɗ+j忊 lifecycle: postStart: exec: command: - - "253" + - "264" httpGet: - host: "256" + host: "266" httpHeaders: - - name: "257" - value: "258" - path: "254" - port: "255" - scheme: 嫙&蒒5靇C'ɵK.Q貇 + - name: "267" + value: "268" + path: "265" + port: 1923650413 + scheme: I粛E煹ǐƲE'iþŹʣy tcpSocket: - host: "259" - port: 1428858742 + host: "270" + port: "269" preStop: exec: command: - - "260" + - "271" httpGet: - host: "263" + host: "274" httpHeaders: - - name: "264" - value: "265" - path: "261" - port: "262" - scheme: dz@ùƸʋŀ樺ȃv渟7¤7djƯĖ漘Z + - name: "275" + value: "276" + path: "272" + port: "273" + scheme: 敍0)鈼¬麄 tcpSocket: - host: "267" - port: "266" + host: "277" + port: -648954478 livenessProbe: exec: command: - - "238" - failureThreshold: 571942197 + - "244" + failureThreshold: -522126070 httpGet: - host: "241" + host: "246" httpHeaders: - - name: "242" - value: "243" - path: "239" - port: "240" - scheme: 賲鐅臬dH巧 - initialDelaySeconds: -1703360754 - periodSeconds: -1053603859 - successThreshold: 1471432155 + - name: "247" + value: "248" + path: "245" + port: 1434408532 + scheme: '`劳&¼傭Ȟ1酃=6}ɡŇƉ立h' + initialDelaySeconds: -1628697284 + periodSeconds: 354496320 + successThreshold: -418887496 tcpSocket: - host: "244" - port: 559781916 - timeoutSeconds: -1569009987 - name: "212" + host: "250" + port: "249" + timeoutSeconds: 843845736 + name: "218" ports: - - containerPort: 1569606284 - hostIP: "218" - hostPort: -766145437 - name: "217" - protocol: ƞ究:hoĂɋ瀐<ɉ + - containerPort: -1373541406 + hostIP: "224" + hostPort: -1477511050 + name: "223" + protocol: 栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼 readinessProbe: exec: command: - - "245" - failureThreshold: -2093767566 + - "251" + failureThreshold: -636855511 httpGet: - host: "248" + host: "253" httpHeaders: - - name: "249" - value: "250" - path: "246" - port: "247" - scheme: +?ƭ峧Y栲茇竛吲蚛隖 - initialDelaySeconds: -1839582103 - periodSeconds: -1696471293 - successThreshold: 1545364977 + - name: "254" + value: "255" + path: "252" + port: -1569009987 + scheme: ɢǵʭd鲡:贅wE@Ȗs«öʮĀ< + initialDelaySeconds: -1565157256 + periodSeconds: -1385586997 + successThreshold: 460997133 tcpSocket: - host: "252" - port: "251" - timeoutSeconds: 1054302708 + host: "256" + port: 1702578303 + timeoutSeconds: -1113628381 resources: limits: - 苆ǮńMǰ溟ɴ扵閝ȝ鐵儣廡: "281" + +ņ榱*Gưoɘ檲: "340" requests: - 珝Żwʮ馜ü: "513" + ʔŊƞ究:hoĂɋ瀐<ɉ湨H=å睫}堇: "690" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Àǒ + - 焗捏 drop: - - ʒ刽ʼn掏1ſ盷褎weLJèux榜 - privileged: false - procMount: ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l - readOnlyRootFilesystem: true - runAsGroup: -7778175203330288214 - runAsNonRoot: false - runAsUser: -7799096735007368868 - seLinuxOptions: - level: "272" - role: "270" - type: "271" - user: "269" - windowsOptions: - gmsaCredentialSpec: "274" - gmsaCredentialSpecName: "273" - runAsUserName: "275" - terminationMessagePath: "268" - terminationMessagePolicy: 0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭 - volumeDevices: - - devicePath: "237" - name: "236" - volumeMounts: - - mountPath: "233" - mountPropagation: =6}ɡ - name: "232" - readOnly: true - subPath: "234" - subPathExpr: "235" - workingDir: "216" - dnsConfig: - nameservers: - - "401" - options: - - name: "403" - value: "404" - searches: - - "402" - dnsPolicy: \E¦队偯J僳徥淳 - enableServiceLinks: true - ephemeralContainers: - - args: - - "279" - command: - - "278" - env: - - name: "286" - value: "287" - valueFrom: - configMapKeyRef: - key: "293" - name: "292" - optional: false - fieldRef: - apiVersion: "288" - fieldPath: "289" - resourceFieldRef: - containerName: "290" - divisor: "609" - resource: "291" - secretKeyRef: - key: "295" - name: "294" - optional: true - envFrom: - - configMapRef: - name: "284" - optional: false - prefix: "283" - secretRef: - name: "285" - optional: false - image: "277" - imagePullPolicy: 岼昕ĬÇó藢xɮĵȑ6L*Z - lifecycle: - postStart: - exec: - command: - - "314" - httpGet: - host: "316" - httpHeaders: - - name: "317" - value: "318" - path: "315" - port: 1791615594 - scheme: Ƥ熪军g>郵[+扴 - tcpSocket: - host: "320" - port: "319" - preStop: - exec: - command: - - "321" - httpGet: - host: "324" - httpHeaders: - - name: "325" - value: "326" - path: "322" - port: "323" - scheme: ']佱¿>犵殇ŕ-Ɂ圯W' - tcpSocket: - host: "328" - port: "327" - livenessProbe: - exec: - command: - - "302" - failureThreshold: -361442565 - httpGet: - host: "304" - httpHeaders: - - name: "305" - value: "306" - path: "303" - port: 896430536 - scheme: 罴ņ螡źȰ - initialDelaySeconds: 627713162 - periodSeconds: -1740959124 - successThreshold: 158280212 - tcpSocket: - host: "307" - port: 513341278 - timeoutSeconds: 1255312175 - name: "276" - ports: - - containerPort: -819723498 - hostIP: "282" - hostPort: 2035347577 - name: "281" - protocol: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐' - readinessProbe: - exec: - command: - - "308" - failureThreshold: -36782737 - httpGet: - host: "310" - httpHeaders: - - name: "311" - value: "312" - path: "309" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' - initialDelaySeconds: -1244623134 - periodSeconds: -398297599 - successThreshold: 873056500 - tcpSocket: - host: "313" - port: -20130017 - timeoutSeconds: -1334110502 - resources: - limits: - 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p: "604" - requests: - 擓ƖHVe熼'FD剂讼ɓȌʟni酛: "499" - securityContext: - allowPrivilegeEscalation: true - capabilities: - add: - - 咡W - drop: - - 敄lu| - privileged: false - procMount: =E埄Ȁ朦 wƯ貾坢'跩aŕ翑0展 + - Fħ籘Àǒɿʒ刽ʼn掏1ſ盷褎 + privileged: true + procMount: Z1Ůđ眊ľǎɳ,ǿ飏騀呣 readOnlyRootFilesystem: false - runAsGroup: 8175137418799691442 - runAsNonRoot: true - runAsUser: -230763786643460687 + runAsGroup: -3078742976292946468 + runAsNonRoot: false + runAsUser: 1875040261412240501 seLinuxOptions: - level: "333" - role: "331" - type: "332" - user: "330" + level: "282" + role: "280" + type: "281" + user: "279" windowsOptions: - gmsaCredentialSpec: "335" - gmsaCredentialSpecName: "334" - runAsUserName: "336" + gmsaCredentialSpec: "284" + gmsaCredentialSpecName: "283" + runAsUserName: "285" + startupProbe: + exec: + command: + - "257" + failureThreshold: -1169420648 + httpGet: + host: "260" + httpHeaders: + - name: "261" + value: "262" + path: "258" + port: "259" + scheme: '&蒒5靇C''ɵ' + initialDelaySeconds: 1768820087 + periodSeconds: -1153851625 + successThreshold: 1428858742 + tcpSocket: + host: "263" + port: -2051962852 + timeoutSeconds: 471718695 stdin: true stdinOnce: true - targetContainerName: "337" - terminationMessagePath: "329" - terminationMessagePolicy: 輦唊#v铿ʩȂ4ē鐭 + terminationMessagePath: "278" + tty: true volumeDevices: - - devicePath: "301" - name: "300" + - devicePath: "243" + name: "242" volumeMounts: - - mountPath: "297" - mountPropagation: Ɏ R§耶FfBl - name: "296" - readOnly: true - subPath: "298" - subPathExpr: "299" - workingDir: "280" + - mountPath: "239" + mountPropagation: ï瓼猀2:öY鶪5w垁 + name: "238" + subPath: "240" + subPathExpr: "241" + workingDir: "222" + dnsConfig: + nameservers: + - "418" + options: + - name: "420" + value: "421" + searches: + - "419" + dnsPolicy: 遰=E + enableServiceLinks: false + ephemeralContainers: + - args: + - "289" + command: + - "288" + env: + - name: "296" + value: "297" + valueFrom: + configMapKeyRef: + key: "303" + name: "302" + optional: false + fieldRef: + apiVersion: "298" + fieldPath: "299" + resourceFieldRef: + containerName: "300" + divisor: "578" + resource: "301" + secretKeyRef: + key: "305" + name: "304" + optional: true + envFrom: + - configMapRef: + name: "294" + optional: false + prefix: "293" + secretRef: + name: "295" + optional: false + image: "287" + imagePullPolicy: ':' + lifecycle: + postStart: + exec: + command: + - "332" + httpGet: + host: "335" + httpHeaders: + - name: "336" + value: "337" + path: "333" + port: "334" + scheme: 跦Opwǩ曬逴褜1 + tcpSocket: + host: "338" + port: -1801140031 + preStop: + exec: + command: + - "339" + httpGet: + host: "341" + httpHeaders: + - name: "342" + value: "343" + path: "340" + port: 785984384 + scheme: 熪军g>郵[+扴ȨŮ+朷Ǝ膯ljVX + tcpSocket: + host: "345" + port: "344" + livenessProbe: + exec: + command: + - "312" + failureThreshold: 958482756 + httpGet: + host: "315" + httpHeaders: + - name: "316" + value: "317" + path: "313" + port: "314" + scheme: 牐ɺ皚|懥 + initialDelaySeconds: 1146016612 + periodSeconds: -1032967081 + successThreshold: 59664438 + tcpSocket: + host: "319" + port: "318" + timeoutSeconds: 1495880465 + name: "286" + ports: + - containerPort: 284401429 + hostIP: "292" + hostPort: -1343558801 + name: "291" + protocol: 掇lN + readinessProbe: + exec: + command: + - "320" + failureThreshold: 630004123 + httpGet: + host: "322" + httpHeaders: + - name: "323" + value: "324" + path: "321" + port: -1983953959 + scheme: 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶 + initialDelaySeconds: 1995332035 + periodSeconds: -1020896847 + successThreshold: 1074486306 + tcpSocket: + host: "325" + port: -2107743490 + timeoutSeconds: 960499098 + resources: + limits: + þ蛯ɰ荶lj: "397" + requests: + t颟.鵫ǚ灄鸫rʤî萨zvt莭: "453" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - 唊#v铿 + drop: + - Ȃ4 + privileged: false + procMount: 苧yñKJɐ扵Gƚ绤fʀļ腩 + readOnlyRootFilesystem: false + runAsGroup: -2630324001819898514 + runAsNonRoot: false + runAsUser: 4480986625444454685 + seLinuxOptions: + level: "350" + role: "348" + type: "349" + user: "347" + windowsOptions: + gmsaCredentialSpec: "352" + gmsaCredentialSpecName: "351" + runAsUserName: "353" + startupProbe: + exec: + command: + - "326" + failureThreshold: -1423854443 + httpGet: + host: "328" + httpHeaders: + - name: "329" + value: "330" + path: "327" + port: 714088955 + scheme: źȰ?$矡ȶ网棊ʢ=wǕɳ + initialDelaySeconds: -1962065705 + periodSeconds: -1364571630 + successThreshold: 1689978741 + tcpSocket: + host: "331" + port: 1752155096 + timeoutSeconds: 1701999128 + targetContainerName: "354" + terminationMessagePath: "346" + terminationMessagePolicy: 谇j爻ƙ + tty: true + volumeDevices: + - devicePath: "311" + name: "310" + volumeMounts: + - mountPath: "307" + mountPropagation: Ȣ幟ļ腻Ŭ + name: "306" + subPath: "308" + subPathExpr: "309" + workingDir: "290" hostAliases: - hostnames: - - "399" - ip: "398" + - "416" + ip: "415" hostIPC: true - hostPID: true - hostname: "353" + hostname: "370" imagePullSecrets: - - name: "352" + - name: "369" initContainers: - args: - "150" @@ -510,38 +548,38 @@ spec: name: "156" optional: true image: "148" - imagePullPolicy: j瀉ǚrǜnh0åȂ町恰nj揠8lj黳鈫 + imagePullPolicy: 瑥A lifecycle: postStart: exec: command: - - "188" + - "195" httpGet: - host: "191" + host: "198" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" - scheme: 怳冘HǺƶȤ^}穠C]躢|)黰eȪ嵛4 + - name: "199" + value: "200" + path: "196" + port: "197" + scheme: ƭt?QȫşŇɜ tcpSocket: - host: "195" - port: "194" + host: "202" + port: "201" preStop: exec: command: - - "196" + - "203" httpGet: - host: "199" + host: "206" httpHeaders: - - name: "200" - value: "201" - path: "197" - port: "198" - scheme: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: 抴ŨfZhUʎ浵ɲõ tcpSocket: - host: "203" - port: "202" + host: "209" + port: -1980941277 livenessProbe: exec: command: @@ -595,30 +633,50 @@ spec: requests: /淹\韲翁&ʢsɜ曢\%枅:=ǛƓ: "330" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - Ƙá腿ħ缶.蒅!a坩O` + - Ɋł/擇ɦĽ胚O醔ɍ厶耈  drop: - - İ而踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț + - 衧ȇe媹H privileged: false - procMount: 綸_Ú8參遼ūPH炮掊°nʮ + procMount: ĵ readOnlyRootFilesystem: true - runAsGroup: -6305787278980855165 - runAsNonRoot: true - runAsUser: -7587297753202451973 + runAsGroup: 2900848145000451690 + runAsNonRoot: false + runAsUser: 7459999274215055423 seLinuxOptions: - level: "208" - role: "206" - type: "207" - user: "205" + level: "214" + role: "212" + type: "213" + user: "211" windowsOptions: - gmsaCredentialSpec: "210" - gmsaCredentialSpecName: "209" - runAsUserName: "211" - stdin: true - stdinOnce: true - terminationMessagePath: "204" + gmsaCredentialSpec: "216" + gmsaCredentialSpecName: "215" + runAsUserName: "217" + startupProbe: + exec: + command: + - "188" + failureThreshold: -239847982 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: ƅTG + initialDelaySeconds: 1233814916 + periodSeconds: 487826951 + successThreshold: 87018792 + tcpSocket: + host: "194" + port: -1629040033 + timeoutSeconds: 1632959949 + terminationMessagePath: "210" + terminationMessagePolicy: 蕭k ź贩j + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -629,61 +687,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "342" + nodeName: "359" nodeSelector: - "338": "339" + "355": "356" overhead: - "": "814" - preemptionPolicy: L©鈀6w屑_ǪɄ6ɲǛʦ緒gb - priority: 449312902 - priorityClassName: "400" + ɮ6): "299" + preemptionPolicy: 怨彬ɈNƋl塠傫ü + priority: -1286809305 + priorityClassName: "417" readinessGates: - - conditionType: ':' - restartPolicy: 庰%皧V - runtimeClassName: "405" - schedulerName: "395" + - conditionType: ųŎ群E牬庘颮6(|ǖû + restartPolicy: 媁荭gw忊 + runtimeClassName: "422" + schedulerName: "412" securityContext: - fsGroup: -4038707688124072116 - runAsGroup: 8025933883888025358 - runAsNonRoot: true - runAsUser: 5307265951662522113 + fsGroup: -1212012606981050727 + runAsGroup: 2695823502041400376 + runAsNonRoot: false + runAsUser: 2651364835047718925 seLinuxOptions: - level: "346" - role: "344" - type: "345" - user: "343" + level: "363" + role: "361" + type: "362" + user: "360" supplementalGroups: - - 6410850623145248813 + - -2910346974754087949 sysctls: - - name: "350" - value: "351" + - name: "367" + value: "368" windowsOptions: - gmsaCredentialSpec: "348" - gmsaCredentialSpecName: "347" - runAsUserName: "349" - serviceAccount: "341" - serviceAccountName: "340" + gmsaCredentialSpec: "365" + gmsaCredentialSpecName: "364" + runAsUserName: "366" + serviceAccount: "358" + serviceAccountName: "357" shareProcessNamespace: false - subdomain: "354" - terminationGracePeriodSeconds: -5569844914519516591 + subdomain: "371" + terminationGracePeriodSeconds: -4333562938396485230 tolerations: - - effect: vĝ線 - key: "396" - operator: 滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼɏ眞a - tolerationSeconds: 3441490580161241924 - value: "397" + - effect: ŪǗȦɆ悼j蛑q + key: "413" + operator: 栣险¹贮獘薟8Mĕ霉 + tolerationSeconds: 4375148957048018073 + value: "414" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: sf--kh.f4x4-br5r-g/3_e_3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.eV - operator: NotIn + - key: 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 + operator: In values: - - 8oh..2_uGGP..-_Nh + - 7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx matchLabels: - 5-ux3--0--2pn-5023-lt3-w-br75gp-c-coa--yh/83Po_L3f1-7_4: Ca.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-j - maxSkew: -4712534 - topologyKey: "406" - whenUnsatisfiable: '''6Ǫ槲Ǭ9|`gɩ' + o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l: b-L7.-__-G_2kCpS__.3g + maxSkew: -554557703 + topologyKey: "423" + whenUnsatisfiable: ¹t骳ɰɰUʜʔŜ0¢ volumes: - awsElasticBlockStore: fsType: "47" @@ -881,15 +939,15 @@ spec: storagePolicyID: "104" storagePolicyName: "103" volumePath: "101" - ttlSecondsAfterFinished: -1388868268 + ttlSecondsAfterFinished: -1574276574 status: - active: -810338968 + active: -125022959 conditions: - - lastProbeTime: "2821-07-19T11:49:26Z" - lastTransitionTime: "2086-12-20T18:43:07Z" - message: "414" - reason: "413" - status: 钖 - type: ɍ颬灲Ɍ邪鳖üz - failed: 1007324766 - succeeded: -1842112975 + - lastProbeTime: "2756-02-27T11:08:58Z" + lastTransitionTime: "2296-12-01T04:10:44Z" + message: "431" + reason: "430" + status: 昒 + type: ļė[BN柌ë娒汙查o*Ĵ麻齔試 + failed: 115522160 + succeeded: 186118994 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 c46aab17dde..54dcdf673b4 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 @@ -555,31 +555,36 @@ "successThreshold": 1234551517, "failureThreshold": -1618937335 }, + "startupProbe": { + "exec": { + "command": [ + "205" + ] + }, + "httpGet": { + "path": "206", + "port": "207", + "host": "208", + "scheme": "eÞȦY籎顒", + "httpHeaders": [ + { + "name": "209", + "value": "210" + } + ] + }, + "tcpSocket": { + "port": "211", + "host": "212" + }, + "initialDelaySeconds": -1252931244, + "timeoutSeconds": 1569992019, + "periodSeconds": 1061537, + "successThreshold": 322666556, + "failureThreshold": -814446577 + }, "lifecycle": { "postStart": { - "exec": { - "command": [ - "205" - ] - }, - "httpGet": { - "path": "206", - "port": "207", - "host": "208", - "scheme": "%:;栍dʪīT捘ɍi", - "httpHeaders": [ - { - "name": "209", - "value": "210" - } - ] - }, - "tcpSocket": { - "port": "211", - "host": "212" - } - }, - "preStop": { "exec": { "command": [ "213" @@ -601,319 +606,121 @@ "port": "218", "host": "219" } - } - }, - "terminationMessagePath": "220", - "terminationMessagePolicy": "閼咎櫸eʔŊ", - "imagePullPolicy": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", - "securityContext": { - "capabilities": { - "add": [ - "瓼猀2:öY鶪5w垁鷌辪" - ], - "drop": [ - "U珝Żwʮ馜üNșƶ4ĩĉ" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "221", - "role": "222", - "type": "223", - "level": "224" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "225", - "gmsaCredentialSpec": "226", - "runAsUserName": "227" - }, - "runAsUser": -4642229086806245627, - "runAsGroup": 6165457529064596376, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "" - }, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "228", - "image": "229", - "command": [ - "230" - ], - "args": [ - "231" - ], - "workingDir": "232", - "ports": [ - { - "name": "233", - "hostPort": -1703360754, - "containerPort": -1569009987, - "protocol": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", - "hostIP": "234" - } - ], - "envFrom": [ - { - "prefix": "235", - "configMapRef": { - "name": "236", - "optional": true - }, - "secretRef": { - "name": "237", - "optional": false - } - } - ], - "env": [ - { - "name": "238", - "value": "239", - "valueFrom": { - "fieldRef": { - "apiVersion": "240", - "fieldPath": "241" - }, - "resourceFieldRef": { - "containerName": "242", - "resource": "243", - "divisor": "405" - }, - "configMapKeyRef": { - "name": "244", - "key": "245", - "optional": false - }, - "secretKeyRef": { - "name": "246", - "key": "247", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷": "948" - }, - "requests": { - "": "83" - } - }, - "volumeMounts": [ - { - "name": "248", - "mountPath": "249", - "subPath": "250", - "mountPropagation": "@ùƸʋŀ樺ȃv", - "subPathExpr": "251" - } - ], - "volumeDevices": [ - { - "name": "252", - "devicePath": "253" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": "256", - "host": "257", - "scheme": "Źʣy豎@ɀ羭,铻O", - "httpHeaders": [ - { - "name": "258", - "value": "259" - } - ] - }, - "tcpSocket": { - "port": "260", - "host": "261" - }, - "initialDelaySeconds": 1424053148, - "timeoutSeconds": 747521320, - "periodSeconds": 859639931, - "successThreshold": -1663149700, - "failureThreshold": -1131820775 - }, - "readinessProbe": { - "exec": { - "command": [ - "262" - ] - }, - "httpGet": { - "path": "263", - "port": -1710454086, - "host": "264", - "scheme": "mɩC[ó瓧", - "httpHeaders": [ - { - "name": "265", - "value": "266" - } - ] - }, - "tcpSocket": { - "port": -122979840, - "host": "267" - }, - "initialDelaySeconds": 915577348, - "timeoutSeconds": -590798124, - "periodSeconds": -1386967282, - "successThreshold": -2030286732, - "failureThreshold": -233378149 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "268" - ] - }, - "httpGet": { - "path": "269", - "port": 1385030458, - "host": "270", - "scheme": "Ao/樝fw[Řż丩ŽoǠŻ", - "httpHeaders": [ - { - "name": "271", - "value": "272" - } - ] - }, - "tcpSocket": { - "port": "273", - "host": "274" - } }, "preStop": { "exec": { "command": [ - "275" + "220" ] }, "httpGet": { - "path": "276", - "port": -1589303862, - "host": "277", - "scheme": "ľǎɳ,ǿ飏騀呣ǎ", + "path": "221", + "port": -1319998825, + "host": "222", + "scheme": "銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", "httpHeaders": [ { - "name": "278", - "value": "279" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "280", - "host": "281" + "port": 1180382332, + "host": "225" } } }, - "terminationMessagePath": "282", - "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣", + "terminationMessagePath": "226", + "terminationMessagePolicy": "H韹寬娬ï瓼猀2:öY鶪5w垁", + "imagePullPolicy": "儣廡ɑ龫`劳\u0026¼傭", "securityContext": { "capabilities": { "add": [ - "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄" + "酃=6}ɡŇƉ立hdz緄Ú|dk_瀹鞎" ], "drop": [ - "rʤî萨zvt莭琽§ć\\ ïì" + "n芞QÄȻȊ+?ƭ峧Y栲茇竛" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "283", - "role": "284", - "type": "285", - "level": "286" + "user": "227", + "role": "228", + "type": "229", + "level": "230" }, "windowsOptions": { - "gmsaCredentialSpecName": "287", - "gmsaCredentialSpec": "288", - "runAsUserName": "289" + "gmsaCredentialSpecName": "231", + "gmsaCredentialSpec": "232", + "runAsUserName": "233" }, - "runAsUser": -5738810661106213940, - "runAsGroup": 3195567116206635190, + "runAsUser": 4875570291212151521, + "runAsGroup": -593458796014416333, "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ƖN粕擓Ɩ" + "allowPrivilegeEscalation": true, + "procMount": "軶ǃ*ʙ嫙\u0026蒒5靇" }, "stdin": true, - "tty": true + "stdinOnce": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "290", - "image": "291", + "name": "234", + "image": "235", "command": [ - "292" + "236" ], "args": [ - "293" + "237" ], - "workingDir": "294", + "workingDir": "238", "ports": [ { - "name": "295", - "hostPort": -1097611426, - "containerPort": 1871952835, - "protocol": "D剂讼ɓȌʟni酛3ƁÀ*", - "hostIP": "296" + "name": "239", + "hostPort": 2126876305, + "containerPort": -2051962852, + "protocol": "貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲE'iþ", + "hostIP": "240" } ], "envFrom": [ { - "prefix": "297", + "prefix": "241", "configMapRef": { - "name": "298", - "optional": false + "name": "242", + "optional": true }, "secretRef": { - "name": "299", - "optional": true + "name": "243", + "optional": false } } ], "env": [ { - "name": "300", - "value": "301", + "name": "244", + "value": "245", "valueFrom": { "fieldRef": { - "apiVersion": "302", - "fieldPath": "303" + "apiVersion": "246", + "fieldPath": "247" }, "resourceFieldRef": { - "containerName": "304", - "resource": "305", - "divisor": "19" + "containerName": "248", + "resource": "249", + "divisor": "109" }, "configMapKeyRef": { - "name": "306", - "key": "307", + "name": "250", + "key": "251", "optional": false }, "secretKeyRef": { - "name": "308", - "key": "309", + "name": "252", + "key": "253", "optional": true } } @@ -921,212 +728,489 @@ ], "resources": { "limits": { - "Jȉ罴ņ螡źȰ?$矡ȶ网棊": "199" + "ŤǢʭ嵔棂p儼Ƿ裚瓶": "806" }, "requests": { - "ʎȺ眖R#": "985" + "ɩC": "766" } }, "volumeMounts": [ { - "name": "310", - "mountPath": "311", - "subPath": "312", - "mountPropagation": "¿", - "subPathExpr": "313" + "name": "254", + "mountPath": "255", + "subPath": "256", + "mountPropagation": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", + "subPathExpr": "257" } ], "volumeDevices": [ { - "name": "314", - "devicePath": "315" + "name": "258", + "devicePath": "259" } ], "livenessProbe": { "exec": { "command": [ - "316" + "260" ] }, "httpGet": { - "path": "317", - "port": -534498506, - "host": "318", - "scheme": "儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ", + "path": "261", + "port": -342705708, + "host": "262", + "scheme": "fw[Řż丩ŽoǠŻʘY賃ɪ鐊", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "263", + "value": "264" } ] }, "tcpSocket": { - "port": "321", - "host": "322" + "port": 88483549, + "host": "265" }, - "initialDelaySeconds": -805795167, - "timeoutSeconds": 1791615594, - "periodSeconds": 785984384, - "successThreshold": 193463975, - "failureThreshold": 1831208885 + "initialDelaySeconds": 364078113, + "timeoutSeconds": -181693648, + "periodSeconds": 828173251, + "successThreshold": -394397948, + "failureThreshold": 2040455355 }, "readinessProbe": { "exec": { "command": [ - "323" + "266" ] }, "httpGet": { - "path": "324", - "port": "325", - "host": "326", - "scheme": "更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "path": "267", + "port": 474119379, + "host": "268", + "scheme": "萭旿@掇lNdǂ\u003e5姣", "httpHeaders": [ { - "name": "327", - "value": "328" + "name": "269", + "value": "270" } ] }, "tcpSocket": { - "port": 467291328, - "host": "329" + "port": 1498833271, + "host": "271" }, - "initialDelaySeconds": -1664778008, - "timeoutSeconds": -1191528701, - "periodSeconds": -978176982, - "successThreshold": 415947324, - "failureThreshold": 18113448 + "initialDelaySeconds": 1505082076, + "timeoutSeconds": 1447898632, + "periodSeconds": 1602745893, + "successThreshold": 1599076900, + "failureThreshold": -1920661051 + }, + "startupProbe": { + "exec": { + "command": [ + "272" + ] + }, + "httpGet": { + "path": "273", + "port": "274", + "host": "275", + "scheme": "¸", + "httpHeaders": [ + { + "name": "276", + "value": "277" + } + ] + }, + "tcpSocket": { + "port": "278", + "host": "279" + }, + "initialDelaySeconds": -161753937, + "timeoutSeconds": -1578746609, + "periodSeconds": 1428207963, + "successThreshold": 790462391, + "failureThreshold": -822090785 }, "lifecycle": { "postStart": { "exec": { "command": [ - "330" + "280" ] }, "httpGet": { - "path": "331", - "port": -467985423, - "host": "332", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "281", + "port": -421846800, + "host": "282", + "scheme": "zvt莭琽§", "httpHeaders": [ { - "name": "333", - "value": "334" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": "335", - "host": "336" + "port": -763687725, + "host": "285" } }, "preStop": { "exec": { "command": [ - "337" + "286" ] }, "httpGet": { - "path": "338", - "port": 591440053, - "host": "339", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "287", + "port": -1452676801, + "host": "288", + "scheme": "ȿ0矀Kʝ", "httpHeaders": [ { - "name": "340", - "value": "341" + "name": "289", + "value": "290" } ] }, "tcpSocket": { - "port": "342", - "host": "343" + "port": "291", + "host": "292" } } }, - "terminationMessagePath": "344", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "293", + "terminationMessagePolicy": "\\p[", + "imagePullPolicy": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", "securityContext": { "capabilities": { "add": [ - "碔" + "À*f\u003c鴒翁杙Ŧ癃8" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ɱJȉ罴" ] }, "privileged": false, "seLinuxOptions": { - "user": "345", - "role": "346", - "type": "347", - "level": "348" + "user": "294", + "role": "295", + "type": "296", + "level": "297" }, "windowsOptions": { - "gmsaCredentialSpecName": "349", - "gmsaCredentialSpec": "350", - "runAsUserName": "351" + "gmsaCredentialSpecName": "298", + "gmsaCredentialSpec": "299", + "runAsUserName": "300" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -2706913289057230267, + "runAsGroup": -3689959065086680033, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "procMount": "棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅" }, - "stdinOnce": true, - "targetContainerName": "352" + "stdinOnce": true } ], - "restartPolicy": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", - "terminationGracePeriodSeconds": -1027492015449357669, - "activeDeadlineSeconds": 1968932441807931700, - "dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴", + "ephemeralContainers": [ + { + "name": "301", + "image": "302", + "command": [ + "303" + ], + "args": [ + "304" + ], + "workingDir": "305", + "ports": [ + { + "name": "306", + "hostPort": 1853396726, + "containerPort": 1330271338, + "protocol": "逴", + "hostIP": "307" + } + ], + "envFrom": [ + { + "prefix": "308", + "configMapRef": { + "name": "309", + "optional": true + }, + "secretRef": { + "name": "310", + "optional": true + } + } + ], + "env": [ + { + "name": "311", + "value": "312", + "valueFrom": { + "fieldRef": { + "apiVersion": "313", + "fieldPath": "314" + }, + "resourceFieldRef": { + "containerName": "315", + "resource": "316", + "divisor": "709" + }, + "configMapKeyRef": { + "name": "317", + "key": "318", + "optional": false + }, + "secretKeyRef": { + "name": "319", + "key": "320", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "颐o": "230" + }, + "requests": { + "[+扴ȨŮ+朷Ǝ膯ljV": "728" + } + }, + "volumeMounts": [ + { + "name": "321", + "mountPath": "322", + "subPath": "323", + "mountPropagation": "ŕ-Ɂ圯W:ĸ輦唊#v铿", + "subPathExpr": "324" + } + ], + "volumeDevices": [ + { + "name": "325", + "devicePath": "326" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "327" + ] + }, + "httpGet": { + "path": "328", + "port": "329", + "host": "330", + "scheme": "屡ʁ", + "httpHeaders": [ + { + "name": "331", + "value": "332" + } + ] + }, + "tcpSocket": { + "port": -1554559634, + "host": "333" + }, + "initialDelaySeconds": 1718241831, + "timeoutSeconds": 550615941, + "periodSeconds": 1180971695, + "successThreshold": -1971944908, + "failureThreshold": 1742259603 + }, + "readinessProbe": { + "exec": { + "command": [ + "334" + ] + }, + "httpGet": { + "path": "335", + "port": -1620315711, + "host": "336", + "scheme": "ɐ扵", + "httpHeaders": [ + { + "name": "337", + "value": "338" + } + ] + }, + "tcpSocket": { + "port": "339", + "host": "340" + }, + "initialDelaySeconds": -1358663652, + "timeoutSeconds": 1543146222, + "periodSeconds": -527306221, + "successThreshold": 2098694289, + "failureThreshold": 1150925735 + }, + "startupProbe": { + "exec": { + "command": [ + "341" + ] + }, + "httpGet": { + "path": "342", + "port": "343", + "host": "344", + "scheme": "榝$î.Ȏ蝪ʜ5遰", + "httpHeaders": [ + { + "name": "345", + "value": "346" + } + ] + }, + "tcpSocket": { + "port": -1438286448, + "host": "347" + }, + "initialDelaySeconds": 834105836, + "timeoutSeconds": -1462219068, + "periodSeconds": -370386363, + "successThreshold": 1714588921, + "failureThreshold": -1246371817 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "348" + ] + }, + "httpGet": { + "path": "349", + "port": "350", + "host": "351", + "scheme": "跩aŕ翑", + "httpHeaders": [ + { + "name": "352", + "value": "353" + } + ] + }, + "tcpSocket": { + "port": "354", + "host": "355" + } + }, + "preStop": { + "exec": { + "command": [ + "356" + ] + }, + "httpGet": { + "path": "357", + "port": 1017803158, + "host": "358", + "scheme": "碔", + "httpHeaders": [ + { + "name": "359", + "value": "360" + } + ] + }, + "tcpSocket": { + "port": "361", + "host": "362" + } + } + }, + "terminationMessagePath": "363", + "terminationMessagePolicy": "Kƙ順\\E¦队偯J僳徥淳4揻-$ɽ丟", + "imagePullPolicy": "拉Œɥ颶妧Ö闊 鰔澝qV訆", + "securityContext": { + "capabilities": { + "add": [ + "ŧL²sNƗ¸gĩ餠籲磣Óƿ" + ], + "drop": [ + "\"冓鍓贯澔 ƺ蛜6" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "364", + "role": "365", + "type": "366", + "level": "367" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "368", + "gmsaCredentialSpec": "369", + "runAsUserName": "370" + }, + "runAsUser": 4353696140684277635, + "runAsGroup": 6057650398488995896, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "鰥Z龏´DÒȗ" + }, + "tty": true, + "targetContainerName": "371" + } + ], + "restartPolicy": "ɘɢ鬍熖B芭花ª瘡", + "terminationGracePeriodSeconds": 2666412258966278206, + "activeDeadlineSeconds": -8715915045560617563, + "dnsPolicy": "丆", "nodeSelector": { - "353": "354" + "372": "373" }, - "serviceAccountName": "355", - "serviceAccount": "356", + "serviceAccountName": "374", + "serviceAccount": "375", "automountServiceAccountToken": false, - "nodeName": "357", - "hostNetwork": true, + "nodeName": "376", + "hostPID": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "358", - "role": "359", - "type": "360", - "level": "361" + "user": "377", + "role": "378", + "type": "379", + "level": "380" }, "windowsOptions": { - "gmsaCredentialSpecName": "362", - "gmsaCredentialSpec": "363", - "runAsUserName": "364" + "gmsaCredentialSpecName": "381", + "gmsaCredentialSpec": "382", + "runAsUserName": "383" }, - "runAsUser": -6241205430888228274, - "runAsGroup": 3716388262106582789, - "runAsNonRoot": true, + "runAsUser": 2179199799235189619, + "runAsGroup": -779972051078659613, + "runAsNonRoot": false, "supplementalGroups": [ - 2706433733228765005 + -7127205672279904050 ], - "fsGroup": -500234369132816308, + "fsGroup": 7124276984274024394, "sysctls": [ { - "name": "365", - "value": "366" + "name": "384", + "value": "385" } ] }, "imagePullSecrets": [ { - "name": "367" + "name": "386" } ], - "hostname": "368", - "subdomain": "369", + "hostname": "387", + "subdomain": "388", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1134,19 +1218,19 @@ { "matchExpressions": [ { - "key": "370", - "operator": "鱎ƙ;Nŕ璻Ji", + "key": "389", + "operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "values": [ - "371" + "390" ] } ], "matchFields": [ { - "key": "372", - "operator": "J", + "key": "391", + "operator": "埮pɵ{WOŭW灬p", "values": [ - "373" + "392" ] } ] @@ -1155,23 +1239,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 902978249, + "weight": 199049889, "preference": { "matchExpressions": [ { - "key": "374", - "operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6", + "key": "393", + "operator": "擭銆jʒǚ鍰\\縑", "values": [ - "375" + "394" ] } ], "matchFields": [ { - "key": "376", - "operator": "ʎǑyZ涬P­", + "key": "395", + "operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "values": [ - "377" + "396" ] } ] @@ -1184,46 +1268,43 @@ { "labelSelector": { "matchLabels": { - "05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3": "0-8-.M-.-.-v" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "1zET_..3dCv3j._.-_pP__up.2N", + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "operator": "NotIn", "values": [ - "f.p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.TV" + "z" ] } ] }, "namespaces": [ - "384" + "403" ], - "topologyKey": "385" + "topologyKey": "404" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -3478003, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J": "28_38xm-.nx.sEK4B" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81", - "operator": "NotIn", - "values": [ - "MXOnf_ZN.-_--r.E__-8" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "392" + "411" ], - "topologyKey": "393" + "topologyKey": "412" } } ] @@ -1233,109 +1314,109 @@ { "labelSelector": { "matchLabels": { - "O.Um.-__k.j._g-G-7--p9.-0": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d", - "operator": "In", - "values": [ - "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" - ] + "key": "QZ9p_6.C.e", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "400" + "419" ], - "topologyKey": "401" + "topologyKey": "420" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1078366610, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "operator": "NotIn", "values": [ - "VT3sn-0_.i__a.O2G_J" + "txb__-ex-_1_-ODgC_1-_V" ] } ] }, "namespaces": [ - "408" + "427" ], - "topologyKey": "409" + "topologyKey": "428" } } ] } }, - "schedulerName": "410", + "schedulerName": "429", "tolerations": [ { - "key": "411", - "operator": "抷qTfZȻ干m謆7", - "value": "412", - "effect": "儉ɩ柀", - "tolerationSeconds": -7411984641310969236 + "key": "430", + "operator": "堺ʣ", + "value": "431", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "413", + "ip": "432", "hostnames": [ - "414" + "433" ] } ], - "priorityClassName": "415", - "priority": -895317190, + "priorityClassName": "434", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "416" + "435" ], "searches": [ - "417" + "436" ], "options": [ { - "name": "418", - "value": "419" + "name": "437", + "value": "438" } ] }, "readinessGates": [ { - "conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "420", - "enableServiceLinks": true, - "preemptionPolicy": "qiǙĞǠ", + "runtimeClassName": "439", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "锒鿦Ršțb贇髪č": "840" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": 44905239, - "topologyKey": "421", - "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", + "maxSkew": -150478704, + "topologyKey": "440", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", - "operator": "DoesNotExist" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1343,21 +1424,22 @@ ] } }, - "ttlSecondsAfterFinished": -37906634 + "ttlSecondsAfterFinished": 920774957 } }, - "successfulJobsHistoryLimit": 1893057016, - "failedJobsHistoryLimit": -1915115520 + "successfulJobsHistoryLimit": 1613009760, + "failedJobsHistoryLimit": 1560811691 }, "status": { "active": [ { - "kind": "428", - "namespace": "429", - "name": "430", - "apiVersion": "431", - "resourceVersion": "432", - "fieldPath": "433" + "kind": "447", + "namespace": "448", + "name": "449", + "uid": "Ŋ)TiD¢ƿ媴h", + "apiVersion": "450", + "resourceVersion": "451", + "fieldPath": "452" } ] } 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 52ffc822f49..6ad978a63a2 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 090e3e45b0e..a432c8f72db 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鯹)晿5姣 - tty: true - volumeDevices: - - devicePath: "253" - name: "252" - volumeMounts: - - mountPath: "249" - mountPropagation: '@ùƸʋŀ樺ȃv' - name: "248" - subPath: "250" - subPathExpr: "251" - workingDir: "232" - dnsConfig: - nameservers: - - "416" - options: - - name: "418" - value: "419" - searches: - - "417" - dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴 - enableServiceLinks: true - ephemeralContainers: - - args: - - "293" - command: - - "292" - env: - - name: "300" - value: "301" - valueFrom: - configMapKeyRef: - key: "307" - name: "306" - optional: false - fieldRef: - apiVersion: "302" - fieldPath: "303" - resourceFieldRef: - containerName: "304" - divisor: "19" - resource: "305" - secretKeyRef: - key: "309" - name: "308" + key: "253" + name: "252" optional: true envFrom: - configMapRef: - name: "298" - optional: false - prefix: "297" - secretRef: - name: "299" + name: "242" optional: true - image: "291" - imagePullPolicy: Ļǟi& + prefix: "241" + secretRef: + name: "243" + optional: false + image: "235" + imagePullPolicy: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 lifecycle: postStart: exec: command: - - "330" + - "280" httpGet: - host: "332" + host: "282" httpHeaders: - - name: "333" - value: "334" - path: "331" - port: -467985423 - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "283" + value: "284" + path: "281" + port: -421846800 + scheme: zvt莭琽§ tcpSocket: - host: "336" - port: "335" + host: "285" + port: -763687725 preStop: exec: command: - - "337" + - "286" httpGet: - host: "339" + host: "288" httpHeaders: - - name: "340" - value: "341" - path: "338" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "289" + value: "290" + path: "287" + port: -1452676801 + scheme: ȿ0矀Kʝ tcpSocket: - host: "343" - port: "342" + host: "292" + port: "291" livenessProbe: exec: command: - - "316" - failureThreshold: 1831208885 + - "260" + failureThreshold: 2040455355 httpGet: - host: "318" + host: "262" httpHeaders: - - name: "319" - value: "320" - path: "317" - port: -534498506 - scheme: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ - initialDelaySeconds: -805795167 - periodSeconds: 785984384 - successThreshold: 193463975 + - name: "263" + value: "264" + path: "261" + port: -342705708 + scheme: fw[Řż丩ŽoǠŻʘY賃ɪ鐊 + initialDelaySeconds: 364078113 + periodSeconds: 828173251 + successThreshold: -394397948 tcpSocket: - host: "322" - port: "321" - timeoutSeconds: 1791615594 - name: "290" + host: "265" + port: 88483549 + timeoutSeconds: -181693648 + name: "234" ports: - - containerPort: 1871952835 - hostIP: "296" - hostPort: -1097611426 - name: "295" - protocol: D剂讼ɓȌʟni酛3ƁÀ* + - containerPort: -2051962852 + hostIP: "240" + hostPort: 2126876305 + name: "239" + protocol: 貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲE'iþ readinessProbe: exec: command: - - "323" - failureThreshold: 18113448 + - "266" + failureThreshold: -1920661051 httpGet: - host: "326" + host: "268" httpHeaders: - - name: "327" - value: "328" - path: "324" - port: "325" - scheme: 更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - initialDelaySeconds: -1664778008 - periodSeconds: -978176982 - successThreshold: 415947324 + - name: "269" + value: "270" + path: "267" + port: 474119379 + scheme: 萭旿@掇lNdǂ>5姣 + initialDelaySeconds: 1505082076 + periodSeconds: 1602745893 + successThreshold: 1599076900 tcpSocket: - host: "329" - port: 467291328 - timeoutSeconds: -1191528701 + host: "271" + port: 1498833271 + timeoutSeconds: 1447898632 resources: limits: - Jȉ罴ņ螡źȰ?$矡ȶ网棊: "199" + ŤǢʭ嵔棂p儼Ƿ裚瓶: "806" requests: - ʎȺ眖R#: "985" + ɩC: "766" securityContext: allowPrivilegeEscalation: true capabilities: add: - - 碔 + - À*f<鴒翁杙Ŧ癃8 drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ɱJȉ罴 privileged: false - procMount: ',ŕ' + procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅 readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: -3689959065086680033 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -2706913289057230267 seLinuxOptions: - level: "348" - role: "346" - type: "347" - user: "345" + level: "297" + role: "295" + type: "296" + user: "294" windowsOptions: - gmsaCredentialSpec: "350" - gmsaCredentialSpecName: "349" - runAsUserName: "351" + gmsaCredentialSpec: "299" + gmsaCredentialSpecName: "298" + runAsUserName: "300" + startupProbe: + exec: + command: + - "272" + failureThreshold: -822090785 + httpGet: + host: "275" + httpHeaders: + - name: "276" + value: "277" + path: "273" + port: "274" + scheme: ¸ + initialDelaySeconds: -161753937 + periodSeconds: 1428207963 + successThreshold: 790462391 + tcpSocket: + host: "279" + port: "278" + timeoutSeconds: -1578746609 stdinOnce: true - targetContainerName: "352" - terminationMessagePath: "344" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + terminationMessagePath: "293" + terminationMessagePolicy: \p[ volumeDevices: - - devicePath: "315" - name: "314" + - devicePath: "259" + name: "258" volumeMounts: - - mountPath: "311" - mountPropagation: ¿ - name: "310" - subPath: "312" - subPathExpr: "313" - workingDir: "294" + - mountPath: "255" + mountPropagation: ȫ焗捏ĨFħ籘Àǒɿʒ刽 + name: "254" + subPath: "256" + subPathExpr: "257" + workingDir: "238" + dnsConfig: + nameservers: + - "435" + options: + - name: "437" + value: "438" + searches: + - "436" + dnsPolicy: 丆 + enableServiceLinks: false + ephemeralContainers: + - args: + - "304" + command: + - "303" + env: + - name: "311" + value: "312" + valueFrom: + configMapKeyRef: + key: "318" + name: "317" + optional: false + fieldRef: + apiVersion: "313" + fieldPath: "314" + resourceFieldRef: + containerName: "315" + divisor: "709" + resource: "316" + secretKeyRef: + key: "320" + name: "319" + optional: false + envFrom: + - configMapRef: + name: "309" + optional: true + prefix: "308" + secretRef: + name: "310" + optional: true + image: "302" + imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆 + lifecycle: + postStart: + exec: + command: + - "348" + httpGet: + host: "351" + httpHeaders: + - name: "352" + value: "353" + path: "349" + port: "350" + scheme: 跩aŕ翑 + tcpSocket: + host: "355" + port: "354" + preStop: + exec: + command: + - "356" + httpGet: + host: "358" + httpHeaders: + - name: "359" + value: "360" + path: "357" + port: 1017803158 + scheme: 碔 + tcpSocket: + host: "362" + port: "361" + livenessProbe: + exec: + command: + - "327" + failureThreshold: 1742259603 + httpGet: + host: "330" + httpHeaders: + - name: "331" + value: "332" + path: "328" + port: "329" + scheme: 屡ʁ + initialDelaySeconds: 1718241831 + periodSeconds: 1180971695 + successThreshold: -1971944908 + tcpSocket: + host: "333" + port: -1554559634 + timeoutSeconds: 550615941 + name: "301" + ports: + - containerPort: 1330271338 + hostIP: "307" + hostPort: 1853396726 + name: "306" + protocol: 逴 + readinessProbe: + exec: + command: + - "334" + failureThreshold: 1150925735 + httpGet: + host: "336" + httpHeaders: + - name: "337" + value: "338" + path: "335" + port: -1620315711 + scheme: ɐ扵 + initialDelaySeconds: -1358663652 + periodSeconds: -527306221 + successThreshold: 2098694289 + tcpSocket: + host: "340" + port: "339" + timeoutSeconds: 1543146222 + resources: + limits: + 颐o: "230" + requests: + '[+扴ȨŮ+朷Ǝ膯ljV': "728" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ŧL²sNƗ¸gĩ餠籲磣Óƿ + drop: + - '"冓鍓贯澔 ƺ蛜6' + privileged: false + procMount: 鰥Z龏´DÒȗ + readOnlyRootFilesystem: true + runAsGroup: 6057650398488995896 + runAsNonRoot: true + runAsUser: 4353696140684277635 + seLinuxOptions: + level: "367" + role: "365" + type: "366" + user: "364" + windowsOptions: + gmsaCredentialSpec: "369" + gmsaCredentialSpecName: "368" + runAsUserName: "370" + startupProbe: + exec: + command: + - "341" + failureThreshold: -1246371817 + httpGet: + host: "344" + httpHeaders: + - name: "345" + value: "346" + path: "342" + port: "343" + scheme: 榝$î.Ȏ蝪ʜ5遰 + initialDelaySeconds: 834105836 + periodSeconds: -370386363 + successThreshold: 1714588921 + tcpSocket: + host: "347" + port: -1438286448 + timeoutSeconds: -1462219068 + targetContainerName: "371" + terminationMessagePath: "363" + terminationMessagePolicy: Kƙ順\E¦队偯J僳徥淳4揻-$ɽ丟 + tty: true + volumeDevices: + - devicePath: "326" + name: "325" + volumeMounts: + - mountPath: "322" + mountPropagation: ŕ-Ɂ圯W:ĸ輦唊#v铿 + name: "321" + subPath: "323" + subPathExpr: "324" + workingDir: "305" hostAliases: - hostnames: - - "414" - ip: "413" - hostNetwork: true - hostname: "368" + - "433" + ip: "432" + hostPID: true + hostname: "387" imagePullSecrets: - - name: "367" + - name: "386" initContainers: - args: - "168" @@ -544,24 +580,9 @@ spec: name: "174" optional: false image: "166" - imagePullPolicy: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 + imagePullPolicy: 儣廡ɑ龫`劳&¼傭 lifecycle: postStart: - exec: - command: - - "205" - httpGet: - host: "208" - httpHeaders: - - name: "209" - value: "210" - path: "206" - port: "207" - scheme: '%:;栍dʪīT捘ɍi' - tcpSocket: - host: "212" - port: "211" - preStop: exec: command: - "213" @@ -576,6 +597,21 @@ spec: tcpSocket: host: "219" port: "218" + preStop: + exec: + command: + - "220" + httpGet: + host: "222" + httpHeaders: + - name: "223" + value: "224" + path: "221" + port: -1319998825 + scheme: 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ + tcpSocket: + host: "225" + port: 1180382332 livenessProbe: exec: command: @@ -628,31 +664,51 @@ spec: requests: To&蕭k ź: "644" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 瓼猀2:öY鶪5w垁鷌辪 + - 酃=6}ɡŇƉ立hdz緄Ú|dk_瀹鞎 drop: - - U珝Żwʮ馜üNșƶ4ĩĉ - privileged: false - procMount: "" + - n芞QÄȻȊ+?ƭ峧Y栲茇竛 + privileged: true + procMount: 軶ǃ*ʙ嫙&蒒5靇 readOnlyRootFilesystem: false - runAsGroup: 6165457529064596376 - runAsNonRoot: false - runAsUser: -4642229086806245627 + runAsGroup: -593458796014416333 + runAsNonRoot: true + runAsUser: 4875570291212151521 seLinuxOptions: - level: "224" - role: "222" - type: "223" - user: "221" + level: "230" + role: "228" + type: "229" + user: "227" windowsOptions: - gmsaCredentialSpec: "226" - gmsaCredentialSpecName: "225" - runAsUserName: "227" + gmsaCredentialSpec: "232" + gmsaCredentialSpecName: "231" + runAsUserName: "233" + startupProbe: + exec: + command: + - "205" + failureThreshold: -814446577 + httpGet: + host: "208" + httpHeaders: + - name: "209" + value: "210" + path: "206" + port: "207" + scheme: eÞȦY籎顒 + initialDelaySeconds: -1252931244 + periodSeconds: 1061537 + successThreshold: 322666556 + tcpSocket: + host: "212" + port: "211" + timeoutSeconds: 1569992019 + stdin: true stdinOnce: true - terminationMessagePath: "220" - terminationMessagePolicy: 閼咎櫸eʔŊ - tty: true + terminationMessagePath: "226" + terminationMessagePolicy: H韹寬娬ï瓼猀2:öY鶪5w垁 volumeDevices: - devicePath: "190" name: "189" @@ -664,59 +720,61 @@ spec: subPath: "187" subPathExpr: "188" workingDir: "169" - nodeName: "357" + nodeName: "376" nodeSelector: - "353": "354" + "372": "373" overhead: - 锒鿦Ršțb贇髪č: "840" - preemptionPolicy: qiǙĞǠ - priority: -895317190 - priorityClassName: "415" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "434" readinessGates: - - conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n - restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - runtimeClassName: "420" - schedulerName: "410" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɘɢ鬍熖B芭花ª瘡 + runtimeClassName: "439" + schedulerName: "429" securityContext: - fsGroup: -500234369132816308 - runAsGroup: 3716388262106582789 - runAsNonRoot: true - runAsUser: -6241205430888228274 + fsGroup: 7124276984274024394 + runAsGroup: -779972051078659613 + runAsNonRoot: false + runAsUser: 2179199799235189619 seLinuxOptions: - level: "361" - role: "359" - type: "360" - user: "358" + level: "380" + role: "378" + type: "379" + user: "377" supplementalGroups: - - 2706433733228765005 + - -7127205672279904050 sysctls: - - name: "365" - value: "366" + - name: "384" + value: "385" windowsOptions: - gmsaCredentialSpec: "363" - gmsaCredentialSpecName: "362" - runAsUserName: "364" - serviceAccount: "356" - serviceAccountName: "355" + gmsaCredentialSpec: "382" + gmsaCredentialSpecName: "381" + runAsUserName: "383" + serviceAccount: "375" + serviceAccountName: "374" shareProcessNamespace: true - subdomain: "369" - terminationGracePeriodSeconds: -1027492015449357669 + subdomain: "388" + terminationGracePeriodSeconds: 2666412258966278206 tolerations: - - effect: 儉ɩ柀 - key: "411" - operator: 抷qTfZȻ干m謆7 - tolerationSeconds: -7411984641310969236 - value: "412" + - effect: ŽɣB矗E¸乾 + key: "430" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "431" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p - operator: DoesNotExist + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa - maxSkew: 44905239 - topologyKey: "421" - whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "440" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "65" @@ -915,16 +973,17 @@ spec: storagePolicyID: "122" storagePolicyName: "121" volumePath: "119" - ttlSecondsAfterFinished: -37906634 + ttlSecondsAfterFinished: 920774957 schedule: "19" startingDeadlineSeconds: -2555947251840004808 - successfulJobsHistoryLimit: 1893057016 + successfulJobsHistoryLimit: 1613009760 suspend: true status: active: - - apiVersion: "431" - fieldPath: "433" - kind: "428" - name: "430" - namespace: "429" - resourceVersion: "432" + - apiVersion: "450" + fieldPath: "452" + kind: "447" + name: "449" + namespace: "448" + resourceVersion: "451" + uid: Ŋ)TiD¢ƿ媴h 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 c478923fbe8..a99787f9de9 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 @@ -557,366 +557,169 @@ "successThreshold": 1596028039, "failureThreshold": 1427781619 }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "202" - ] - }, - "httpGet": { - "path": "203", - "port": "204", - "host": "205", - "scheme": "Ɖ立hdz緄Ú|dk_瀹鞎", - "httpHeaders": [ - { - "name": "206", - "value": "207" - } - ] - }, - "tcpSocket": { - "port": 1150375229, - "host": "208" - } - }, - "preStop": { - "exec": { - "command": [ - "209" - ] - }, - "httpGet": { - "path": "210", - "port": "211", - "host": "212", - "scheme": "鲡:", - "httpHeaders": [ - { - "name": "213", - "value": "214" - } - ] - }, - "tcpSocket": { - "port": -2037320199, - "host": "215" - } - } - }, - "terminationMessagePath": "216", - "terminationMessagePolicy": "@Ȗs«öʮĀ\u003cé瞾", - "imagePullPolicy": "4y£軶ǃ*ʙ嫙\u0026蒒5", - "securityContext": { - "capabilities": { - "add": [ - "'ɵK.Q貇£ȹ嫰ƹǔw÷" - ], - "drop": [ - "I粛E煹ǐƲE'iþŹʣy" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "217", - "role": "218", - "type": "219", - "level": "220" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "221", - "gmsaCredentialSpec": "222", - "runAsUserName": "223" - }, - "runAsUser": -3150075726777852858, - "runAsGroup": -4491268618106522555, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ" - }, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "224", - "image": "225", - "command": [ - "226" - ], - "args": [ - "227" - ], - "workingDir": "228", - "ports": [ - { - "name": "229", - "hostPort": -321513994, - "containerPort": 1024248645, - "protocol": "籘Àǒɿʒ刽ʼn", - "hostIP": "230" - } - ], - "envFrom": [ - { - "prefix": "231", - "configMapRef": { - "name": "232", - "optional": true - }, - "secretRef": { - "name": "233", - "optional": true - } - } - ], - "env": [ - { - "name": "234", - "value": "235", - "valueFrom": { - "fieldRef": { - "apiVersion": "236", - "fieldPath": "237" - }, - "resourceFieldRef": { - "containerName": "238", - "resource": "239", - "divisor": "103" - }, - "configMapKeyRef": { - "name": "240", - "key": "241", - "optional": false - }, - "secretKeyRef": { - "name": "242", - "key": "243", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ": "861" - }, - "requests": { - "悖ȩ0Ƹ[Ęİ榌U": "396" - } - }, - "volumeMounts": [ - { - "name": "244", - "readOnly": true, - "mountPath": "245", - "subPath": "246", - "mountPropagation": "\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐", - "subPathExpr": "247" - } - ], - "volumeDevices": [ - { - "name": "248", - "devicePath": "249" - } - ], - "livenessProbe": { + "startupProbe": { "exec": { "command": [ - "250" + "202" ] }, "httpGet": { - "path": "251", - "port": -1821078703, - "host": "252", - "scheme": "萨zvt", + "path": "203", + "port": -337353552, + "host": "204", + "scheme": "ɖȃ賲鐅臬dH巧壚tC十Oɢ", "httpHeaders": [ { - "name": "253", - "value": "254" + "name": "205", + "value": "206" } ] }, "tcpSocket": { - "port": 1182477686, - "host": "255" + "port": -586068135, + "host": "207" }, - "initialDelaySeconds": -503805926, - "timeoutSeconds": 77312514, - "periodSeconds": -763687725, - "successThreshold": -246563990, - "failureThreshold": 10098903 - }, - "readinessProbe": { - "exec": { - "command": [ - "256" - ] - }, - "httpGet": { - "path": "257", - "port": "258", - "host": "259", - "scheme": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "httpHeaders": [ - { - "name": "260", - "value": "261" - } - ] - }, - "tcpSocket": { - "port": "262", - "host": "263" - }, - "initialDelaySeconds": 932904270, - "timeoutSeconds": 1810980158, - "periodSeconds": 100356493, - "successThreshold": -110792150, - "failureThreshold": 1255258741 + "initialDelaySeconds": 1592489782, + "timeoutSeconds": 929367702, + "periodSeconds": -102814733, + "successThreshold": -152585895, + "failureThreshold": -2037320199 }, "lifecycle": { "postStart": { "exec": { "command": [ - "264" + "208" ] }, "httpGet": { - "path": "265", - "port": -498930176, - "host": "266", - "scheme": " R§耶Ff", + "path": "209", + "port": 1381010768, + "host": "210", + "scheme": "ö", "httpHeaders": [ { - "name": "267", - "value": "268" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": "269", - "host": "270" + "port": 1135182169, + "host": "213" } }, "preStop": { "exec": { "command": [ - "271" + "214" ] }, "httpGet": { - "path": "272", - "port": -331283026, - "host": "273", - "scheme": "ȉ", + "path": "215", + "port": 1054302708, + "host": "216", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": 714088955, - "host": "276" + "port": "219", + "host": "220" } } }, - "terminationMessagePath": "277", - "terminationMessagePolicy": "źȰ?$矡ȶ网棊ʢ=wǕɳ", - "imagePullPolicy": "#yV'WKw(ğ儴Ůĺ}", + "terminationMessagePath": "221", + "terminationMessagePolicy": "軶ǃ*ʙ嫙\u0026蒒5靇", + "imagePullPolicy": "ŴĿ", "securityContext": { "capabilities": { "add": [ - "胵輓Ɔ" + "Áȉ彂Ŵ廷s{Ⱦdz@ùƸ" ], "drop": [ - "" + "ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0" ] }, "privileged": true, "seLinuxOptions": { - "user": "278", - "role": "279", - "type": "280", - "level": "281" + "user": "222", + "role": "223", + "type": "224", + "level": "225" }, "windowsOptions": { - "gmsaCredentialSpecName": "282", - "gmsaCredentialSpec": "283", - "runAsUserName": "284" + "gmsaCredentialSpecName": "226", + "gmsaCredentialSpec": "227", + "runAsUserName": "228" }, - "runAsUser": -7735837526010191986, - "runAsGroup": -3460863886200664373, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" - }, - "stdin": true + "runAsUser": 6116261698850084527, + "runAsGroup": -8724223413734010757, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ" + } } ], - "ephemeralContainers": [ + "containers": [ { - "name": "285", - "image": "286", + "name": "229", + "image": "230", "command": [ - "287" + "231" ], "args": [ - "288" + "232" ], - "workingDir": "289", + "workingDir": "233", "ports": [ { - "name": "290", - "hostPort": -602419938, - "containerPort": 1040396664, - "protocol": "爻ƙt叀碧闳ȩr嚧ʣq埄", - "hostIP": "291" + "name": "234", + "hostPort": 427196286, + "containerPort": 1048864116, + "protocol": "/樝fw[Řż丩ŽoǠŻʘY賃ɪ鐊", + "hostIP": "235" } ], "envFrom": [ { - "prefix": "292", + "prefix": "236", "configMapRef": { - "name": "293", + "name": "237", "optional": true }, "secretRef": { - "name": "294", - "optional": true + "name": "238", + "optional": false } } ], "env": [ { - "name": "295", - "value": "296", + "name": "239", + "value": "240", "valueFrom": { "fieldRef": { - "apiVersion": "297", - "fieldPath": "298" + "apiVersion": "241", + "fieldPath": "242" }, "resourceFieldRef": { - "containerName": "299", - "resource": "300", - "divisor": "340" + "containerName": "243", + "resource": "244", + "divisor": "506" }, "configMapKeyRef": { - "name": "301", - "key": "302", - "optional": false + "name": "245", + "key": "246", + "optional": true }, "secretKeyRef": { - "name": "303", - "key": "304", + "name": "247", + "key": "248", "optional": true } } @@ -924,215 +727,491 @@ ], "resources": { "limits": { - "": "548" + "ƻ悖ȩ0Ƹ[": "672" }, "requests": { - "ñKJɐ扵Gƚ绤": "879" + "": "988" } }, "volumeMounts": [ { - "name": "305", - "readOnly": true, - "mountPath": "306", - "subPath": "307", - "mountPropagation": "敄lu|", - "subPathExpr": "308" + "name": "249", + "mountPath": "250", + "subPath": "251", + "mountPropagation": "髷裎$MVȟ@7飣奺Ȋ", + "subPathExpr": "252" } ], "volumeDevices": [ { - "name": "309", - "devicePath": "310" + "name": "253", + "devicePath": "254" } ], "livenessProbe": { "exec": { "command": [ - "311" + "255" ] }, "httpGet": { - "path": "312", - "port": "313", - "host": "314", - "scheme": "忊|E剒", + "path": "256", + "port": -1180080716, + "host": "257", + "scheme": "Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮", "httpHeaders": [ { - "name": "315", - "value": "316" + "name": "258", + "value": "259" } ] }, "tcpSocket": { - "port": 1004325340, - "host": "317" + "port": -161485752, + "host": "260" }, - "initialDelaySeconds": -1313320434, - "timeoutSeconds": 14304392, - "periodSeconds": 465972736, - "successThreshold": -1784617397, - "failureThreshold": 1941923625 + "initialDelaySeconds": 1524276356, + "timeoutSeconds": -521487971, + "periodSeconds": -1561418761, + "successThreshold": -1452676801, + "failureThreshold": -1171167638 }, "readinessProbe": { "exec": { "command": [ - "318" + "261" ] }, "httpGet": { - "path": "319", - "port": 432291364, - "host": "320", + "path": "262", + "port": 2141389898, + "host": "263", + "scheme": "皚|", "httpHeaders": [ { - "name": "321", - "value": "322" + "name": "264", + "value": "265" } ] }, "tcpSocket": { - "port": "323", - "host": "324" + "port": "266", + "host": "267" }, - "initialDelaySeconds": -677617960, - "timeoutSeconds": 383015301, - "periodSeconds": -1717997927, - "successThreshold": 1533365989, - "failureThreshold": 656200799 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438 + }, + "startupProbe": { + "exec": { + "command": [ + "268" + ] + }, + "httpGet": { + "path": "269", + "port": 163512962, + "host": "270", + "scheme": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "httpHeaders": [ + { + "name": "271", + "value": "272" + } + ] + }, + "tcpSocket": { + "port": "273", + "host": "274" + }, + "initialDelaySeconds": 232569106, + "timeoutSeconds": -1150474479, + "periodSeconds": 744319626, + "successThreshold": -2107743490, + "failureThreshold": 1995332035 }, "lifecycle": { "postStart": { "exec": { "command": [ - "325" + "275" ] }, "httpGet": { - "path": "326", - "port": "327", - "host": "328", - "scheme": "%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄", + "path": "276", + "port": 630004123, + "host": "277", + "scheme": "ɾģ毋Ó6dz娝嘚", "httpHeaders": [ { - "name": "329", - "value": "330" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": "331", - "host": "332" + "port": -1213051101, + "host": "280" } }, "preStop": { "exec": { "command": [ - "333" + "281" ] }, "httpGet": { - "path": "334", - "port": "335", - "host": "336", - "scheme": "锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸", + "path": "282", + "port": -1905643191, + "host": "283", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", "httpHeaders": [ { - "name": "337", - "value": "338" + "name": "284", + "value": "285" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "339" + "port": "286", + "host": "287" } } }, - "terminationMessagePath": "340", - "terminationMessagePolicy": "蚃ɣľ)酊龨δ摖ȱ", - "imagePullPolicy": "冓鍓贯", + "terminationMessagePath": "288", + "terminationMessagePolicy": "勅跦Opwǩ曬逴褜1Ø", + "imagePullPolicy": "Ǜv+8Ƥ熪军g\u003e郵[+扴ȨŮ+", "securityContext": { "capabilities": { "add": [ - "ƺ蛜6Ɖ飴ɎiǨź" + "" ], "drop": [ - "ǵɐ鰥Z" + "ljVX1虊谇j爻ƙt叀碧" ] }, "privileged": true, "seLinuxOptions": { - "user": "341", - "role": "342", - "type": "343", - "level": "344" + "user": "289", + "role": "290", + "type": "291", + "level": "292" }, "windowsOptions": { - "gmsaCredentialSpecName": "345", - "gmsaCredentialSpec": "346", - "runAsUserName": "347" + "gmsaCredentialSpecName": "293", + "gmsaCredentialSpec": "294", + "runAsUserName": "295" }, - "runAsUser": -500234369132816308, - "runAsGroup": 1006111877741141889, - "runAsNonRoot": false, + "runAsUser": 77796669038602313, + "runAsGroup": -6641599652770442851, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "ʁ岼昕ĬÇ" + }, + "stdinOnce": true + } + ], + "ephemeralContainers": [ + { + "name": "296", + "image": "297", + "command": [ + "298" + ], + "args": [ + "299" + ], + "workingDir": "300", + "ports": [ + { + "name": "301", + "hostPort": 2087800617, + "containerPort": -1491697472, + "protocol": "6", + "hostIP": "302" + } + ], + "envFrom": [ + { + "prefix": "303", + "configMapRef": { + "name": "304", + "optional": false + }, + "secretRef": { + "name": "305", + "optional": true + } + } + ], + "env": [ + { + "name": "306", + "value": "307", + "valueFrom": { + "fieldRef": { + "apiVersion": "308", + "fieldPath": "309" + }, + "resourceFieldRef": { + "containerName": "310", + "resource": "311", + "divisor": "879" + }, + "configMapKeyRef": { + "name": "312", + "key": "313", + "optional": true + }, + "secretKeyRef": { + "name": "314", + "key": "315", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ": "114" + }, + "requests": { + "Ƭƶ氩Ȩ\u003c6": "446" + } + }, + "volumeMounts": [ + { + "name": "316", + "readOnly": true, + "mountPath": "317", + "subPath": "318", + "mountPropagation": "翑0展}硐庰%皧V垾", + "subPathExpr": "319" + } + ], + "volumeDevices": [ + { + "name": "320", + "devicePath": "321" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "322" + ] + }, + "httpGet": { + "path": "323", + "port": "324", + "host": "325", + "scheme": "E¦", + "httpHeaders": [ + { + "name": "326", + "value": "327" + } + ] + }, + "tcpSocket": { + "port": "328", + "host": "329" + }, + "initialDelaySeconds": 1868887309, + "timeoutSeconds": -528664199, + "periodSeconds": -316996074, + "successThreshold": 1933968533, + "failureThreshold": 549215478 + }, + "readinessProbe": { + "exec": { + "command": [ + "330" + ] + }, + "httpGet": { + "path": "331", + "port": -374766088, + "host": "332", + "scheme": "翜舞拉Œ", + "httpHeaders": [ + { + "name": "333", + "value": "334" + } + ] + }, + "tcpSocket": { + "port": "335", + "host": "336" + }, + "initialDelaySeconds": -190183379, + "timeoutSeconds": -940334911, + "periodSeconds": -341287812, + "successThreshold": 2030115750, + "failureThreshold": 1847163341 + }, + "startupProbe": { + "exec": { + "command": [ + "337" + ] + }, + "httpGet": { + "path": "338", + "port": 567263590, + "host": "339", + "scheme": "KŅ/", + "httpHeaders": [ + { + "name": "340", + "value": "341" + } + ] + }, + "tcpSocket": { + "port": "342", + "host": "343" + }, + "initialDelaySeconds": -1894250541, + "timeoutSeconds": 1962818731, + "periodSeconds": 1315054653, + "successThreshold": 711020087, + "failureThreshold": 1103049140 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "344" + ] + }, + "httpGet": { + "path": "345", + "port": -2128108224, + "host": "346", + "scheme": "δ摖", + "httpHeaders": [ + { + "name": "347", + "value": "348" + } + ] + }, + "tcpSocket": { + "port": "349", + "host": "350" + } + }, + "preStop": { + "exec": { + "command": [ + "351" + ] + }, + "httpGet": { + "path": "352", + "port": "353", + "host": "354", + "httpHeaders": [ + { + "name": "355", + "value": "356" + } + ] + }, + "tcpSocket": { + "port": "357", + "host": "358" + } + } + }, + "terminationMessagePath": "359", + "terminationMessagePolicy": "ƺ蛜6Ɖ飴ɎiǨź", + "imagePullPolicy": "囌{屿oiɥ嵐sC", + "securityContext": { + "capabilities": { + "add": [ + "Ǻ鱎ƙ;Nŕ" + ], + "drop": [ + "Jih亏yƕ丆録²" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "360", + "role": "361", + "type": "362", + "level": "363" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "364", + "gmsaCredentialSpec": "365", + "runAsUserName": "366" + }, + "runAsUser": -607313695104609402, + "runAsGroup": 2179199799235189619, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²" + "procMount": "砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­" }, "stdin": true, "stdinOnce": true, - "tty": true, - "targetContainerName": "348" + "targetContainerName": "367" } ], - "restartPolicy": "ǦŐnj汰8ŕİi騎C\"", - "terminationGracePeriodSeconds": 2582126978155733738, - "activeDeadlineSeconds": 3168496047243051519, - "dnsPolicy": "Ǒ", + "restartPolicy": "幩šeSvEȤƏ埮pɵ", + "terminationGracePeriodSeconds": -3123571459188372202, + "activeDeadlineSeconds": 4755717378804967849, + "dnsPolicy": "ʐşƧ", "nodeSelector": { - "349": "350" + "368": "369" }, - "serviceAccountName": "351", - "serviceAccount": "352", - "automountServiceAccountToken": false, - "nodeName": "353", + "serviceAccountName": "370", + "serviceAccount": "371", + "automountServiceAccountToken": true, + "nodeName": "372", + "hostNetwork": true, "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "354", - "role": "355", - "type": "356", - "level": "357" + "user": "373", + "role": "374", + "type": "375", + "level": "376" }, "windowsOptions": { - "gmsaCredentialSpecName": "358", - "gmsaCredentialSpec": "359", - "runAsUserName": "360" + "gmsaCredentialSpecName": "377", + "gmsaCredentialSpec": "378", + "runAsUserName": "379" }, - "runAsUser": 4608737617101049023, - "runAsGroup": 3557544419897236324, + "runAsUser": 1287380841622288898, + "runAsGroup": 2006200781539567705, "runAsNonRoot": true, "supplementalGroups": [ - 5014869561632118364 + 6618112330449141397 ], - "fsGroup": -1335795712555820375, + "fsGroup": -5265121980497361308, "sysctls": [ { - "name": "361", - "value": "362" + "name": "380", + "value": "381" } ] }, "imagePullSecrets": [ { - "name": "363" + "name": "382" } ], - "hostname": "364", - "subdomain": "365", + "hostname": "383", + "subdomain": "384", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1140,19 +1219,19 @@ { "matchExpressions": [ { - "key": "366", - "operator": "", + "key": "385", + "operator": "餑噭DµņP)", "values": [ - "367" + "386" ] } ], "matchFields": [ { - "key": "368", - "operator": "{WOŭW灬pȭCV擭銆jʒǚ鍰", + "key": "387", + "operator": "ƷƣMț", "values": [ - "369" + "388" ] } ] @@ -1161,23 +1240,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1330095135, + "weight": -1588068441, "preference": { "matchExpressions": [ { - "key": "370", - "operator": "撑¼蠾8餑噭", + "key": "389", + "operator": "W疪鑳w妕眵", "values": [ - "371" + "390" ] } ], "matchFields": [ { - "key": "372", - "operator": "ɪǹ0衷,ƷƣMț譎懚XW疪鑳w", + "key": "391", + "operator": "躒訙Ǫʓ)ǂť嗆u8晲T[irȎ", "values": [ - "373" + "392" ] } ] @@ -1190,43 +1269,43 @@ { "labelSelector": { "matchLabels": { - "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" + "W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p": "H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v" }, "matchExpressions": [ { - "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", - "operator": "NotIn", - "values": [ - "z" - ] + "key": "39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97", + "operator": "Exists" } ] }, "namespaces": [ - "380" + "399" ], - "topologyKey": "381" + "topologyKey": "400" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -217760519, + "weight": 2102595797, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" + "5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3": "8.3_t_-l..-.DG7r-3.----._4__Xn" }, "matchExpressions": [ { - "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", - "operator": "DoesNotExist" + "key": "Ue_l2.._8s--Z", + "operator": "In", + "values": [ + "A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a" + ] } ] }, "namespaces": [ - "388" + "407" ], - "topologyKey": "389" + "topologyKey": "408" } } ] @@ -1236,109 +1315,106 @@ { "labelSelector": { "matchLabels": { - "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" + "D-0": "P.-.C_--.5" }, "matchExpressions": [ { - "key": "QZ9p_6.C.e", - "operator": "DoesNotExist" + "key": "d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX", + "operator": "NotIn", + "values": [ + "1_xJ1-lFA_Xf3.V0H2-.zHw.H__7" + ] } ] }, "namespaces": [ - "396" + "415" ], - "topologyKey": "397" + "topologyKey": "416" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1851436166, + "weight": 754095416, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" + "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": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", - "operator": "NotIn", - "values": [ - "txb__-ex-_1_-ODgC_1-_V" - ] + "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" } ] }, "namespaces": [ - "404" + "423" ], - "topologyKey": "405" + "topologyKey": "424" } } ] } }, - "schedulerName": "406", + "schedulerName": "425", "tolerations": [ { - "key": "407", - "operator": "堺ʣ", - "value": "408", - "effect": "ŽɣB矗E¸乾", - "tolerationSeconds": -3532804738923434397 + "key": "426", + "operator": "z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜", + "value": "427", + "effect": "ǣʛsĊ剞鮧軷șlļė[BN柌ë", + "tolerationSeconds": -9161243904952859304 } ], "hostAliases": [ { - "ip": "409", + "ip": "428", "hostnames": [ - "410" + "429" ] } ], - "priorityClassName": "411", - "priority": -1852730577, + "priorityClassName": "430", + "priority": -966330786, "dnsConfig": { "nameservers": [ - "412" + "431" ], "searches": [ - "413" + "432" ], "options": [ { - "name": "414", - "value": "415" + "name": "433", + "value": "434" } ] }, "readinessGates": [ { - "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" + "conditionType": "齔試ŭ" } ], - "runtimeClassName": "416", + "runtimeClassName": "435", "enableServiceLinks": false, - "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", + "preemptionPolicy": "鬙Ǒȃ绡\u003e堵zŕƧ钖孝0蛮xAǫ", "overhead": { - "4'ď曕椐敛n湙": "310" + "tŧK剛Ʀ魨练脨,Ƃ3貊": "972" }, "topologySpreadConstraints": [ { - "maxSkew": -150478704, - "topologyKey": "417", - "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", + "maxSkew": 2088809792, + "topologyKey": "436", + "whenUnsatisfiable": "縊CkǚŨ镦", "labelSelector": { "matchLabels": { - "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" + "rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP": "q-JM" }, "matchExpressions": [ { - "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", - "operator": "In", - "values": [ - "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" - ] + "key": "RT.0zo", + "operator": "DoesNotExist" } ] } @@ -1346,7 +1422,7 @@ ] } }, - "ttlSecondsAfterFinished": 920774957 + "ttlSecondsAfterFinished": 246849509 } } } \ 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 ecf2431ca28..cf8be183a20 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 16816d66ae2..5cc07467e43 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 @@ -104,412 +104,450 @@ template: selfLink: "45" uid: Ȗ脵鴈Ō spec: - activeDeadlineSeconds: 3168496047243051519 + activeDeadlineSeconds: 4755717378804967849 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "370" - operator: 撑¼蠾8餑噭 + - key: "389" + operator: W疪鑳w妕眵 values: - - "371" + - "390" matchFields: - - key: "372" - operator: ɪǹ0衷,ƷƣMț譎懚XW疪鑳w + - key: "391" + operator: 躒訙Ǫʓ)ǂť嗆u8晲T[irȎ values: - - "373" - weight: -1330095135 + - "392" + weight: -1588068441 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "366" - operator: "" + - key: "385" + operator: 餑噭DµņP) values: - - "367" + - "386" matchFields: - - key: "368" - operator: '{WOŭW灬pȭCV擭銆jʒǚ鍰' + - key: "387" + operator: ƷƣMț values: - - "369" + - "388" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - operator: DoesNotExist + - key: Ue_l2.._8s--Z + operator: In + values: + - A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a matchLabels: - 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP + 5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3: 8.3_t_-l..-.DG7r-3.----._4__Xn namespaces: - - "388" - topologyKey: "389" - weight: -217760519 + - "407" + topologyKey: "408" + weight: 2102595797 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - operator: NotIn - values: - - z + - key: 39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97 + operator: Exists matchLabels: - 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r + W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p: H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v namespaces: - - "380" - topologyKey: "381" + - "399" + topologyKey: "400" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - operator: NotIn - values: - - txb__-ex-_1_-ODgC_1-_V + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "404" - topologyKey: "405" - weight: -1851436166 + - "423" + topologyKey: "424" + weight: 754095416 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: QZ9p_6.C.e - operator: DoesNotExist + - key: d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX + operator: NotIn + values: + - 1_xJ1-lFA_Xf3.V0H2-.zHw.H__7 matchLabels: - 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n + D-0: P.-.C_--.5 namespaces: - - "396" - topologyKey: "397" - automountServiceAccountToken: false + - "415" + topologyKey: "416" + automountServiceAccountToken: true containers: - args: - - "227" + - "232" command: - - "226" + - "231" env: - - name: "234" - value: "235" + - name: "239" + value: "240" valueFrom: configMapKeyRef: - key: "241" - name: "240" - optional: false + key: "246" + name: "245" + optional: true fieldRef: - apiVersion: "236" - fieldPath: "237" + apiVersion: "241" + fieldPath: "242" resourceFieldRef: - containerName: "238" - divisor: "103" - resource: "239" + containerName: "243" + divisor: "506" + resource: "244" secretKeyRef: - key: "243" - name: "242" - optional: false - envFrom: - - configMapRef: - name: "232" - optional: true - prefix: "231" - secretRef: - name: "233" - optional: true - image: "225" - imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}' - lifecycle: - postStart: - exec: - command: - - "264" - httpGet: - host: "266" - httpHeaders: - - name: "267" - value: "268" - path: "265" - port: -498930176 - scheme: ' R§耶Ff' - tcpSocket: - host: "270" - port: "269" - preStop: - exec: - command: - - "271" - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: -331283026 - scheme: ȉ - tcpSocket: - host: "276" - port: 714088955 - livenessProbe: - exec: - command: - - "250" - failureThreshold: 10098903 - httpGet: - host: "252" - httpHeaders: - - name: "253" - value: "254" - path: "251" - port: -1821078703 - scheme: 萨zvt - initialDelaySeconds: -503805926 - periodSeconds: -763687725 - successThreshold: -246563990 - tcpSocket: - host: "255" - port: 1182477686 - timeoutSeconds: 77312514 - name: "224" - ports: - - containerPort: 1024248645 - hostIP: "230" - hostPort: -321513994 - name: "229" - protocol: 籘Àǒɿʒ刽ʼn - readinessProbe: - exec: - command: - - "256" - failureThreshold: 1255258741 - httpGet: - host: "259" - httpHeaders: - - name: "260" - value: "261" - path: "257" - port: "258" - scheme: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - initialDelaySeconds: 932904270 - periodSeconds: 100356493 - successThreshold: -110792150 - tcpSocket: - host: "263" - port: "262" - timeoutSeconds: 1810980158 - resources: - limits: - x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ: "861" - requests: - 悖ȩ0Ƹ[Ęİ榌U: "396" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 胵輓Ɔ - drop: - - "" - privileged: true - procMount: g>郵[+扴ȨŮ+朷Ǝ膯lj - readOnlyRootFilesystem: true - runAsGroup: -3460863886200664373 - runAsNonRoot: false - runAsUser: -7735837526010191986 - seLinuxOptions: - level: "281" - role: "279" - type: "280" - user: "278" - windowsOptions: - gmsaCredentialSpec: "283" - gmsaCredentialSpecName: "282" - runAsUserName: "284" - stdin: true - terminationMessagePath: "277" - terminationMessagePolicy: źȰ?$矡ȶ网棊ʢ=wǕɳ - volumeDevices: - - devicePath: "249" - name: "248" - volumeMounts: - - mountPath: "245" - mountPropagation: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐' - name: "244" - readOnly: true - subPath: "246" - subPathExpr: "247" - workingDir: "228" - dnsConfig: - nameservers: - - "412" - options: - - name: "414" - value: "415" - searches: - - "413" - dnsPolicy: Ǒ - enableServiceLinks: false - ephemeralContainers: - - args: - - "288" - command: - - "287" - env: - - name: "295" - value: "296" - valueFrom: - configMapKeyRef: - key: "302" - name: "301" - optional: false - fieldRef: - apiVersion: "297" - fieldPath: "298" - resourceFieldRef: - containerName: "299" - divisor: "340" - resource: "300" - secretKeyRef: - key: "304" - name: "303" + key: "248" + name: "247" optional: true envFrom: - configMapRef: - name: "293" + name: "237" optional: true - prefix: "292" + prefix: "236" secretRef: - name: "294" - optional: true - image: "286" - imagePullPolicy: 冓鍓贯 + name: "238" + optional: false + image: "230" + imagePullPolicy: Ǜv+8Ƥ熪军g>郵[+扴ȨŮ+ lifecycle: postStart: exec: command: - - "325" + - "275" httpGet: - host: "328" + host: "277" httpHeaders: - - name: "329" - value: "330" - path: "326" - port: "327" - scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄' + - name: "278" + value: "279" + path: "276" + port: 630004123 + scheme: ɾģ毋Ó6dz娝嘚 tcpSocket: - host: "332" - port: "331" + host: "280" + port: -1213051101 preStop: exec: command: - - "333" + - "281" httpGet: - host: "336" + host: "283" httpHeaders: - - name: "337" - value: "338" - path: "334" - port: "335" - scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸 + - name: "284" + value: "285" + path: "282" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 tcpSocket: - host: "339" - port: 1315054653 + host: "287" + port: "286" livenessProbe: exec: command: - - "311" - failureThreshold: 1941923625 + - "255" + failureThreshold: -1171167638 httpGet: - host: "314" + host: "257" httpHeaders: - - name: "315" - value: "316" - path: "312" - port: "313" - scheme: 忊|E剒 - initialDelaySeconds: -1313320434 - periodSeconds: 465972736 - successThreshold: -1784617397 + - name: "258" + value: "259" + path: "256" + port: -1180080716 + scheme: Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮 + initialDelaySeconds: 1524276356 + periodSeconds: -1561418761 + successThreshold: -1452676801 tcpSocket: - host: "317" - port: 1004325340 - timeoutSeconds: 14304392 - name: "285" + host: "260" + port: -161485752 + timeoutSeconds: -521487971 + name: "229" ports: - - containerPort: 1040396664 - hostIP: "291" - hostPort: -602419938 - name: "290" - protocol: 爻ƙt叀碧闳ȩr嚧ʣq埄 + - containerPort: 1048864116 + hostIP: "235" + hostPort: 427196286 + name: "234" + protocol: /樝fw[Řż丩ŽoǠŻʘY賃ɪ鐊 readinessProbe: exec: command: - - "318" - failureThreshold: 656200799 + - "261" + failureThreshold: 59664438 httpGet: - host: "320" + host: "263" httpHeaders: - - name: "321" - value: "322" - path: "319" - port: 432291364 - initialDelaySeconds: -677617960 - periodSeconds: -1717997927 - successThreshold: 1533365989 + - name: "264" + value: "265" + path: "262" + port: 2141389898 + scheme: 皚| + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 tcpSocket: - host: "324" - port: "323" - timeoutSeconds: 383015301 + host: "267" + port: "266" + timeoutSeconds: 1146016612 resources: limits: - "": "548" + ƻ悖ȩ0Ƹ[: "672" requests: - ñKJɐ扵Gƚ绤: "879" + "": "988" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ƺ蛜6Ɖ飴ɎiǨź + - "" drop: - - ǵɐ鰥Z + - ljVX1虊谇j爻ƙt叀碧 privileged: true - procMount: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² - readOnlyRootFilesystem: true - runAsGroup: 1006111877741141889 - runAsNonRoot: false - runAsUser: -500234369132816308 + procMount: ʁ岼昕ĬÇ + readOnlyRootFilesystem: false + runAsGroup: -6641599652770442851 + runAsNonRoot: true + runAsUser: 77796669038602313 seLinuxOptions: - level: "344" - role: "342" - type: "343" - user: "341" + level: "292" + role: "290" + type: "291" + user: "289" windowsOptions: - gmsaCredentialSpec: "346" - gmsaCredentialSpecName: "345" - runAsUserName: "347" + gmsaCredentialSpec: "294" + gmsaCredentialSpecName: "293" + runAsUserName: "295" + startupProbe: + exec: + command: + - "268" + failureThreshold: 1995332035 + httpGet: + host: "270" + httpHeaders: + - name: "271" + value: "272" + path: "269" + port: 163512962 + scheme: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' + initialDelaySeconds: 232569106 + periodSeconds: 744319626 + successThreshold: -2107743490 + tcpSocket: + host: "274" + port: "273" + timeoutSeconds: -1150474479 + stdinOnce: true + terminationMessagePath: "288" + terminationMessagePolicy: 勅跦Opwǩ曬逴褜1Ø + volumeDevices: + - devicePath: "254" + name: "253" + volumeMounts: + - mountPath: "250" + mountPropagation: 髷裎$MVȟ@7飣奺Ȋ + name: "249" + subPath: "251" + subPathExpr: "252" + workingDir: "233" + dnsConfig: + nameservers: + - "431" + options: + - name: "433" + value: "434" + searches: + - "432" + dnsPolicy: ʐşƧ + enableServiceLinks: false + ephemeralContainers: + - args: + - "299" + command: + - "298" + env: + - name: "306" + value: "307" + valueFrom: + configMapKeyRef: + key: "313" + name: "312" + optional: true + fieldRef: + apiVersion: "308" + fieldPath: "309" + resourceFieldRef: + containerName: "310" + divisor: "879" + resource: "311" + secretKeyRef: + key: "315" + name: "314" + optional: false + envFrom: + - configMapRef: + name: "304" + optional: false + prefix: "303" + secretRef: + name: "305" + optional: true + image: "297" + imagePullPolicy: 囌{屿oiɥ嵐sC + lifecycle: + postStart: + exec: + command: + - "344" + httpGet: + host: "346" + httpHeaders: + - name: "347" + value: "348" + path: "345" + port: -2128108224 + scheme: δ摖 + tcpSocket: + host: "350" + port: "349" + preStop: + exec: + command: + - "351" + httpGet: + host: "354" + httpHeaders: + - name: "355" + value: "356" + path: "352" + port: "353" + tcpSocket: + host: "358" + port: "357" + livenessProbe: + exec: + command: + - "322" + failureThreshold: 549215478 + httpGet: + host: "325" + httpHeaders: + - name: "326" + value: "327" + path: "323" + port: "324" + scheme: E¦ + initialDelaySeconds: 1868887309 + periodSeconds: -316996074 + successThreshold: 1933968533 + tcpSocket: + host: "329" + port: "328" + timeoutSeconds: -528664199 + name: "296" + ports: + - containerPort: -1491697472 + hostIP: "302" + hostPort: 2087800617 + name: "301" + protocol: "6" + readinessProbe: + exec: + command: + - "330" + failureThreshold: 1847163341 + httpGet: + host: "332" + httpHeaders: + - name: "333" + value: "334" + path: "331" + port: -374766088 + scheme: 翜舞拉Œ + initialDelaySeconds: -190183379 + periodSeconds: -341287812 + successThreshold: 2030115750 + tcpSocket: + host: "336" + port: "335" + timeoutSeconds: -940334911 + resources: + limits: + u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ: "114" + requests: + Ƭƶ氩Ȩ<6: "446" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - Ǻ鱎ƙ;Nŕ + drop: + - Jih亏yƕ丆録² + privileged: false + procMount: 砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­ + readOnlyRootFilesystem: true + runAsGroup: 2179199799235189619 + runAsNonRoot: true + runAsUser: -607313695104609402 + seLinuxOptions: + level: "363" + role: "361" + type: "362" + user: "360" + windowsOptions: + gmsaCredentialSpec: "365" + gmsaCredentialSpecName: "364" + runAsUserName: "366" + startupProbe: + exec: + command: + - "337" + failureThreshold: 1103049140 + httpGet: + host: "339" + httpHeaders: + - name: "340" + value: "341" + path: "338" + port: 567263590 + scheme: KŅ/ + initialDelaySeconds: -1894250541 + periodSeconds: 1315054653 + successThreshold: 711020087 + tcpSocket: + host: "343" + port: "342" + timeoutSeconds: 1962818731 stdin: true stdinOnce: true - targetContainerName: "348" - terminationMessagePath: "340" - terminationMessagePolicy: 蚃ɣľ)酊龨δ摖ȱ - tty: true + targetContainerName: "367" + terminationMessagePath: "359" + terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź volumeDevices: - - devicePath: "310" - name: "309" + - devicePath: "321" + name: "320" volumeMounts: - - mountPath: "306" - mountPropagation: 敄lu| - name: "305" + - mountPath: "317" + mountPropagation: 翑0展}硐庰%皧V垾 + name: "316" readOnly: true - subPath: "307" - subPathExpr: "308" - workingDir: "289" + subPath: "318" + subPathExpr: "319" + workingDir: "300" hostAliases: - hostnames: - - "410" - ip: "409" - hostIPC: true + - "429" + ip: "428" + hostNetwork: true hostPID: true - hostname: "364" + hostname: "383" imagePullSecrets: - - name: "363" + - name: "382" initContainers: - args: - "167" @@ -543,38 +581,37 @@ template: name: "173" optional: true image: "165" - imagePullPolicy: 4y£軶ǃ*ʙ嫙&蒒5 + imagePullPolicy: ŴĿ lifecycle: postStart: exec: command: - - "202" + - "208" httpGet: - host: "205" + host: "210" httpHeaders: - - name: "206" - value: "207" - path: "203" - port: "204" - scheme: Ɖ立hdz緄Ú|dk_瀹鞎 + - name: "211" + value: "212" + path: "209" + port: 1381010768 + scheme: ö tcpSocket: - host: "208" - port: 1150375229 + host: "213" + port: 1135182169 preStop: exec: command: - - "209" + - "214" httpGet: - host: "212" + host: "216" httpHeaders: - - name: "213" - value: "214" - path: "210" - port: "211" - scheme: '鲡:' + - name: "217" + value: "218" + path: "215" + port: 1054302708 tcpSocket: - host: "215" - port: -2037320199 + host: "220" + port: "219" livenessProbe: exec: command: @@ -628,31 +665,49 @@ template: requests: T捘ɍi縱ù墴: "848" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - '''ɵK.Q貇£ȹ嫰ƹǔw÷' + - Áȉ彂Ŵ廷s{Ⱦdz@ùƸ drop: - - I粛E煹ǐƲE'iþŹʣy - privileged: false - procMount: ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ - readOnlyRootFilesystem: true - runAsGroup: -4491268618106522555 + - ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0 + privileged: true + procMount: 邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ + readOnlyRootFilesystem: false + runAsGroup: -8724223413734010757 runAsNonRoot: true - runAsUser: -3150075726777852858 + runAsUser: 6116261698850084527 seLinuxOptions: - level: "220" - role: "218" - type: "219" - user: "217" + level: "225" + role: "223" + type: "224" + user: "222" windowsOptions: - gmsaCredentialSpec: "222" - gmsaCredentialSpecName: "221" - runAsUserName: "223" - stdinOnce: true - terminationMessagePath: "216" - terminationMessagePolicy: '@Ȗs«öʮĀ<é瞾' - tty: true + gmsaCredentialSpec: "227" + gmsaCredentialSpecName: "226" + runAsUserName: "228" + startupProbe: + exec: + command: + - "202" + failureThreshold: -2037320199 + httpGet: + host: "204" + httpHeaders: + - name: "205" + value: "206" + path: "203" + port: -337353552 + scheme: ɖȃ賲鐅臬dH巧壚tC十Oɢ + initialDelaySeconds: 1592489782 + periodSeconds: -102814733 + successThreshold: -152585895 + tcpSocket: + host: "207" + port: -586068135 + timeoutSeconds: 929367702 + terminationMessagePath: "221" + terminationMessagePolicy: 軶ǃ*ʙ嫙&蒒5靇 volumeDevices: - devicePath: "189" name: "188" @@ -664,61 +719,59 @@ template: subPath: "186" subPathExpr: "187" workingDir: "168" - nodeName: "353" + nodeName: "372" nodeSelector: - "349": "350" + "368": "369" overhead: - 4'ď曕椐敛n湙: "310" - preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' - priority: -1852730577 - priorityClassName: "411" + tŧK剛Ʀ魨练脨,Ƃ3貊: "972" + preemptionPolicy: 鬙Ǒȃ绡>堵zŕƧ钖孝0蛮xAǫ + priority: -966330786 + priorityClassName: "430" readinessGates: - - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - restartPolicy: ǦŐnj汰8ŕİi騎C" - runtimeClassName: "416" - schedulerName: "406" + - conditionType: 齔試ŭ + restartPolicy: 幩šeSvEȤƏ埮pɵ + runtimeClassName: "435" + schedulerName: "425" securityContext: - fsGroup: -1335795712555820375 - runAsGroup: 3557544419897236324 + fsGroup: -5265121980497361308 + runAsGroup: 2006200781539567705 runAsNonRoot: true - runAsUser: 4608737617101049023 + runAsUser: 1287380841622288898 seLinuxOptions: - level: "357" - role: "355" - type: "356" - user: "354" + level: "376" + role: "374" + type: "375" + user: "373" supplementalGroups: - - 5014869561632118364 + - 6618112330449141397 sysctls: - - name: "361" - value: "362" + - name: "380" + value: "381" windowsOptions: - gmsaCredentialSpec: "359" - gmsaCredentialSpecName: "358" - runAsUserName: "360" - serviceAccount: "352" - serviceAccountName: "351" - shareProcessNamespace: false - subdomain: "365" - terminationGracePeriodSeconds: 2582126978155733738 + gmsaCredentialSpec: "378" + gmsaCredentialSpecName: "377" + runAsUserName: "379" + serviceAccount: "371" + serviceAccountName: "370" + shareProcessNamespace: true + subdomain: "384" + terminationGracePeriodSeconds: -3123571459188372202 tolerations: - - effect: ŽɣB矗E¸乾 - key: "407" - operator: 堺ʣ - tolerationSeconds: -3532804738923434397 - value: "408" + - effect: ǣʛsĊ剞鮧軷șlļė[BN柌ë + key: "426" + operator: z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜 + tolerationSeconds: -9161243904952859304 + value: "427" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - operator: In - values: - - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ + - key: RT.0zo + operator: DoesNotExist matchLabels: - p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU - maxSkew: -150478704 - topologyKey: "417" - whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ + rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP: q-JM + maxSkew: 2088809792 + topologyKey: "436" + whenUnsatisfiable: 縊CkǚŨ镦 volumes: - awsElasticBlockStore: fsType: "64" @@ -920,4 +973,4 @@ template: storagePolicyID: "121" storagePolicyName: "120" volumePath: "118" - ttlSecondsAfterFinished: 920774957 + ttlSecondsAfterFinished: 246849509 diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json index 6eedd44660e..b559a97f688 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.json @@ -555,31 +555,36 @@ "successThreshold": 1234551517, "failureThreshold": -1618937335 }, + "startupProbe": { + "exec": { + "command": [ + "205" + ] + }, + "httpGet": { + "path": "206", + "port": "207", + "host": "208", + "scheme": "eÞȦY籎顒", + "httpHeaders": [ + { + "name": "209", + "value": "210" + } + ] + }, + "tcpSocket": { + "port": "211", + "host": "212" + }, + "initialDelaySeconds": -1252931244, + "timeoutSeconds": 1569992019, + "periodSeconds": 1061537, + "successThreshold": 322666556, + "failureThreshold": -814446577 + }, "lifecycle": { "postStart": { - "exec": { - "command": [ - "205" - ] - }, - "httpGet": { - "path": "206", - "port": "207", - "host": "208", - "scheme": "%:;栍dʪīT捘ɍi", - "httpHeaders": [ - { - "name": "209", - "value": "210" - } - ] - }, - "tcpSocket": { - "port": "211", - "host": "212" - } - }, - "preStop": { "exec": { "command": [ "213" @@ -601,319 +606,121 @@ "port": "218", "host": "219" } - } - }, - "terminationMessagePath": "220", - "terminationMessagePolicy": "閼咎櫸eʔŊ", - "imagePullPolicy": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", - "securityContext": { - "capabilities": { - "add": [ - "瓼猀2:öY鶪5w垁鷌辪" - ], - "drop": [ - "U珝Żwʮ馜üNșƶ4ĩĉ" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "221", - "role": "222", - "type": "223", - "level": "224" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "225", - "gmsaCredentialSpec": "226", - "runAsUserName": "227" - }, - "runAsUser": -4642229086806245627, - "runAsGroup": 6165457529064596376, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "" - }, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "228", - "image": "229", - "command": [ - "230" - ], - "args": [ - "231" - ], - "workingDir": "232", - "ports": [ - { - "name": "233", - "hostPort": -1703360754, - "containerPort": -1569009987, - "protocol": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", - "hostIP": "234" - } - ], - "envFrom": [ - { - "prefix": "235", - "configMapRef": { - "name": "236", - "optional": true - }, - "secretRef": { - "name": "237", - "optional": false - } - } - ], - "env": [ - { - "name": "238", - "value": "239", - "valueFrom": { - "fieldRef": { - "apiVersion": "240", - "fieldPath": "241" - }, - "resourceFieldRef": { - "containerName": "242", - "resource": "243", - "divisor": "405" - }, - "configMapKeyRef": { - "name": "244", - "key": "245", - "optional": false - }, - "secretKeyRef": { - "name": "246", - "key": "247", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷": "948" - }, - "requests": { - "": "83" - } - }, - "volumeMounts": [ - { - "name": "248", - "mountPath": "249", - "subPath": "250", - "mountPropagation": "@ùƸʋŀ樺ȃv", - "subPathExpr": "251" - } - ], - "volumeDevices": [ - { - "name": "252", - "devicePath": "253" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": "256", - "host": "257", - "scheme": "Źʣy豎@ɀ羭,铻O", - "httpHeaders": [ - { - "name": "258", - "value": "259" - } - ] - }, - "tcpSocket": { - "port": "260", - "host": "261" - }, - "initialDelaySeconds": 1424053148, - "timeoutSeconds": 747521320, - "periodSeconds": 859639931, - "successThreshold": -1663149700, - "failureThreshold": -1131820775 - }, - "readinessProbe": { - "exec": { - "command": [ - "262" - ] - }, - "httpGet": { - "path": "263", - "port": -1710454086, - "host": "264", - "scheme": "mɩC[ó瓧", - "httpHeaders": [ - { - "name": "265", - "value": "266" - } - ] - }, - "tcpSocket": { - "port": -122979840, - "host": "267" - }, - "initialDelaySeconds": 915577348, - "timeoutSeconds": -590798124, - "periodSeconds": -1386967282, - "successThreshold": -2030286732, - "failureThreshold": -233378149 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "268" - ] - }, - "httpGet": { - "path": "269", - "port": 1385030458, - "host": "270", - "scheme": "Ao/樝fw[Řż丩ŽoǠŻ", - "httpHeaders": [ - { - "name": "271", - "value": "272" - } - ] - }, - "tcpSocket": { - "port": "273", - "host": "274" - } }, "preStop": { "exec": { "command": [ - "275" + "220" ] }, "httpGet": { - "path": "276", - "port": -1589303862, - "host": "277", - "scheme": "ľǎɳ,ǿ飏騀呣ǎ", + "path": "221", + "port": -1319998825, + "host": "222", + "scheme": "銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ", "httpHeaders": [ { - "name": "278", - "value": "279" + "name": "223", + "value": "224" } ] }, "tcpSocket": { - "port": "280", - "host": "281" + "port": 1180382332, + "host": "225" } } }, - "terminationMessagePath": "282", - "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣", + "terminationMessagePath": "226", + "terminationMessagePolicy": "H韹寬娬ï瓼猀2:öY鶪5w垁", + "imagePullPolicy": "儣廡ɑ龫`劳\u0026¼傭", "securityContext": { "capabilities": { "add": [ - "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄" + "酃=6}ɡŇƉ立hdz緄Ú|dk_瀹鞎" ], "drop": [ - "rʤî萨zvt莭琽§ć\\ ïì" + "n芞QÄȻȊ+?ƭ峧Y栲茇竛" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "283", - "role": "284", - "type": "285", - "level": "286" + "user": "227", + "role": "228", + "type": "229", + "level": "230" }, "windowsOptions": { - "gmsaCredentialSpecName": "287", - "gmsaCredentialSpec": "288", - "runAsUserName": "289" + "gmsaCredentialSpecName": "231", + "gmsaCredentialSpec": "232", + "runAsUserName": "233" }, - "runAsUser": -5738810661106213940, - "runAsGroup": 3195567116206635190, + "runAsUser": 4875570291212151521, + "runAsGroup": -593458796014416333, "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "ƖN粕擓Ɩ" + "allowPrivilegeEscalation": true, + "procMount": "軶ǃ*ʙ嫙\u0026蒒5靇" }, "stdin": true, - "tty": true + "stdinOnce": true } ], - "ephemeralContainers": [ + "containers": [ { - "name": "290", - "image": "291", + "name": "234", + "image": "235", "command": [ - "292" + "236" ], "args": [ - "293" + "237" ], - "workingDir": "294", + "workingDir": "238", "ports": [ { - "name": "295", - "hostPort": -1097611426, - "containerPort": 1871952835, - "protocol": "D剂讼ɓȌʟni酛3ƁÀ*", - "hostIP": "296" + "name": "239", + "hostPort": 2126876305, + "containerPort": -2051962852, + "protocol": "貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲE'iþ", + "hostIP": "240" } ], "envFrom": [ { - "prefix": "297", + "prefix": "241", "configMapRef": { - "name": "298", - "optional": false + "name": "242", + "optional": true }, "secretRef": { - "name": "299", - "optional": true + "name": "243", + "optional": false } } ], "env": [ { - "name": "300", - "value": "301", + "name": "244", + "value": "245", "valueFrom": { "fieldRef": { - "apiVersion": "302", - "fieldPath": "303" + "apiVersion": "246", + "fieldPath": "247" }, "resourceFieldRef": { - "containerName": "304", - "resource": "305", - "divisor": "19" + "containerName": "248", + "resource": "249", + "divisor": "109" }, "configMapKeyRef": { - "name": "306", - "key": "307", + "name": "250", + "key": "251", "optional": false }, "secretKeyRef": { - "name": "308", - "key": "309", + "name": "252", + "key": "253", "optional": true } } @@ -921,212 +728,489 @@ ], "resources": { "limits": { - "Jȉ罴ņ螡źȰ?$矡ȶ网棊": "199" + "ŤǢʭ嵔棂p儼Ƿ裚瓶": "806" }, "requests": { - "ʎȺ眖R#": "985" + "ɩC": "766" } }, "volumeMounts": [ { - "name": "310", - "mountPath": "311", - "subPath": "312", - "mountPropagation": "¿", - "subPathExpr": "313" + "name": "254", + "mountPath": "255", + "subPath": "256", + "mountPropagation": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", + "subPathExpr": "257" } ], "volumeDevices": [ { - "name": "314", - "devicePath": "315" + "name": "258", + "devicePath": "259" } ], "livenessProbe": { "exec": { "command": [ - "316" + "260" ] }, "httpGet": { - "path": "317", - "port": -534498506, - "host": "318", - "scheme": "儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ", + "path": "261", + "port": -342705708, + "host": "262", + "scheme": "fw[Řż丩ŽoǠŻʘY賃ɪ鐊", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "263", + "value": "264" } ] }, "tcpSocket": { - "port": "321", - "host": "322" + "port": 88483549, + "host": "265" }, - "initialDelaySeconds": -805795167, - "timeoutSeconds": 1791615594, - "periodSeconds": 785984384, - "successThreshold": 193463975, - "failureThreshold": 1831208885 + "initialDelaySeconds": 364078113, + "timeoutSeconds": -181693648, + "periodSeconds": 828173251, + "successThreshold": -394397948, + "failureThreshold": 2040455355 }, "readinessProbe": { "exec": { "command": [ - "323" + "266" ] }, "httpGet": { - "path": "324", - "port": "325", - "host": "326", - "scheme": "更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", + "path": "267", + "port": 474119379, + "host": "268", + "scheme": "萭旿@掇lNdǂ\u003e5姣", "httpHeaders": [ { - "name": "327", - "value": "328" + "name": "269", + "value": "270" } ] }, "tcpSocket": { - "port": 467291328, - "host": "329" + "port": 1498833271, + "host": "271" }, - "initialDelaySeconds": -1664778008, - "timeoutSeconds": -1191528701, - "periodSeconds": -978176982, - "successThreshold": 415947324, - "failureThreshold": 18113448 + "initialDelaySeconds": 1505082076, + "timeoutSeconds": 1447898632, + "periodSeconds": 1602745893, + "successThreshold": 1599076900, + "failureThreshold": -1920661051 + }, + "startupProbe": { + "exec": { + "command": [ + "272" + ] + }, + "httpGet": { + "path": "273", + "port": "274", + "host": "275", + "scheme": "¸", + "httpHeaders": [ + { + "name": "276", + "value": "277" + } + ] + }, + "tcpSocket": { + "port": "278", + "host": "279" + }, + "initialDelaySeconds": -161753937, + "timeoutSeconds": -1578746609, + "periodSeconds": 1428207963, + "successThreshold": 790462391, + "failureThreshold": -822090785 }, "lifecycle": { "postStart": { "exec": { "command": [ - "330" + "280" ] }, "httpGet": { - "path": "331", - "port": -467985423, - "host": "332", - "scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ", + "path": "281", + "port": -421846800, + "host": "282", + "scheme": "zvt莭琽§", "httpHeaders": [ { - "name": "333", - "value": "334" + "name": "283", + "value": "284" } ] }, "tcpSocket": { - "port": "335", - "host": "336" + "port": -763687725, + "host": "285" } }, "preStop": { "exec": { "command": [ - "337" + "286" ] }, "httpGet": { - "path": "338", - "port": 591440053, - "host": "339", - "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄", + "path": "287", + "port": -1452676801, + "host": "288", + "scheme": "ȿ0矀Kʝ", "httpHeaders": [ { - "name": "340", - "value": "341" + "name": "289", + "value": "290" } ] }, "tcpSocket": { - "port": "342", - "host": "343" + "port": "291", + "host": "292" } } }, - "terminationMessagePath": "344", - "terminationMessagePolicy": " wƯ貾坢'跩aŕ", - "imagePullPolicy": "Ļǟi\u0026", + "terminationMessagePath": "293", + "terminationMessagePolicy": "\\p[", + "imagePullPolicy": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", "securityContext": { "capabilities": { "add": [ - "碔" + "À*f\u003c鴒翁杙Ŧ癃8" ], "drop": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ɱJȉ罴" ] }, "privileged": false, "seLinuxOptions": { - "user": "345", - "role": "346", - "type": "347", - "level": "348" + "user": "294", + "role": "295", + "type": "296", + "level": "297" }, "windowsOptions": { - "gmsaCredentialSpecName": "349", - "gmsaCredentialSpec": "350", - "runAsUserName": "351" + "gmsaCredentialSpecName": "298", + "gmsaCredentialSpec": "299", + "runAsUserName": "300" }, - "runAsUser": -7971724279034955974, - "runAsGroup": 2011630253582325853, + "runAsUser": -2706913289057230267, + "runAsGroup": -3689959065086680033, "runAsNonRoot": false, "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": true, - "procMount": ",ŕ" + "procMount": "棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅" }, - "stdinOnce": true, - "targetContainerName": "352" + "stdinOnce": true } ], - "restartPolicy": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", - "terminationGracePeriodSeconds": -1027492015449357669, - "activeDeadlineSeconds": 1968932441807931700, - "dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴", + "ephemeralContainers": [ + { + "name": "301", + "image": "302", + "command": [ + "303" + ], + "args": [ + "304" + ], + "workingDir": "305", + "ports": [ + { + "name": "306", + "hostPort": 1853396726, + "containerPort": 1330271338, + "protocol": "逴", + "hostIP": "307" + } + ], + "envFrom": [ + { + "prefix": "308", + "configMapRef": { + "name": "309", + "optional": true + }, + "secretRef": { + "name": "310", + "optional": true + } + } + ], + "env": [ + { + "name": "311", + "value": "312", + "valueFrom": { + "fieldRef": { + "apiVersion": "313", + "fieldPath": "314" + }, + "resourceFieldRef": { + "containerName": "315", + "resource": "316", + "divisor": "709" + }, + "configMapKeyRef": { + "name": "317", + "key": "318", + "optional": false + }, + "secretKeyRef": { + "name": "319", + "key": "320", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "颐o": "230" + }, + "requests": { + "[+扴ȨŮ+朷Ǝ膯ljV": "728" + } + }, + "volumeMounts": [ + { + "name": "321", + "mountPath": "322", + "subPath": "323", + "mountPropagation": "ŕ-Ɂ圯W:ĸ輦唊#v铿", + "subPathExpr": "324" + } + ], + "volumeDevices": [ + { + "name": "325", + "devicePath": "326" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "327" + ] + }, + "httpGet": { + "path": "328", + "port": "329", + "host": "330", + "scheme": "屡ʁ", + "httpHeaders": [ + { + "name": "331", + "value": "332" + } + ] + }, + "tcpSocket": { + "port": -1554559634, + "host": "333" + }, + "initialDelaySeconds": 1718241831, + "timeoutSeconds": 550615941, + "periodSeconds": 1180971695, + "successThreshold": -1971944908, + "failureThreshold": 1742259603 + }, + "readinessProbe": { + "exec": { + "command": [ + "334" + ] + }, + "httpGet": { + "path": "335", + "port": -1620315711, + "host": "336", + "scheme": "ɐ扵", + "httpHeaders": [ + { + "name": "337", + "value": "338" + } + ] + }, + "tcpSocket": { + "port": "339", + "host": "340" + }, + "initialDelaySeconds": -1358663652, + "timeoutSeconds": 1543146222, + "periodSeconds": -527306221, + "successThreshold": 2098694289, + "failureThreshold": 1150925735 + }, + "startupProbe": { + "exec": { + "command": [ + "341" + ] + }, + "httpGet": { + "path": "342", + "port": "343", + "host": "344", + "scheme": "榝$î.Ȏ蝪ʜ5遰", + "httpHeaders": [ + { + "name": "345", + "value": "346" + } + ] + }, + "tcpSocket": { + "port": -1438286448, + "host": "347" + }, + "initialDelaySeconds": 834105836, + "timeoutSeconds": -1462219068, + "periodSeconds": -370386363, + "successThreshold": 1714588921, + "failureThreshold": -1246371817 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "348" + ] + }, + "httpGet": { + "path": "349", + "port": "350", + "host": "351", + "scheme": "跩aŕ翑", + "httpHeaders": [ + { + "name": "352", + "value": "353" + } + ] + }, + "tcpSocket": { + "port": "354", + "host": "355" + } + }, + "preStop": { + "exec": { + "command": [ + "356" + ] + }, + "httpGet": { + "path": "357", + "port": 1017803158, + "host": "358", + "scheme": "碔", + "httpHeaders": [ + { + "name": "359", + "value": "360" + } + ] + }, + "tcpSocket": { + "port": "361", + "host": "362" + } + } + }, + "terminationMessagePath": "363", + "terminationMessagePolicy": "Kƙ順\\E¦队偯J僳徥淳4揻-$ɽ丟", + "imagePullPolicy": "拉Œɥ颶妧Ö闊 鰔澝qV訆", + "securityContext": { + "capabilities": { + "add": [ + "ŧL²sNƗ¸gĩ餠籲磣Óƿ" + ], + "drop": [ + "\"冓鍓贯澔 ƺ蛜6" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "364", + "role": "365", + "type": "366", + "level": "367" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "368", + "gmsaCredentialSpec": "369", + "runAsUserName": "370" + }, + "runAsUser": 4353696140684277635, + "runAsGroup": 6057650398488995896, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "鰥Z龏´DÒȗ" + }, + "tty": true, + "targetContainerName": "371" + } + ], + "restartPolicy": "ɘɢ鬍熖B芭花ª瘡", + "terminationGracePeriodSeconds": 2666412258966278206, + "activeDeadlineSeconds": -8715915045560617563, + "dnsPolicy": "丆", "nodeSelector": { - "353": "354" + "372": "373" }, - "serviceAccountName": "355", - "serviceAccount": "356", + "serviceAccountName": "374", + "serviceAccount": "375", "automountServiceAccountToken": false, - "nodeName": "357", - "hostNetwork": true, + "nodeName": "376", + "hostPID": true, "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "358", - "role": "359", - "type": "360", - "level": "361" + "user": "377", + "role": "378", + "type": "379", + "level": "380" }, "windowsOptions": { - "gmsaCredentialSpecName": "362", - "gmsaCredentialSpec": "363", - "runAsUserName": "364" + "gmsaCredentialSpecName": "381", + "gmsaCredentialSpec": "382", + "runAsUserName": "383" }, - "runAsUser": -6241205430888228274, - "runAsGroup": 3716388262106582789, - "runAsNonRoot": true, + "runAsUser": 2179199799235189619, + "runAsGroup": -779972051078659613, + "runAsNonRoot": false, "supplementalGroups": [ - 2706433733228765005 + -7127205672279904050 ], - "fsGroup": -500234369132816308, + "fsGroup": 7124276984274024394, "sysctls": [ { - "name": "365", - "value": "366" + "name": "384", + "value": "385" } ] }, "imagePullSecrets": [ { - "name": "367" + "name": "386" } ], - "hostname": "368", - "subdomain": "369", + "hostname": "387", + "subdomain": "388", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1134,19 +1218,19 @@ { "matchExpressions": [ { - "key": "370", - "operator": "鱎ƙ;Nŕ璻Ji", + "key": "389", + "operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "values": [ - "371" + "390" ] } ], "matchFields": [ { - "key": "372", - "operator": "J", + "key": "391", + "operator": "埮pɵ{WOŭW灬p", "values": [ - "373" + "392" ] } ] @@ -1155,23 +1239,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 902978249, + "weight": 199049889, "preference": { "matchExpressions": [ { - "key": "374", - "operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6", + "key": "393", + "operator": "擭銆jʒǚ鍰\\縑", "values": [ - "375" + "394" ] } ], "matchFields": [ { - "key": "376", - "operator": "ʎǑyZ涬P­", + "key": "395", + "operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "values": [ - "377" + "396" ] } ] @@ -1184,46 +1268,43 @@ { "labelSelector": { "matchLabels": { - "05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3": "0-8-.M-.-.-v" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "1zET_..3dCv3j._.-_pP__up.2N", + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "operator": "NotIn", "values": [ - "f.p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.TV" + "z" ] } ] }, "namespaces": [ - "384" + "403" ], - "topologyKey": "385" + "topologyKey": "404" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -3478003, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J": "28_38xm-.nx.sEK4B" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81", - "operator": "NotIn", - "values": [ - "MXOnf_ZN.-_--r.E__-8" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "392" + "411" ], - "topologyKey": "393" + "topologyKey": "412" } } ] @@ -1233,109 +1314,109 @@ { "labelSelector": { "matchLabels": { - "O.Um.-__k.j._g-G-7--p9.-0": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d", - "operator": "In", - "values": [ - "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" - ] + "key": "QZ9p_6.C.e", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "400" + "419" ], - "topologyKey": "401" + "topologyKey": "420" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1078366610, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "operator": "NotIn", "values": [ - "VT3sn-0_.i__a.O2G_J" + "txb__-ex-_1_-ODgC_1-_V" ] } ] }, "namespaces": [ - "408" + "427" ], - "topologyKey": "409" + "topologyKey": "428" } } ] } }, - "schedulerName": "410", + "schedulerName": "429", "tolerations": [ { - "key": "411", - "operator": "抷qTfZȻ干m謆7", - "value": "412", - "effect": "儉ɩ柀", - "tolerationSeconds": -7411984641310969236 + "key": "430", + "operator": "堺ʣ", + "value": "431", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "413", + "ip": "432", "hostnames": [ - "414" + "433" ] } ], - "priorityClassName": "415", - "priority": -895317190, + "priorityClassName": "434", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "416" + "435" ], "searches": [ - "417" + "436" ], "options": [ { - "name": "418", - "value": "419" + "name": "437", + "value": "438" } ] }, "readinessGates": [ { - "conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "420", - "enableServiceLinks": true, - "preemptionPolicy": "qiǙĞǠ", + "runtimeClassName": "439", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "锒鿦Ršțb贇髪č": "840" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": 44905239, - "topologyKey": "421", - "whenUnsatisfiable": "NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃", + "maxSkew": -150478704, + "topologyKey": "440", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p", - "operator": "DoesNotExist" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1343,21 +1424,22 @@ ] } }, - "ttlSecondsAfterFinished": -37906634 + "ttlSecondsAfterFinished": 920774957 } }, - "successfulJobsHistoryLimit": 1893057016, - "failedJobsHistoryLimit": -1915115520 + "successfulJobsHistoryLimit": 1613009760, + "failedJobsHistoryLimit": 1560811691 }, "status": { "active": [ { - "kind": "428", - "namespace": "429", - "name": "430", - "apiVersion": "431", - "resourceVersion": "432", - "fieldPath": "433" + "kind": "447", + "namespace": "448", + "name": "449", + "uid": "Ŋ)TiD¢ƿ媴h", + "apiVersion": "450", + "resourceVersion": "451", + "fieldPath": "452" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.pb index 6900090cbc0..eee44c0ef90 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml index 3d8aed07c02..5e27f0a59e7 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.CronJob.yaml @@ -31,7 +31,7 @@ metadata: uid: "7" spec: concurrencyPolicy: Hr鯹)晿5姣 - tty: true - volumeDevices: - - devicePath: "253" - name: "252" - volumeMounts: - - mountPath: "249" - mountPropagation: '@ùƸʋŀ樺ȃv' - name: "248" - subPath: "250" - subPathExpr: "251" - workingDir: "232" - dnsConfig: - nameservers: - - "416" - options: - - name: "418" - value: "419" - searches: - - "417" - dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴 - enableServiceLinks: true - ephemeralContainers: - - args: - - "293" - command: - - "292" - env: - - name: "300" - value: "301" - valueFrom: - configMapKeyRef: - key: "307" - name: "306" - optional: false - fieldRef: - apiVersion: "302" - fieldPath: "303" - resourceFieldRef: - containerName: "304" - divisor: "19" - resource: "305" - secretKeyRef: - key: "309" - name: "308" + key: "253" + name: "252" optional: true envFrom: - configMapRef: - name: "298" - optional: false - prefix: "297" - secretRef: - name: "299" + name: "242" optional: true - image: "291" - imagePullPolicy: Ļǟi& + prefix: "241" + secretRef: + name: "243" + optional: false + image: "235" + imagePullPolicy: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 lifecycle: postStart: exec: command: - - "330" + - "280" httpGet: - host: "332" + host: "282" httpHeaders: - - name: "333" - value: "334" - path: "331" - port: -467985423 - scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ + - name: "283" + value: "284" + path: "281" + port: -421846800 + scheme: zvt莭琽§ tcpSocket: - host: "336" - port: "335" + host: "285" + port: -763687725 preStop: exec: command: - - "337" + - "286" httpGet: - host: "339" + host: "288" httpHeaders: - - name: "340" - value: "341" - path: "338" - port: 591440053 - scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄 + - name: "289" + value: "290" + path: "287" + port: -1452676801 + scheme: ȿ0矀Kʝ tcpSocket: - host: "343" - port: "342" + host: "292" + port: "291" livenessProbe: exec: command: - - "316" - failureThreshold: 1831208885 + - "260" + failureThreshold: 2040455355 httpGet: - host: "318" + host: "262" httpHeaders: - - name: "319" - value: "320" - path: "317" - port: -534498506 - scheme: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ - initialDelaySeconds: -805795167 - periodSeconds: 785984384 - successThreshold: 193463975 + - name: "263" + value: "264" + path: "261" + port: -342705708 + scheme: fw[Řż丩ŽoǠŻʘY賃ɪ鐊 + initialDelaySeconds: 364078113 + periodSeconds: 828173251 + successThreshold: -394397948 tcpSocket: - host: "322" - port: "321" - timeoutSeconds: 1791615594 - name: "290" + host: "265" + port: 88483549 + timeoutSeconds: -181693648 + name: "234" ports: - - containerPort: 1871952835 - hostIP: "296" - hostPort: -1097611426 - name: "295" - protocol: D剂讼ɓȌʟni酛3ƁÀ* + - containerPort: -2051962852 + hostIP: "240" + hostPort: 2126876305 + name: "239" + protocol: 貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲE'iþ readinessProbe: exec: command: - - "323" - failureThreshold: 18113448 + - "266" + failureThreshold: -1920661051 httpGet: - host: "326" + host: "268" httpHeaders: - - name: "327" - value: "328" - path: "324" - port: "325" - scheme: 更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - initialDelaySeconds: -1664778008 - periodSeconds: -978176982 - successThreshold: 415947324 + - name: "269" + value: "270" + path: "267" + port: 474119379 + scheme: 萭旿@掇lNdǂ>5姣 + initialDelaySeconds: 1505082076 + periodSeconds: 1602745893 + successThreshold: 1599076900 tcpSocket: - host: "329" - port: 467291328 - timeoutSeconds: -1191528701 + host: "271" + port: 1498833271 + timeoutSeconds: 1447898632 resources: limits: - Jȉ罴ņ螡źȰ?$矡ȶ网棊: "199" + ŤǢʭ嵔棂p儼Ƿ裚瓶: "806" requests: - ʎȺ眖R#: "985" + ɩC: "766" securityContext: allowPrivilegeEscalation: true capabilities: add: - - 碔 + - À*f<鴒翁杙Ŧ癃8 drop: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - ɱJȉ罴 privileged: false - procMount: ',ŕ' + procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅 readOnlyRootFilesystem: false - runAsGroup: 2011630253582325853 + runAsGroup: -3689959065086680033 runAsNonRoot: false - runAsUser: -7971724279034955974 + runAsUser: -2706913289057230267 seLinuxOptions: - level: "348" - role: "346" - type: "347" - user: "345" + level: "297" + role: "295" + type: "296" + user: "294" windowsOptions: - gmsaCredentialSpec: "350" - gmsaCredentialSpecName: "349" - runAsUserName: "351" + gmsaCredentialSpec: "299" + gmsaCredentialSpecName: "298" + runAsUserName: "300" + startupProbe: + exec: + command: + - "272" + failureThreshold: -822090785 + httpGet: + host: "275" + httpHeaders: + - name: "276" + value: "277" + path: "273" + port: "274" + scheme: ¸ + initialDelaySeconds: -161753937 + periodSeconds: 1428207963 + successThreshold: 790462391 + tcpSocket: + host: "279" + port: "278" + timeoutSeconds: -1578746609 stdinOnce: true - targetContainerName: "352" - terminationMessagePath: "344" - terminationMessagePolicy: ' wƯ貾坢''跩aŕ' + terminationMessagePath: "293" + terminationMessagePolicy: \p[ volumeDevices: - - devicePath: "315" - name: "314" + - devicePath: "259" + name: "258" volumeMounts: - - mountPath: "311" - mountPropagation: ¿ - name: "310" - subPath: "312" - subPathExpr: "313" - workingDir: "294" + - mountPath: "255" + mountPropagation: ȫ焗捏ĨFħ籘Àǒɿʒ刽 + name: "254" + subPath: "256" + subPathExpr: "257" + workingDir: "238" + dnsConfig: + nameservers: + - "435" + options: + - name: "437" + value: "438" + searches: + - "436" + dnsPolicy: 丆 + enableServiceLinks: false + ephemeralContainers: + - args: + - "304" + command: + - "303" + env: + - name: "311" + value: "312" + valueFrom: + configMapKeyRef: + key: "318" + name: "317" + optional: false + fieldRef: + apiVersion: "313" + fieldPath: "314" + resourceFieldRef: + containerName: "315" + divisor: "709" + resource: "316" + secretKeyRef: + key: "320" + name: "319" + optional: false + envFrom: + - configMapRef: + name: "309" + optional: true + prefix: "308" + secretRef: + name: "310" + optional: true + image: "302" + imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆 + lifecycle: + postStart: + exec: + command: + - "348" + httpGet: + host: "351" + httpHeaders: + - name: "352" + value: "353" + path: "349" + port: "350" + scheme: 跩aŕ翑 + tcpSocket: + host: "355" + port: "354" + preStop: + exec: + command: + - "356" + httpGet: + host: "358" + httpHeaders: + - name: "359" + value: "360" + path: "357" + port: 1017803158 + scheme: 碔 + tcpSocket: + host: "362" + port: "361" + livenessProbe: + exec: + command: + - "327" + failureThreshold: 1742259603 + httpGet: + host: "330" + httpHeaders: + - name: "331" + value: "332" + path: "328" + port: "329" + scheme: 屡ʁ + initialDelaySeconds: 1718241831 + periodSeconds: 1180971695 + successThreshold: -1971944908 + tcpSocket: + host: "333" + port: -1554559634 + timeoutSeconds: 550615941 + name: "301" + ports: + - containerPort: 1330271338 + hostIP: "307" + hostPort: 1853396726 + name: "306" + protocol: 逴 + readinessProbe: + exec: + command: + - "334" + failureThreshold: 1150925735 + httpGet: + host: "336" + httpHeaders: + - name: "337" + value: "338" + path: "335" + port: -1620315711 + scheme: ɐ扵 + initialDelaySeconds: -1358663652 + periodSeconds: -527306221 + successThreshold: 2098694289 + tcpSocket: + host: "340" + port: "339" + timeoutSeconds: 1543146222 + resources: + limits: + 颐o: "230" + requests: + '[+扴ȨŮ+朷Ǝ膯ljV': "728" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ŧL²sNƗ¸gĩ餠籲磣Óƿ + drop: + - '"冓鍓贯澔 ƺ蛜6' + privileged: false + procMount: 鰥Z龏´DÒȗ + readOnlyRootFilesystem: true + runAsGroup: 6057650398488995896 + runAsNonRoot: true + runAsUser: 4353696140684277635 + seLinuxOptions: + level: "367" + role: "365" + type: "366" + user: "364" + windowsOptions: + gmsaCredentialSpec: "369" + gmsaCredentialSpecName: "368" + runAsUserName: "370" + startupProbe: + exec: + command: + - "341" + failureThreshold: -1246371817 + httpGet: + host: "344" + httpHeaders: + - name: "345" + value: "346" + path: "342" + port: "343" + scheme: 榝$î.Ȏ蝪ʜ5遰 + initialDelaySeconds: 834105836 + periodSeconds: -370386363 + successThreshold: 1714588921 + tcpSocket: + host: "347" + port: -1438286448 + timeoutSeconds: -1462219068 + targetContainerName: "371" + terminationMessagePath: "363" + terminationMessagePolicy: Kƙ順\E¦队偯J僳徥淳4揻-$ɽ丟 + tty: true + volumeDevices: + - devicePath: "326" + name: "325" + volumeMounts: + - mountPath: "322" + mountPropagation: ŕ-Ɂ圯W:ĸ輦唊#v铿 + name: "321" + subPath: "323" + subPathExpr: "324" + workingDir: "305" hostAliases: - hostnames: - - "414" - ip: "413" - hostNetwork: true - hostname: "368" + - "433" + ip: "432" + hostPID: true + hostname: "387" imagePullSecrets: - - name: "367" + - name: "386" initContainers: - args: - "168" @@ -544,24 +580,9 @@ spec: name: "174" optional: false image: "166" - imagePullPolicy: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 + imagePullPolicy: 儣廡ɑ龫`劳&¼傭 lifecycle: postStart: - exec: - command: - - "205" - httpGet: - host: "208" - httpHeaders: - - name: "209" - value: "210" - path: "206" - port: "207" - scheme: '%:;栍dʪīT捘ɍi' - tcpSocket: - host: "212" - port: "211" - preStop: exec: command: - "213" @@ -576,6 +597,21 @@ spec: tcpSocket: host: "219" port: "218" + preStop: + exec: + command: + - "220" + httpGet: + host: "222" + httpHeaders: + - name: "223" + value: "224" + path: "221" + port: -1319998825 + scheme: 銦妰黖ȓƇ$缔獵偐ę腬瓷碑=ɉ + tcpSocket: + host: "225" + port: 1180382332 livenessProbe: exec: command: @@ -628,31 +664,51 @@ spec: requests: To&蕭k ź: "644" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 瓼猀2:öY鶪5w垁鷌辪 + - 酃=6}ɡŇƉ立hdz緄Ú|dk_瀹鞎 drop: - - U珝Żwʮ馜üNșƶ4ĩĉ - privileged: false - procMount: "" + - n芞QÄȻȊ+?ƭ峧Y栲茇竛 + privileged: true + procMount: 軶ǃ*ʙ嫙&蒒5靇 readOnlyRootFilesystem: false - runAsGroup: 6165457529064596376 - runAsNonRoot: false - runAsUser: -4642229086806245627 + runAsGroup: -593458796014416333 + runAsNonRoot: true + runAsUser: 4875570291212151521 seLinuxOptions: - level: "224" - role: "222" - type: "223" - user: "221" + level: "230" + role: "228" + type: "229" + user: "227" windowsOptions: - gmsaCredentialSpec: "226" - gmsaCredentialSpecName: "225" - runAsUserName: "227" + gmsaCredentialSpec: "232" + gmsaCredentialSpecName: "231" + runAsUserName: "233" + startupProbe: + exec: + command: + - "205" + failureThreshold: -814446577 + httpGet: + host: "208" + httpHeaders: + - name: "209" + value: "210" + path: "206" + port: "207" + scheme: eÞȦY籎顒 + initialDelaySeconds: -1252931244 + periodSeconds: 1061537 + successThreshold: 322666556 + tcpSocket: + host: "212" + port: "211" + timeoutSeconds: 1569992019 + stdin: true stdinOnce: true - terminationMessagePath: "220" - terminationMessagePolicy: 閼咎櫸eʔŊ - tty: true + terminationMessagePath: "226" + terminationMessagePolicy: H韹寬娬ï瓼猀2:öY鶪5w垁 volumeDevices: - devicePath: "190" name: "189" @@ -664,59 +720,61 @@ spec: subPath: "187" subPathExpr: "188" workingDir: "169" - nodeName: "357" + nodeName: "376" nodeSelector: - "353": "354" + "372": "373" overhead: - 锒鿦Ršțb贇髪č: "840" - preemptionPolicy: qiǙĞǠ - priority: -895317190 - priorityClassName: "415" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "434" readinessGates: - - conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n - restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - runtimeClassName: "420" - schedulerName: "410" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɘɢ鬍熖B芭花ª瘡 + runtimeClassName: "439" + schedulerName: "429" securityContext: - fsGroup: -500234369132816308 - runAsGroup: 3716388262106582789 - runAsNonRoot: true - runAsUser: -6241205430888228274 + fsGroup: 7124276984274024394 + runAsGroup: -779972051078659613 + runAsNonRoot: false + runAsUser: 2179199799235189619 seLinuxOptions: - level: "361" - role: "359" - type: "360" - user: "358" + level: "380" + role: "378" + type: "379" + user: "377" supplementalGroups: - - 2706433733228765005 + - -7127205672279904050 sysctls: - - name: "365" - value: "366" + - name: "384" + value: "385" windowsOptions: - gmsaCredentialSpec: "363" - gmsaCredentialSpecName: "362" - runAsUserName: "364" - serviceAccount: "356" - serviceAccountName: "355" + gmsaCredentialSpec: "382" + gmsaCredentialSpecName: "381" + runAsUserName: "383" + serviceAccount: "375" + serviceAccountName: "374" shareProcessNamespace: true - subdomain: "369" - terminationGracePeriodSeconds: -1027492015449357669 + subdomain: "388" + terminationGracePeriodSeconds: 2666412258966278206 tolerations: - - effect: 儉ɩ柀 - key: "411" - operator: 抷qTfZȻ干m謆7 - tolerationSeconds: -7411984641310969236 - value: "412" + - effect: ŽɣB矗E¸乾 + key: "430" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "431" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p - operator: DoesNotExist + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa - maxSkew: 44905239 - topologyKey: "421" - whenUnsatisfiable: NRNJ丧鴻ĿW癜鞤A馱z芀¿l磶Bb偃 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "440" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "65" @@ -915,16 +973,17 @@ spec: storagePolicyID: "122" storagePolicyName: "121" volumePath: "119" - ttlSecondsAfterFinished: -37906634 + ttlSecondsAfterFinished: 920774957 schedule: "19" startingDeadlineSeconds: -2555947251840004808 - successfulJobsHistoryLimit: 1893057016 + successfulJobsHistoryLimit: 1613009760 suspend: true status: active: - - apiVersion: "431" - fieldPath: "433" - kind: "428" - name: "430" - namespace: "429" - resourceVersion: "432" + - apiVersion: "450" + fieldPath: "452" + kind: "447" + name: "449" + namespace: "448" + resourceVersion: "451" + uid: Ŋ)TiD¢ƿ媴h diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json index da387c7cbe7..11accafa0ca 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.json @@ -557,366 +557,169 @@ "successThreshold": 1596028039, "failureThreshold": 1427781619 }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "202" - ] - }, - "httpGet": { - "path": "203", - "port": "204", - "host": "205", - "scheme": "Ɖ立hdz緄Ú|dk_瀹鞎", - "httpHeaders": [ - { - "name": "206", - "value": "207" - } - ] - }, - "tcpSocket": { - "port": 1150375229, - "host": "208" - } - }, - "preStop": { - "exec": { - "command": [ - "209" - ] - }, - "httpGet": { - "path": "210", - "port": "211", - "host": "212", - "scheme": "鲡:", - "httpHeaders": [ - { - "name": "213", - "value": "214" - } - ] - }, - "tcpSocket": { - "port": -2037320199, - "host": "215" - } - } - }, - "terminationMessagePath": "216", - "terminationMessagePolicy": "@Ȗs«öʮĀ\u003cé瞾", - "imagePullPolicy": "4y£軶ǃ*ʙ嫙\u0026蒒5", - "securityContext": { - "capabilities": { - "add": [ - "'ɵK.Q貇£ȹ嫰ƹǔw÷" - ], - "drop": [ - "I粛E煹ǐƲE'iþŹʣy" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "217", - "role": "218", - "type": "219", - "level": "220" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "221", - "gmsaCredentialSpec": "222", - "runAsUserName": "223" - }, - "runAsUser": -3150075726777852858, - "runAsGroup": -4491268618106522555, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ" - }, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "224", - "image": "225", - "command": [ - "226" - ], - "args": [ - "227" - ], - "workingDir": "228", - "ports": [ - { - "name": "229", - "hostPort": -321513994, - "containerPort": 1024248645, - "protocol": "籘Àǒɿʒ刽ʼn", - "hostIP": "230" - } - ], - "envFrom": [ - { - "prefix": "231", - "configMapRef": { - "name": "232", - "optional": true - }, - "secretRef": { - "name": "233", - "optional": true - } - } - ], - "env": [ - { - "name": "234", - "value": "235", - "valueFrom": { - "fieldRef": { - "apiVersion": "236", - "fieldPath": "237" - }, - "resourceFieldRef": { - "containerName": "238", - "resource": "239", - "divisor": "103" - }, - "configMapKeyRef": { - "name": "240", - "key": "241", - "optional": false - }, - "secretKeyRef": { - "name": "242", - "key": "243", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ": "861" - }, - "requests": { - "悖ȩ0Ƹ[Ęİ榌U": "396" - } - }, - "volumeMounts": [ - { - "name": "244", - "readOnly": true, - "mountPath": "245", - "subPath": "246", - "mountPropagation": "\u003e懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐", - "subPathExpr": "247" - } - ], - "volumeDevices": [ - { - "name": "248", - "devicePath": "249" - } - ], - "livenessProbe": { + "startupProbe": { "exec": { "command": [ - "250" + "202" ] }, "httpGet": { - "path": "251", - "port": -1821078703, - "host": "252", - "scheme": "萨zvt", + "path": "203", + "port": -337353552, + "host": "204", + "scheme": "ɖȃ賲鐅臬dH巧壚tC十Oɢ", "httpHeaders": [ { - "name": "253", - "value": "254" + "name": "205", + "value": "206" } ] }, "tcpSocket": { - "port": 1182477686, - "host": "255" + "port": -586068135, + "host": "207" }, - "initialDelaySeconds": -503805926, - "timeoutSeconds": 77312514, - "periodSeconds": -763687725, - "successThreshold": -246563990, - "failureThreshold": 10098903 - }, - "readinessProbe": { - "exec": { - "command": [ - "256" - ] - }, - "httpGet": { - "path": "257", - "port": "258", - "host": "259", - "scheme": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "httpHeaders": [ - { - "name": "260", - "value": "261" - } - ] - }, - "tcpSocket": { - "port": "262", - "host": "263" - }, - "initialDelaySeconds": 932904270, - "timeoutSeconds": 1810980158, - "periodSeconds": 100356493, - "successThreshold": -110792150, - "failureThreshold": 1255258741 + "initialDelaySeconds": 1592489782, + "timeoutSeconds": 929367702, + "periodSeconds": -102814733, + "successThreshold": -152585895, + "failureThreshold": -2037320199 }, "lifecycle": { "postStart": { "exec": { "command": [ - "264" + "208" ] }, "httpGet": { - "path": "265", - "port": -498930176, - "host": "266", - "scheme": " R§耶Ff", + "path": "209", + "port": 1381010768, + "host": "210", + "scheme": "ö", "httpHeaders": [ { - "name": "267", - "value": "268" + "name": "211", + "value": "212" } ] }, "tcpSocket": { - "port": "269", - "host": "270" + "port": 1135182169, + "host": "213" } }, "preStop": { "exec": { "command": [ - "271" + "214" ] }, "httpGet": { - "path": "272", - "port": -331283026, - "host": "273", - "scheme": "ȉ", + "path": "215", + "port": 1054302708, + "host": "216", "httpHeaders": [ { - "name": "274", - "value": "275" + "name": "217", + "value": "218" } ] }, "tcpSocket": { - "port": 714088955, - "host": "276" + "port": "219", + "host": "220" } } }, - "terminationMessagePath": "277", - "terminationMessagePolicy": "źȰ?$矡ȶ网棊ʢ=wǕɳ", - "imagePullPolicy": "#yV'WKw(ğ儴Ůĺ}", + "terminationMessagePath": "221", + "terminationMessagePolicy": "軶ǃ*ʙ嫙\u0026蒒5靇", + "imagePullPolicy": "ŴĿ", "securityContext": { "capabilities": { "add": [ - "胵輓Ɔ" + "Áȉ彂Ŵ廷s{Ⱦdz@ùƸ" ], "drop": [ - "" + "ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0" ] }, "privileged": true, "seLinuxOptions": { - "user": "278", - "role": "279", - "type": "280", - "level": "281" + "user": "222", + "role": "223", + "type": "224", + "level": "225" }, "windowsOptions": { - "gmsaCredentialSpecName": "282", - "gmsaCredentialSpec": "283", - "runAsUserName": "284" + "gmsaCredentialSpecName": "226", + "gmsaCredentialSpec": "227", + "runAsUserName": "228" }, - "runAsUser": -7735837526010191986, - "runAsGroup": -3460863886200664373, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "g\u003e郵[+扴ȨŮ+朷Ǝ膯lj" - }, - "stdin": true + "runAsUser": 6116261698850084527, + "runAsGroup": -8724223413734010757, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ" + } } ], - "ephemeralContainers": [ + "containers": [ { - "name": "285", - "image": "286", + "name": "229", + "image": "230", "command": [ - "287" + "231" ], "args": [ - "288" + "232" ], - "workingDir": "289", + "workingDir": "233", "ports": [ { - "name": "290", - "hostPort": -602419938, - "containerPort": 1040396664, - "protocol": "爻ƙt叀碧闳ȩr嚧ʣq埄", - "hostIP": "291" + "name": "234", + "hostPort": 427196286, + "containerPort": 1048864116, + "protocol": "/樝fw[Řż丩ŽoǠŻʘY賃ɪ鐊", + "hostIP": "235" } ], "envFrom": [ { - "prefix": "292", + "prefix": "236", "configMapRef": { - "name": "293", + "name": "237", "optional": true }, "secretRef": { - "name": "294", - "optional": true + "name": "238", + "optional": false } } ], "env": [ { - "name": "295", - "value": "296", + "name": "239", + "value": "240", "valueFrom": { "fieldRef": { - "apiVersion": "297", - "fieldPath": "298" + "apiVersion": "241", + "fieldPath": "242" }, "resourceFieldRef": { - "containerName": "299", - "resource": "300", - "divisor": "340" + "containerName": "243", + "resource": "244", + "divisor": "506" }, "configMapKeyRef": { - "name": "301", - "key": "302", - "optional": false + "name": "245", + "key": "246", + "optional": true }, "secretKeyRef": { - "name": "303", - "key": "304", + "name": "247", + "key": "248", "optional": true } } @@ -924,215 +727,491 @@ ], "resources": { "limits": { - "": "548" + "ƻ悖ȩ0Ƹ[": "672" }, "requests": { - "ñKJɐ扵Gƚ绤": "879" + "": "988" } }, "volumeMounts": [ { - "name": "305", - "readOnly": true, - "mountPath": "306", - "subPath": "307", - "mountPropagation": "敄lu|", - "subPathExpr": "308" + "name": "249", + "mountPath": "250", + "subPath": "251", + "mountPropagation": "髷裎$MVȟ@7飣奺Ȋ", + "subPathExpr": "252" } ], "volumeDevices": [ { - "name": "309", - "devicePath": "310" + "name": "253", + "devicePath": "254" } ], "livenessProbe": { "exec": { "command": [ - "311" + "255" ] }, "httpGet": { - "path": "312", - "port": "313", - "host": "314", - "scheme": "忊|E剒", + "path": "256", + "port": -1180080716, + "host": "257", + "scheme": "Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮", "httpHeaders": [ { - "name": "315", - "value": "316" + "name": "258", + "value": "259" } ] }, "tcpSocket": { - "port": 1004325340, - "host": "317" + "port": -161485752, + "host": "260" }, - "initialDelaySeconds": -1313320434, - "timeoutSeconds": 14304392, - "periodSeconds": 465972736, - "successThreshold": -1784617397, - "failureThreshold": 1941923625 + "initialDelaySeconds": 1524276356, + "timeoutSeconds": -521487971, + "periodSeconds": -1561418761, + "successThreshold": -1452676801, + "failureThreshold": -1171167638 }, "readinessProbe": { "exec": { "command": [ - "318" + "261" ] }, "httpGet": { - "path": "319", - "port": 432291364, - "host": "320", + "path": "262", + "port": 2141389898, + "host": "263", + "scheme": "皚|", "httpHeaders": [ { - "name": "321", - "value": "322" + "name": "264", + "value": "265" } ] }, "tcpSocket": { - "port": "323", - "host": "324" + "port": "266", + "host": "267" }, - "initialDelaySeconds": -677617960, - "timeoutSeconds": 383015301, - "periodSeconds": -1717997927, - "successThreshold": 1533365989, - "failureThreshold": 656200799 + "initialDelaySeconds": 766864314, + "timeoutSeconds": 1146016612, + "periodSeconds": 1495880465, + "successThreshold": -1032967081, + "failureThreshold": 59664438 + }, + "startupProbe": { + "exec": { + "command": [ + "268" + ] + }, + "httpGet": { + "path": "269", + "port": 163512962, + "host": "270", + "scheme": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "httpHeaders": [ + { + "name": "271", + "value": "272" + } + ] + }, + "tcpSocket": { + "port": "273", + "host": "274" + }, + "initialDelaySeconds": 232569106, + "timeoutSeconds": -1150474479, + "periodSeconds": 744319626, + "successThreshold": -2107743490, + "failureThreshold": 1995332035 }, "lifecycle": { "postStart": { "exec": { "command": [ - "325" + "275" ] }, "httpGet": { - "path": "326", - "port": "327", - "host": "328", - "scheme": "%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄", + "path": "276", + "port": 630004123, + "host": "277", + "scheme": "ɾģ毋Ó6dz娝嘚", "httpHeaders": [ { - "name": "329", - "value": "330" + "name": "278", + "value": "279" } ] }, "tcpSocket": { - "port": "331", - "host": "332" + "port": -1213051101, + "host": "280" } }, "preStop": { "exec": { "command": [ - "333" + "281" ] }, "httpGet": { - "path": "334", - "port": "335", - "host": "336", - "scheme": "锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸", + "path": "282", + "port": -1905643191, + "host": "283", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", "httpHeaders": [ { - "name": "337", - "value": "338" + "name": "284", + "value": "285" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "339" + "port": "286", + "host": "287" } } }, - "terminationMessagePath": "340", - "terminationMessagePolicy": "蚃ɣľ)酊龨δ摖ȱ", - "imagePullPolicy": "冓鍓贯", + "terminationMessagePath": "288", + "terminationMessagePolicy": "勅跦Opwǩ曬逴褜1Ø", + "imagePullPolicy": "Ǜv+8Ƥ熪军g\u003e郵[+扴ȨŮ+", "securityContext": { "capabilities": { "add": [ - "ƺ蛜6Ɖ飴ɎiǨź" + "" ], "drop": [ - "ǵɐ鰥Z" + "ljVX1虊谇j爻ƙt叀碧" ] }, "privileged": true, "seLinuxOptions": { - "user": "341", - "role": "342", - "type": "343", - "level": "344" + "user": "289", + "role": "290", + "type": "291", + "level": "292" }, "windowsOptions": { - "gmsaCredentialSpecName": "345", - "gmsaCredentialSpec": "346", - "runAsUserName": "347" + "gmsaCredentialSpecName": "293", + "gmsaCredentialSpec": "294", + "runAsUserName": "295" }, - "runAsUser": -500234369132816308, - "runAsGroup": 1006111877741141889, - "runAsNonRoot": false, + "runAsUser": 77796669038602313, + "runAsGroup": -6641599652770442851, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "ʁ岼昕ĬÇ" + }, + "stdinOnce": true + } + ], + "ephemeralContainers": [ + { + "name": "296", + "image": "297", + "command": [ + "298" + ], + "args": [ + "299" + ], + "workingDir": "300", + "ports": [ + { + "name": "301", + "hostPort": 2087800617, + "containerPort": -1491697472, + "protocol": "6", + "hostIP": "302" + } + ], + "envFrom": [ + { + "prefix": "303", + "configMapRef": { + "name": "304", + "optional": false + }, + "secretRef": { + "name": "305", + "optional": true + } + } + ], + "env": [ + { + "name": "306", + "value": "307", + "valueFrom": { + "fieldRef": { + "apiVersion": "308", + "fieldPath": "309" + }, + "resourceFieldRef": { + "containerName": "310", + "resource": "311", + "divisor": "879" + }, + "configMapKeyRef": { + "name": "312", + "key": "313", + "optional": true + }, + "secretKeyRef": { + "name": "314", + "key": "315", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ": "114" + }, + "requests": { + "Ƭƶ氩Ȩ\u003c6": "446" + } + }, + "volumeMounts": [ + { + "name": "316", + "readOnly": true, + "mountPath": "317", + "subPath": "318", + "mountPropagation": "翑0展}硐庰%皧V垾", + "subPathExpr": "319" + } + ], + "volumeDevices": [ + { + "name": "320", + "devicePath": "321" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "322" + ] + }, + "httpGet": { + "path": "323", + "port": "324", + "host": "325", + "scheme": "E¦", + "httpHeaders": [ + { + "name": "326", + "value": "327" + } + ] + }, + "tcpSocket": { + "port": "328", + "host": "329" + }, + "initialDelaySeconds": 1868887309, + "timeoutSeconds": -528664199, + "periodSeconds": -316996074, + "successThreshold": 1933968533, + "failureThreshold": 549215478 + }, + "readinessProbe": { + "exec": { + "command": [ + "330" + ] + }, + "httpGet": { + "path": "331", + "port": -374766088, + "host": "332", + "scheme": "翜舞拉Œ", + "httpHeaders": [ + { + "name": "333", + "value": "334" + } + ] + }, + "tcpSocket": { + "port": "335", + "host": "336" + }, + "initialDelaySeconds": -190183379, + "timeoutSeconds": -940334911, + "periodSeconds": -341287812, + "successThreshold": 2030115750, + "failureThreshold": 1847163341 + }, + "startupProbe": { + "exec": { + "command": [ + "337" + ] + }, + "httpGet": { + "path": "338", + "port": 567263590, + "host": "339", + "scheme": "KŅ/", + "httpHeaders": [ + { + "name": "340", + "value": "341" + } + ] + }, + "tcpSocket": { + "port": "342", + "host": "343" + }, + "initialDelaySeconds": -1894250541, + "timeoutSeconds": 1962818731, + "periodSeconds": 1315054653, + "successThreshold": 711020087, + "failureThreshold": 1103049140 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "344" + ] + }, + "httpGet": { + "path": "345", + "port": -2128108224, + "host": "346", + "scheme": "δ摖", + "httpHeaders": [ + { + "name": "347", + "value": "348" + } + ] + }, + "tcpSocket": { + "port": "349", + "host": "350" + } + }, + "preStop": { + "exec": { + "command": [ + "351" + ] + }, + "httpGet": { + "path": "352", + "port": "353", + "host": "354", + "httpHeaders": [ + { + "name": "355", + "value": "356" + } + ] + }, + "tcpSocket": { + "port": "357", + "host": "358" + } + } + }, + "terminationMessagePath": "359", + "terminationMessagePolicy": "ƺ蛜6Ɖ飴ɎiǨź", + "imagePullPolicy": "囌{屿oiɥ嵐sC", + "securityContext": { + "capabilities": { + "add": [ + "Ǻ鱎ƙ;Nŕ" + ], + "drop": [ + "Jih亏yƕ丆録²" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "360", + "role": "361", + "type": "362", + "level": "363" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "364", + "gmsaCredentialSpec": "365", + "runAsUserName": "366" + }, + "runAsUser": -607313695104609402, + "runAsGroup": 2179199799235189619, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²" + "procMount": "砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­" }, "stdin": true, "stdinOnce": true, - "tty": true, - "targetContainerName": "348" + "targetContainerName": "367" } ], - "restartPolicy": "ǦŐnj汰8ŕİi騎C\"", - "terminationGracePeriodSeconds": 2582126978155733738, - "activeDeadlineSeconds": 3168496047243051519, - "dnsPolicy": "Ǒ", + "restartPolicy": "幩šeSvEȤƏ埮pɵ", + "terminationGracePeriodSeconds": -3123571459188372202, + "activeDeadlineSeconds": 4755717378804967849, + "dnsPolicy": "ʐşƧ", "nodeSelector": { - "349": "350" + "368": "369" }, - "serviceAccountName": "351", - "serviceAccount": "352", - "automountServiceAccountToken": false, - "nodeName": "353", + "serviceAccountName": "370", + "serviceAccount": "371", + "automountServiceAccountToken": true, + "nodeName": "372", + "hostNetwork": true, "hostPID": true, - "hostIPC": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "354", - "role": "355", - "type": "356", - "level": "357" + "user": "373", + "role": "374", + "type": "375", + "level": "376" }, "windowsOptions": { - "gmsaCredentialSpecName": "358", - "gmsaCredentialSpec": "359", - "runAsUserName": "360" + "gmsaCredentialSpecName": "377", + "gmsaCredentialSpec": "378", + "runAsUserName": "379" }, - "runAsUser": 4608737617101049023, - "runAsGroup": 3557544419897236324, + "runAsUser": 1287380841622288898, + "runAsGroup": 2006200781539567705, "runAsNonRoot": true, "supplementalGroups": [ - 5014869561632118364 + 6618112330449141397 ], - "fsGroup": -1335795712555820375, + "fsGroup": -5265121980497361308, "sysctls": [ { - "name": "361", - "value": "362" + "name": "380", + "value": "381" } ] }, "imagePullSecrets": [ { - "name": "363" + "name": "382" } ], - "hostname": "364", - "subdomain": "365", + "hostname": "383", + "subdomain": "384", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1140,19 +1219,19 @@ { "matchExpressions": [ { - "key": "366", - "operator": "", + "key": "385", + "operator": "餑噭DµņP)", "values": [ - "367" + "386" ] } ], "matchFields": [ { - "key": "368", - "operator": "{WOŭW灬pȭCV擭銆jʒǚ鍰", + "key": "387", + "operator": "ƷƣMț", "values": [ - "369" + "388" ] } ] @@ -1161,23 +1240,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1330095135, + "weight": -1588068441, "preference": { "matchExpressions": [ { - "key": "370", - "operator": "撑¼蠾8餑噭", + "key": "389", + "operator": "W疪鑳w妕眵", "values": [ - "371" + "390" ] } ], "matchFields": [ { - "key": "372", - "operator": "ɪǹ0衷,ƷƣMț譎懚XW疪鑳w", + "key": "391", + "operator": "躒訙Ǫʓ)ǂť嗆u8晲T[irȎ", "values": [ - "373" + "392" ] } ] @@ -1190,43 +1269,43 @@ { "labelSelector": { "matchLabels": { - "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" + "W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p": "H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v" }, "matchExpressions": [ { - "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", - "operator": "NotIn", - "values": [ - "z" - ] + "key": "39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97", + "operator": "Exists" } ] }, "namespaces": [ - "380" + "399" ], - "topologyKey": "381" + "topologyKey": "400" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -217760519, + "weight": 2102595797, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" + "5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3": "8.3_t_-l..-.DG7r-3.----._4__Xn" }, "matchExpressions": [ { - "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", - "operator": "DoesNotExist" + "key": "Ue_l2.._8s--Z", + "operator": "In", + "values": [ + "A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a" + ] } ] }, "namespaces": [ - "388" + "407" ], - "topologyKey": "389" + "topologyKey": "408" } } ] @@ -1236,109 +1315,106 @@ { "labelSelector": { "matchLabels": { - "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" + "D-0": "P.-.C_--.5" }, "matchExpressions": [ { - "key": "QZ9p_6.C.e", - "operator": "DoesNotExist" + "key": "d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX", + "operator": "NotIn", + "values": [ + "1_xJ1-lFA_Xf3.V0H2-.zHw.H__7" + ] } ] }, "namespaces": [ - "396" + "415" ], - "topologyKey": "397" + "topologyKey": "416" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1851436166, + "weight": 754095416, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" + "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": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", - "operator": "NotIn", - "values": [ - "txb__-ex-_1_-ODgC_1-_V" - ] + "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" } ] }, "namespaces": [ - "404" + "423" ], - "topologyKey": "405" + "topologyKey": "424" } } ] } }, - "schedulerName": "406", + "schedulerName": "425", "tolerations": [ { - "key": "407", - "operator": "堺ʣ", - "value": "408", - "effect": "ŽɣB矗E¸乾", - "tolerationSeconds": -3532804738923434397 + "key": "426", + "operator": "z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜", + "value": "427", + "effect": "ǣʛsĊ剞鮧軷șlļė[BN柌ë", + "tolerationSeconds": -9161243904952859304 } ], "hostAliases": [ { - "ip": "409", + "ip": "428", "hostnames": [ - "410" + "429" ] } ], - "priorityClassName": "411", - "priority": -1852730577, + "priorityClassName": "430", + "priority": -966330786, "dnsConfig": { "nameservers": [ - "412" + "431" ], "searches": [ - "413" + "432" ], "options": [ { - "name": "414", - "value": "415" + "name": "433", + "value": "434" } ] }, "readinessGates": [ { - "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" + "conditionType": "齔試ŭ" } ], - "runtimeClassName": "416", + "runtimeClassName": "435", "enableServiceLinks": false, - "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", + "preemptionPolicy": "鬙Ǒȃ绡\u003e堵zŕƧ钖孝0蛮xAǫ", "overhead": { - "4'ď曕椐敛n湙": "310" + "tŧK剛Ʀ魨练脨,Ƃ3貊": "972" }, "topologySpreadConstraints": [ { - "maxSkew": -150478704, - "topologyKey": "417", - "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", + "maxSkew": 2088809792, + "topologyKey": "436", + "whenUnsatisfiable": "縊CkǚŨ镦", "labelSelector": { "matchLabels": { - "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" + "rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP": "q-JM" }, "matchExpressions": [ { - "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", - "operator": "In", - "values": [ - "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" - ] + "key": "RT.0zo", + "operator": "DoesNotExist" } ] } @@ -1346,7 +1422,7 @@ ] } }, - "ttlSecondsAfterFinished": 920774957 + "ttlSecondsAfterFinished": 246849509 } } } \ No newline at end of file diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.pb index 64574f34f4b..5c5ab36d50f 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.yaml index dd545b560e8..f46ab6750e6 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v2alpha1.JobTemplate.yaml @@ -104,412 +104,450 @@ template: selfLink: "45" uid: Ȗ脵鴈Ō spec: - activeDeadlineSeconds: 3168496047243051519 + activeDeadlineSeconds: 4755717378804967849 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "370" - operator: 撑¼蠾8餑噭 + - key: "389" + operator: W疪鑳w妕眵 values: - - "371" + - "390" matchFields: - - key: "372" - operator: ɪǹ0衷,ƷƣMț譎懚XW疪鑳w + - key: "391" + operator: 躒訙Ǫʓ)ǂť嗆u8晲T[irȎ values: - - "373" - weight: -1330095135 + - "392" + weight: -1588068441 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "366" - operator: "" + - key: "385" + operator: 餑噭DµņP) values: - - "367" + - "386" matchFields: - - key: "368" - operator: '{WOŭW灬pȭCV擭銆jʒǚ鍰' + - key: "387" + operator: ƷƣMț values: - - "369" + - "388" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - operator: DoesNotExist + - key: Ue_l2.._8s--Z + operator: In + values: + - A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a matchLabels: - 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP + 5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3: 8.3_t_-l..-.DG7r-3.----._4__Xn namespaces: - - "388" - topologyKey: "389" - weight: -217760519 + - "407" + topologyKey: "408" + weight: 2102595797 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - operator: NotIn - values: - - z + - key: 39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97 + operator: Exists matchLabels: - 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r + W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p: H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v namespaces: - - "380" - topologyKey: "381" + - "399" + topologyKey: "400" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - operator: NotIn - values: - - txb__-ex-_1_-ODgC_1-_V + - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr + operator: DoesNotExist matchLabels: - 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT + 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g namespaces: - - "404" - topologyKey: "405" - weight: -1851436166 + - "423" + topologyKey: "424" + weight: 754095416 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: QZ9p_6.C.e - operator: DoesNotExist + - key: d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX + operator: NotIn + values: + - 1_xJ1-lFA_Xf3.V0H2-.zHw.H__7 matchLabels: - 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n + D-0: P.-.C_--.5 namespaces: - - "396" - topologyKey: "397" - automountServiceAccountToken: false + - "415" + topologyKey: "416" + automountServiceAccountToken: true containers: - args: - - "227" + - "232" command: - - "226" + - "231" env: - - name: "234" - value: "235" + - name: "239" + value: "240" valueFrom: configMapKeyRef: - key: "241" - name: "240" - optional: false + key: "246" + name: "245" + optional: true fieldRef: - apiVersion: "236" - fieldPath: "237" + apiVersion: "241" + fieldPath: "242" resourceFieldRef: - containerName: "238" - divisor: "103" - resource: "239" + containerName: "243" + divisor: "506" + resource: "244" secretKeyRef: - key: "243" - name: "242" - optional: false - envFrom: - - configMapRef: - name: "232" - optional: true - prefix: "231" - secretRef: - name: "233" - optional: true - image: "225" - imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}' - lifecycle: - postStart: - exec: - command: - - "264" - httpGet: - host: "266" - httpHeaders: - - name: "267" - value: "268" - path: "265" - port: -498930176 - scheme: ' R§耶Ff' - tcpSocket: - host: "270" - port: "269" - preStop: - exec: - command: - - "271" - httpGet: - host: "273" - httpHeaders: - - name: "274" - value: "275" - path: "272" - port: -331283026 - scheme: ȉ - tcpSocket: - host: "276" - port: 714088955 - livenessProbe: - exec: - command: - - "250" - failureThreshold: 10098903 - httpGet: - host: "252" - httpHeaders: - - name: "253" - value: "254" - path: "251" - port: -1821078703 - scheme: 萨zvt - initialDelaySeconds: -503805926 - periodSeconds: -763687725 - successThreshold: -246563990 - tcpSocket: - host: "255" - port: 1182477686 - timeoutSeconds: 77312514 - name: "224" - ports: - - containerPort: 1024248645 - hostIP: "230" - hostPort: -321513994 - name: "229" - protocol: 籘Àǒɿʒ刽ʼn - readinessProbe: - exec: - command: - - "256" - failureThreshold: 1255258741 - httpGet: - host: "259" - httpHeaders: - - name: "260" - value: "261" - path: "257" - port: "258" - scheme: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - initialDelaySeconds: 932904270 - periodSeconds: 100356493 - successThreshold: -110792150 - tcpSocket: - host: "263" - port: "262" - timeoutSeconds: 1810980158 - resources: - limits: - x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ: "861" - requests: - 悖ȩ0Ƹ[Ęİ榌U: "396" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 胵輓Ɔ - drop: - - "" - privileged: true - procMount: g>郵[+扴ȨŮ+朷Ǝ膯lj - readOnlyRootFilesystem: true - runAsGroup: -3460863886200664373 - runAsNonRoot: false - runAsUser: -7735837526010191986 - seLinuxOptions: - level: "281" - role: "279" - type: "280" - user: "278" - windowsOptions: - gmsaCredentialSpec: "283" - gmsaCredentialSpecName: "282" - runAsUserName: "284" - stdin: true - terminationMessagePath: "277" - terminationMessagePolicy: źȰ?$矡ȶ网棊ʢ=wǕɳ - volumeDevices: - - devicePath: "249" - name: "248" - volumeMounts: - - mountPath: "245" - mountPropagation: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐' - name: "244" - readOnly: true - subPath: "246" - subPathExpr: "247" - workingDir: "228" - dnsConfig: - nameservers: - - "412" - options: - - name: "414" - value: "415" - searches: - - "413" - dnsPolicy: Ǒ - enableServiceLinks: false - ephemeralContainers: - - args: - - "288" - command: - - "287" - env: - - name: "295" - value: "296" - valueFrom: - configMapKeyRef: - key: "302" - name: "301" - optional: false - fieldRef: - apiVersion: "297" - fieldPath: "298" - resourceFieldRef: - containerName: "299" - divisor: "340" - resource: "300" - secretKeyRef: - key: "304" - name: "303" + key: "248" + name: "247" optional: true envFrom: - configMapRef: - name: "293" + name: "237" optional: true - prefix: "292" + prefix: "236" secretRef: - name: "294" - optional: true - image: "286" - imagePullPolicy: 冓鍓贯 + name: "238" + optional: false + image: "230" + imagePullPolicy: Ǜv+8Ƥ熪军g>郵[+扴ȨŮ+ lifecycle: postStart: exec: command: - - "325" + - "275" httpGet: - host: "328" + host: "277" httpHeaders: - - name: "329" - value: "330" - path: "326" - port: "327" - scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄' + - name: "278" + value: "279" + path: "276" + port: 630004123 + scheme: ɾģ毋Ó6dz娝嘚 tcpSocket: - host: "332" - port: "331" + host: "280" + port: -1213051101 preStop: exec: command: - - "333" + - "281" httpGet: - host: "336" + host: "283" httpHeaders: - - name: "337" - value: "338" - path: "334" - port: "335" - scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸 + - name: "284" + value: "285" + path: "282" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 tcpSocket: - host: "339" - port: 1315054653 + host: "287" + port: "286" livenessProbe: exec: command: - - "311" - failureThreshold: 1941923625 + - "255" + failureThreshold: -1171167638 httpGet: - host: "314" + host: "257" httpHeaders: - - name: "315" - value: "316" - path: "312" - port: "313" - scheme: 忊|E剒 - initialDelaySeconds: -1313320434 - periodSeconds: 465972736 - successThreshold: -1784617397 + - name: "258" + value: "259" + path: "256" + port: -1180080716 + scheme: Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮 + initialDelaySeconds: 1524276356 + periodSeconds: -1561418761 + successThreshold: -1452676801 tcpSocket: - host: "317" - port: 1004325340 - timeoutSeconds: 14304392 - name: "285" + host: "260" + port: -161485752 + timeoutSeconds: -521487971 + name: "229" ports: - - containerPort: 1040396664 - hostIP: "291" - hostPort: -602419938 - name: "290" - protocol: 爻ƙt叀碧闳ȩr嚧ʣq埄 + - containerPort: 1048864116 + hostIP: "235" + hostPort: 427196286 + name: "234" + protocol: /樝fw[Řż丩ŽoǠŻʘY賃ɪ鐊 readinessProbe: exec: command: - - "318" - failureThreshold: 656200799 + - "261" + failureThreshold: 59664438 httpGet: - host: "320" + host: "263" httpHeaders: - - name: "321" - value: "322" - path: "319" - port: 432291364 - initialDelaySeconds: -677617960 - periodSeconds: -1717997927 - successThreshold: 1533365989 + - name: "264" + value: "265" + path: "262" + port: 2141389898 + scheme: 皚| + initialDelaySeconds: 766864314 + periodSeconds: 1495880465 + successThreshold: -1032967081 tcpSocket: - host: "324" - port: "323" - timeoutSeconds: 383015301 + host: "267" + port: "266" + timeoutSeconds: 1146016612 resources: limits: - "": "548" + ƻ悖ȩ0Ƹ[: "672" requests: - ñKJɐ扵Gƚ绤: "879" + "": "988" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ƺ蛜6Ɖ飴ɎiǨź + - "" drop: - - ǵɐ鰥Z + - ljVX1虊谇j爻ƙt叀碧 privileged: true - procMount: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² - readOnlyRootFilesystem: true - runAsGroup: 1006111877741141889 - runAsNonRoot: false - runAsUser: -500234369132816308 + procMount: ʁ岼昕ĬÇ + readOnlyRootFilesystem: false + runAsGroup: -6641599652770442851 + runAsNonRoot: true + runAsUser: 77796669038602313 seLinuxOptions: - level: "344" - role: "342" - type: "343" - user: "341" + level: "292" + role: "290" + type: "291" + user: "289" windowsOptions: - gmsaCredentialSpec: "346" - gmsaCredentialSpecName: "345" - runAsUserName: "347" + gmsaCredentialSpec: "294" + gmsaCredentialSpecName: "293" + runAsUserName: "295" + startupProbe: + exec: + command: + - "268" + failureThreshold: 1995332035 + httpGet: + host: "270" + httpHeaders: + - name: "271" + value: "272" + path: "269" + port: 163512962 + scheme: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' + initialDelaySeconds: 232569106 + periodSeconds: 744319626 + successThreshold: -2107743490 + tcpSocket: + host: "274" + port: "273" + timeoutSeconds: -1150474479 + stdinOnce: true + terminationMessagePath: "288" + terminationMessagePolicy: 勅跦Opwǩ曬逴褜1Ø + volumeDevices: + - devicePath: "254" + name: "253" + volumeMounts: + - mountPath: "250" + mountPropagation: 髷裎$MVȟ@7飣奺Ȋ + name: "249" + subPath: "251" + subPathExpr: "252" + workingDir: "233" + dnsConfig: + nameservers: + - "431" + options: + - name: "433" + value: "434" + searches: + - "432" + dnsPolicy: ʐşƧ + enableServiceLinks: false + ephemeralContainers: + - args: + - "299" + command: + - "298" + env: + - name: "306" + value: "307" + valueFrom: + configMapKeyRef: + key: "313" + name: "312" + optional: true + fieldRef: + apiVersion: "308" + fieldPath: "309" + resourceFieldRef: + containerName: "310" + divisor: "879" + resource: "311" + secretKeyRef: + key: "315" + name: "314" + optional: false + envFrom: + - configMapRef: + name: "304" + optional: false + prefix: "303" + secretRef: + name: "305" + optional: true + image: "297" + imagePullPolicy: 囌{屿oiɥ嵐sC + lifecycle: + postStart: + exec: + command: + - "344" + httpGet: + host: "346" + httpHeaders: + - name: "347" + value: "348" + path: "345" + port: -2128108224 + scheme: δ摖 + tcpSocket: + host: "350" + port: "349" + preStop: + exec: + command: + - "351" + httpGet: + host: "354" + httpHeaders: + - name: "355" + value: "356" + path: "352" + port: "353" + tcpSocket: + host: "358" + port: "357" + livenessProbe: + exec: + command: + - "322" + failureThreshold: 549215478 + httpGet: + host: "325" + httpHeaders: + - name: "326" + value: "327" + path: "323" + port: "324" + scheme: E¦ + initialDelaySeconds: 1868887309 + periodSeconds: -316996074 + successThreshold: 1933968533 + tcpSocket: + host: "329" + port: "328" + timeoutSeconds: -528664199 + name: "296" + ports: + - containerPort: -1491697472 + hostIP: "302" + hostPort: 2087800617 + name: "301" + protocol: "6" + readinessProbe: + exec: + command: + - "330" + failureThreshold: 1847163341 + httpGet: + host: "332" + httpHeaders: + - name: "333" + value: "334" + path: "331" + port: -374766088 + scheme: 翜舞拉Œ + initialDelaySeconds: -190183379 + periodSeconds: -341287812 + successThreshold: 2030115750 + tcpSocket: + host: "336" + port: "335" + timeoutSeconds: -940334911 + resources: + limits: + u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ: "114" + requests: + Ƭƶ氩Ȩ<6: "446" + securityContext: + allowPrivilegeEscalation: true + capabilities: + add: + - Ǻ鱎ƙ;Nŕ + drop: + - Jih亏yƕ丆録² + privileged: false + procMount: 砅邻爥蹔ŧOǨ繫ʎǑyZ涬P­ + readOnlyRootFilesystem: true + runAsGroup: 2179199799235189619 + runAsNonRoot: true + runAsUser: -607313695104609402 + seLinuxOptions: + level: "363" + role: "361" + type: "362" + user: "360" + windowsOptions: + gmsaCredentialSpec: "365" + gmsaCredentialSpecName: "364" + runAsUserName: "366" + startupProbe: + exec: + command: + - "337" + failureThreshold: 1103049140 + httpGet: + host: "339" + httpHeaders: + - name: "340" + value: "341" + path: "338" + port: 567263590 + scheme: KŅ/ + initialDelaySeconds: -1894250541 + periodSeconds: 1315054653 + successThreshold: 711020087 + tcpSocket: + host: "343" + port: "342" + timeoutSeconds: 1962818731 stdin: true stdinOnce: true - targetContainerName: "348" - terminationMessagePath: "340" - terminationMessagePolicy: 蚃ɣľ)酊龨δ摖ȱ - tty: true + targetContainerName: "367" + terminationMessagePath: "359" + terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź volumeDevices: - - devicePath: "310" - name: "309" + - devicePath: "321" + name: "320" volumeMounts: - - mountPath: "306" - mountPropagation: 敄lu| - name: "305" + - mountPath: "317" + mountPropagation: 翑0展}硐庰%皧V垾 + name: "316" readOnly: true - subPath: "307" - subPathExpr: "308" - workingDir: "289" + subPath: "318" + subPathExpr: "319" + workingDir: "300" hostAliases: - hostnames: - - "410" - ip: "409" - hostIPC: true + - "429" + ip: "428" + hostNetwork: true hostPID: true - hostname: "364" + hostname: "383" imagePullSecrets: - - name: "363" + - name: "382" initContainers: - args: - "167" @@ -543,38 +581,37 @@ template: name: "173" optional: true image: "165" - imagePullPolicy: 4y£軶ǃ*ʙ嫙&蒒5 + imagePullPolicy: ŴĿ lifecycle: postStart: exec: command: - - "202" + - "208" httpGet: - host: "205" + host: "210" httpHeaders: - - name: "206" - value: "207" - path: "203" - port: "204" - scheme: Ɖ立hdz緄Ú|dk_瀹鞎 + - name: "211" + value: "212" + path: "209" + port: 1381010768 + scheme: ö tcpSocket: - host: "208" - port: 1150375229 + host: "213" + port: 1135182169 preStop: exec: command: - - "209" + - "214" httpGet: - host: "212" + host: "216" httpHeaders: - - name: "213" - value: "214" - path: "210" - port: "211" - scheme: '鲡:' + - name: "217" + value: "218" + path: "215" + port: 1054302708 tcpSocket: - host: "215" - port: -2037320199 + host: "220" + port: "219" livenessProbe: exec: command: @@ -628,31 +665,49 @@ template: requests: T捘ɍi縱ù墴: "848" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - '''ɵK.Q貇£ȹ嫰ƹǔw÷' + - Áȉ彂Ŵ廷s{Ⱦdz@ùƸ drop: - - I粛E煹ǐƲE'iþŹʣy - privileged: false - procMount: ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ - readOnlyRootFilesystem: true - runAsGroup: -4491268618106522555 + - ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0 + privileged: true + procMount: 邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ + readOnlyRootFilesystem: false + runAsGroup: -8724223413734010757 runAsNonRoot: true - runAsUser: -3150075726777852858 + runAsUser: 6116261698850084527 seLinuxOptions: - level: "220" - role: "218" - type: "219" - user: "217" + level: "225" + role: "223" + type: "224" + user: "222" windowsOptions: - gmsaCredentialSpec: "222" - gmsaCredentialSpecName: "221" - runAsUserName: "223" - stdinOnce: true - terminationMessagePath: "216" - terminationMessagePolicy: '@Ȗs«öʮĀ<é瞾' - tty: true + gmsaCredentialSpec: "227" + gmsaCredentialSpecName: "226" + runAsUserName: "228" + startupProbe: + exec: + command: + - "202" + failureThreshold: -2037320199 + httpGet: + host: "204" + httpHeaders: + - name: "205" + value: "206" + path: "203" + port: -337353552 + scheme: ɖȃ賲鐅臬dH巧壚tC十Oɢ + initialDelaySeconds: 1592489782 + periodSeconds: -102814733 + successThreshold: -152585895 + tcpSocket: + host: "207" + port: -586068135 + timeoutSeconds: 929367702 + terminationMessagePath: "221" + terminationMessagePolicy: 軶ǃ*ʙ嫙&蒒5靇 volumeDevices: - devicePath: "189" name: "188" @@ -664,61 +719,59 @@ template: subPath: "186" subPathExpr: "187" workingDir: "168" - nodeName: "353" + nodeName: "372" nodeSelector: - "349": "350" + "368": "369" overhead: - 4'ď曕椐敛n湙: "310" - preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' - priority: -1852730577 - priorityClassName: "411" + tŧK剛Ʀ魨练脨,Ƃ3貊: "972" + preemptionPolicy: 鬙Ǒȃ绡>堵zŕƧ钖孝0蛮xAǫ + priority: -966330786 + priorityClassName: "430" readinessGates: - - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - restartPolicy: ǦŐnj汰8ŕİi騎C" - runtimeClassName: "416" - schedulerName: "406" + - conditionType: 齔試ŭ + restartPolicy: 幩šeSvEȤƏ埮pɵ + runtimeClassName: "435" + schedulerName: "425" securityContext: - fsGroup: -1335795712555820375 - runAsGroup: 3557544419897236324 + fsGroup: -5265121980497361308 + runAsGroup: 2006200781539567705 runAsNonRoot: true - runAsUser: 4608737617101049023 + runAsUser: 1287380841622288898 seLinuxOptions: - level: "357" - role: "355" - type: "356" - user: "354" + level: "376" + role: "374" + type: "375" + user: "373" supplementalGroups: - - 5014869561632118364 + - 6618112330449141397 sysctls: - - name: "361" - value: "362" + - name: "380" + value: "381" windowsOptions: - gmsaCredentialSpec: "359" - gmsaCredentialSpecName: "358" - runAsUserName: "360" - serviceAccount: "352" - serviceAccountName: "351" - shareProcessNamespace: false - subdomain: "365" - terminationGracePeriodSeconds: 2582126978155733738 + gmsaCredentialSpec: "378" + gmsaCredentialSpecName: "377" + runAsUserName: "379" + serviceAccount: "371" + serviceAccountName: "370" + shareProcessNamespace: true + subdomain: "384" + terminationGracePeriodSeconds: -3123571459188372202 tolerations: - - effect: ŽɣB矗E¸乾 - key: "407" - operator: 堺ʣ - tolerationSeconds: -3532804738923434397 - value: "408" + - effect: ǣʛsĊ剞鮧軷șlļė[BN柌ë + key: "426" + operator: z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜 + tolerationSeconds: -9161243904952859304 + value: "427" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - operator: In - values: - - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ + - key: RT.0zo + operator: DoesNotExist matchLabels: - p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU - maxSkew: -150478704 - topologyKey: "417" - whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ + rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP: q-JM + maxSkew: 2088809792 + topologyKey: "436" + whenUnsatisfiable: 縊CkǚŨ镦 volumes: - awsElasticBlockStore: fsType: "64" @@ -920,4 +973,4 @@ template: storagePolicyID: "121" storagePolicyName: "120" volumePath: "118" - ttlSecondsAfterFinished: 920774957 + ttlSecondsAfterFinished: 246849509 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 50727b8df17..28aa11edf5a 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 @@ -178,40 +178,46 @@ "successThreshold": 552512122, "failureThreshold": -833209928 }, + "startupProbe": { + "exec": { + "command": [ + "59" + ] + }, + "httpGet": { + "path": "60", + "port": 180803110, + "host": "61", + "scheme": "ņ錕?øēƺ", + "httpHeaders": [ + { + "name": "62", + "value": "63" + } + ] + }, + "tcpSocket": { + "port": "64", + "host": "65" + }, + "initialDelaySeconds": -816398166, + "timeoutSeconds": 1229400382, + "periodSeconds": -1583208879, + "successThreshold": 1088264954, + "failureThreshold": 13573196 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "59" + "66" ] }, "httpGet": { - "path": "60", - "port": 1114837452, - "host": "61", - "httpHeaders": [ - { - "name": "62", - "value": "63" - } - ] - }, - "tcpSocket": { - "port": 672648281, - "host": "64" - } - }, - "preStop": { - "exec": { - "command": [ - "65" - ] - }, - "httpGet": { - "path": "66", - "port": "67", + "path": "67", + "port": -1293912096, "host": "68", - "scheme": "魋Ď儇击3ƆìQ喞艋涽", + "scheme": "託仭", "httpHeaders": [ { "name": "69", @@ -223,41 +229,64 @@ "port": "71", "host": "72" } + }, + "preStop": { + "exec": { + "command": [ + "73" + ] + }, + "httpGet": { + "path": "74", + "port": "75", + "host": "76", + "scheme": "鴜Ł%Ũ", + "httpHeaders": [ + { + "name": "77", + "value": "78" + } + ] + }, + "tcpSocket": { + "port": "79", + "host": "80" + } } }, - "terminationMessagePath": "73", - "terminationMessagePolicy": "w-檮Ǣ冖ž琔n宂¬轚9Ȏ瀮", - "imagePullPolicy": "/", + "terminationMessagePath": "81", + "terminationMessagePolicy": "Ņ£", "securityContext": { "capabilities": { "add": [ - "-议}ȧ外ĺ稥氹Ç|¶" + "2Ō¾\\ĒP鄸靇杧ž" ], "drop": [ - "¡ Ɠ(嘒ėf倐ȓ圬剴扲ȿQZ" + "娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "74", - "role": "75", - "type": "76", - "level": "77" + "user": "82", + "role": "83", + "type": "84", + "level": "85" }, "windowsOptions": { - "gmsaCredentialSpecName": "78", - "gmsaCredentialSpec": "79", - "runAsUserName": "80" + "gmsaCredentialSpecName": "86", + "gmsaCredentialSpec": "87", + "runAsUserName": "88" }, - "runAsUser": -2195720433245498980, - "runAsGroup": -3031446704001093654, + "runAsUser": 4491726672505793472, + "runAsGroup": -5441351197948631872, "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "1ZƜ/C龷" + "procMount": "ĭÐl恕ɍȇ廄裭4懙" }, - "stdinOnce": true, - "targetContainerName": "81" + "stdin": true, + "tty": true, + "targetContainerName": "89" } ] } \ 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 4f85c0c4d86..ee54463fc95 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 4aaeaaa09c2..5655a6e0e91 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,37 @@ ephemeralContainers: name: "28" optional: false image: "20" - imagePullPolicy: / lifecycle: postStart: exec: command: - - "59" - httpGet: - host: "61" - httpHeaders: - - name: "62" - value: "63" - path: "60" - port: 1114837452 - tcpSocket: - host: "64" - port: 672648281 - preStop: - exec: - command: - - "65" + - "66" httpGet: host: "68" httpHeaders: - name: "69" value: "70" - path: "66" - port: "67" - scheme: 魋Ď儇击3ƆìQ喞艋涽 + path: "67" + port: -1293912096 + scheme: 託仭 tcpSocket: host: "72" port: "71" + preStop: + exec: + command: + - "73" + httpGet: + host: "76" + httpHeaders: + - name: "77" + value: "78" + path: "74" + port: "75" + scheme: 鴜Ł%Ũ + tcpSocket: + host: "80" + port: "79" livenessProbe: exec: command: @@ -118,28 +118,49 @@ ephemeralContainers: allowPrivilegeEscalation: true capabilities: add: - - -议}ȧ外ĺ稥氹Ç|¶ + - 2Ō¾\ĒP鄸靇杧ž drop: - - ¡ Ɠ(嘒ėf倐ȓ圬剴扲ȿQZ - privileged: true - procMount: 1ZƜ/C龷 + - 娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^ + privileged: false + procMount: ĭÐl恕ɍȇ廄裭4懙 readOnlyRootFilesystem: true - runAsGroup: -3031446704001093654 + runAsGroup: -5441351197948631872 runAsNonRoot: true - runAsUser: -2195720433245498980 + runAsUser: 4491726672505793472 seLinuxOptions: - level: "77" - role: "75" - type: "76" - user: "74" + level: "85" + role: "83" + type: "84" + user: "82" windowsOptions: - gmsaCredentialSpec: "79" - gmsaCredentialSpecName: "78" - runAsUserName: "80" - stdinOnce: true - targetContainerName: "81" - terminationMessagePath: "73" - terminationMessagePolicy: w-檮Ǣ冖ž琔n宂¬轚9Ȏ瀮 + gmsaCredentialSpec: "87" + gmsaCredentialSpecName: "86" + runAsUserName: "88" + startupProbe: + exec: + command: + - "59" + failureThreshold: 13573196 + httpGet: + host: "61" + httpHeaders: + - name: "62" + value: "63" + path: "60" + port: 180803110 + scheme: ņ錕?øēƺ + initialDelaySeconds: -816398166 + periodSeconds: -1583208879 + successThreshold: 1088264954 + tcpSocket: + host: "65" + port: "64" + timeoutSeconds: 1229400382 + stdin: true + targetContainerName: "89" + terminationMessagePath: "81" + 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 de077daaf14..3709344b6d2 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 @@ -450,31 +450,36 @@ "successThreshold": -1888506207, "failureThreshold": -1904823509 }, + "startupProbe": { + "exec": { + "command": [ + "164" + ] + }, + "httpGet": { + "path": "165", + "port": 1693510057, + "host": "166", + "scheme": "=y钡", + "httpHeaders": [ + { + "name": "167", + "value": "168" + } + ] + }, + "tcpSocket": { + "port": "169", + "host": "170" + }, + "initialDelaySeconds": -529495213, + "timeoutSeconds": 23025317, + "periodSeconds": 1727149457, + "successThreshold": 1407547486, + "failureThreshold": 1247862962 + }, "lifecycle": { "postStart": { - "exec": { - "command": [ - "164" - ] - }, - "httpGet": { - "path": "165", - "port": "166", - "host": "167", - "scheme": "ɸ殁Ka縳讋ɮ衺", - "httpHeaders": [ - { - "name": "168", - "value": "169" - } - ] - }, - "tcpSocket": { - "port": 60559686, - "host": "170" - } - }, - "preStop": { "exec": { "command": [ "171" @@ -496,316 +501,369 @@ "port": -662805900, "host": "177" } + }, + "preStop": { + "exec": { + "command": [ + "178" + ] + }, + "httpGet": { + "path": "179", + "port": 249891070, + "host": "180", + "scheme": "ɹ7\\弌Þ帺萸Do©Ǿt'容柚ʕIã陫", + "httpHeaders": [ + { + "name": "181", + "value": "182" + } + ] + }, + "tcpSocket": { + "port": 266070687, + "host": "183" + } } }, - "terminationMessagePath": "178", - "imagePullPolicy": "\u003c$洅ɹ7\\弌Þ帺萸", + "terminationMessagePath": "184", + "terminationMessagePolicy": "\")珷\u003cº", + "imagePullPolicy": "TwMȗ礼2ħ籦ö嗏ʑ\u003e季", "securityContext": { "capabilities": { "add": [ - "©Ǿt'" + "畬x骀Šĸů湙騘\u0026" ], "drop": [ - "柚ʕIã陫ʋsş\")" + "川J缮ǚbJ5ʬ" ] }, - "privileged": false, + "privileged": true, "seLinuxOptions": { - "user": "179", - "role": "180", - "type": "181", - "level": "182" + "user": "185", + "role": "186", + "type": "187", + "level": "188" }, "windowsOptions": { - "gmsaCredentialSpecName": "183", - "gmsaCredentialSpec": "184", - "runAsUserName": "185" + "gmsaCredentialSpecName": "189", + "gmsaCredentialSpec": "190", + "runAsUserName": "191" }, - "runAsUser": -8839229724144592326, - "runAsGroup": -7175248470191167216, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "揲ȼDDŽL" + "runAsUser": 570299180913049309, + "runAsGroup": -7029550403667587439, + "runAsNonRoot": false, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ蓿彭聡A" }, "stdinOnce": true } ], "containers": [ { - "name": "186", - "image": "187", + "name": "192", + "image": "193", "command": [ - "188" + "194" ], "args": [ - "189" + "195" ], - "workingDir": "190", + "workingDir": "196", "ports": [ { - "name": "191", - "hostPort": -1371063077, - "containerPort": -1103608051, - "protocol": "ƅS·Õüe0ɔȖ脵鴈Ō", - "hostIP": "192" + "name": "197", + "hostPort": -632157481, + "containerPort": -539733119, + "protocol": "楙¯ĦE勗E", + "hostIP": "198" } ], "envFrom": [ { - "prefix": "193", + "prefix": "199", "configMapRef": { - "name": "194", + "name": "200", "optional": false }, "secretRef": { - "name": "195", + "name": "201", "optional": true } } ], "env": [ { - "name": "196", - "value": "197", + "name": "202", + "value": "203", "valueFrom": { "fieldRef": { - "apiVersion": "198", - "fieldPath": "199" + "apiVersion": "204", + "fieldPath": "205" }, "resourceFieldRef": { - "containerName": "200", - "resource": "201", - "divisor": "161" + "containerName": "206", + "resource": "207", + "divisor": "177" }, "configMapKeyRef": { - "name": "202", - "key": "203", - "optional": true + "name": "208", + "key": "209", + "optional": false }, "secretKeyRef": { - "name": "204", - "key": "205", - "optional": true + "name": "210", + "key": "211", + "optional": false } } } ], "resources": { "limits": { - "ʢsɜ曢\\%枅:=ǛƓɥ踓Ǻ": "30" + "蓳嗘TʡȂŏ{sǡƟ狩鴈o_": "445" }, "requests": { - "塧ȱ蓿彭聡": "89" + "ǘ\"^饣Vȿ": "900" } }, "volumeMounts": [ { - "name": "206", - "mountPath": "207", - "subPath": "208", - "mountPropagation": "³ƞsɁ8^", - "subPathExpr": "209" + "name": "212", + "mountPath": "213", + "subPath": "214", + "mountPropagation": "怳冘HǺƶȤ^}穠C]躢|)黰eȪ嵛4", + "subPathExpr": "215" } ], "volumeDevices": [ { - "name": "210", - "devicePath": "211" + "name": "216", + "devicePath": "217" } ], "livenessProbe": { "exec": { "command": [ - "212" + "218" ] }, "httpGet": { - "path": "213", - "port": "214", - "host": "215", + "path": "219", + "port": -144591150, + "host": "220", + "scheme": "ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱\u003c", "httpHeaders": [ { - "name": "216", - "value": "217" + "name": "221", + "value": "222" } ] }, "tcpSocket": { - "port": -2068962521, - "host": "218" + "port": "223", + "host": "224" }, - "initialDelaySeconds": -155814081, - "timeoutSeconds": 744106683, - "periodSeconds": 1083816849, - "successThreshold": 1655406148, - "failureThreshold": -815194340 + "initialDelaySeconds": 1288053477, + "timeoutSeconds": -163325250, + "periodSeconds": 1607133856, + "successThreshold": 1891896870, + "failureThreshold": -1321131665 }, "readinessProbe": { "exec": { "command": [ - "219" + "225" ] }, "httpGet": { - "path": "220", - "port": "221", - "host": "222", - "scheme": " 宸@Z^嫫猤痈C*ĕʄő芖{|ǘ\"", + "path": "226", + "port": "227", + "host": "228", + "scheme": "0åȂ町恰nj揠8lj", "httpHeaders": [ { - "name": "223", - "value": "224" + "name": "229", + "value": "230" } ] }, "tcpSocket": { - "port": 1029074742, - "host": "225" + "port": -2049272966, + "host": "231" }, - "initialDelaySeconds": -1332301579, - "timeoutSeconds": -460478410, - "periodSeconds": -1318752360, - "successThreshold": -1194714697, - "failureThreshold": -2007808768 + "initialDelaySeconds": -1188153605, + "timeoutSeconds": -427769948, + "periodSeconds": 912004803, + "successThreshold": -2098817064, + "failureThreshold": 1231820696 + }, + "startupProbe": { + "exec": { + "command": [ + "232" + ] + }, + "httpGet": { + "path": "233", + "port": "234", + "host": "235", + "httpHeaders": [ + { + "name": "236", + "value": "237" + } + ] + }, + "tcpSocket": { + "port": 675406340, + "host": "238" + }, + "initialDelaySeconds": 994527057, + "timeoutSeconds": -1482763519, + "periodSeconds": -1346458591, + "successThreshold": 1234551517, + "failureThreshold": -1618937335 }, "lifecycle": { "postStart": { "exec": { "command": [ - "226" + "239" ] }, "httpGet": { - "path": "227", - "port": -1629040033, - "host": "228", - "scheme": "ʜǝ鿟ldg滠鼍ƭt", + "path": "240", + "port": "241", + "host": "242", + "scheme": "%:;栍dʪīT捘ɍi", "httpHeaders": [ { - "name": "229", - "value": "230" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": 749286488, - "host": "231" + "port": "245", + "host": "246" } }, "preStop": { "exec": { "command": [ - "232" + "247" ] }, "httpGet": { - "path": "233", - "port": "234", - "host": "235", - "scheme": "QɰVzÏ抴ŨfZhUʎ浵ɲõT", + "path": "248", + "port": -1171060347, + "host": "249", + "scheme": "咻痗ȡmƴy綸_Ú8參遼ūPH炮掊°", "httpHeaders": [ { - "name": "236", - "value": "237" + "name": "250", + "value": "251" } ] }, "tcpSocket": { - "port": "238", - "host": "239" + "port": "252", + "host": "253" } } }, - "terminationMessagePath": "240", - "terminationMessagePolicy": "蕭k ź贩j", - "imagePullPolicy": "瑥A", + "terminationMessagePath": "254", + "terminationMessagePolicy": "閼咎櫸eʔŊ", + "imagePullPolicy": "ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬", "securityContext": { "capabilities": { "add": [ - "Ɋł/擇ɦĽ胚O醔ɍ厶耈 " + "瓼猀2:öY鶪5w垁鷌辪" ], "drop": [ - "衧ȇe媹H" + "U珝Żwʮ馜üNșƶ4ĩĉ" ] }, "privileged": false, "seLinuxOptions": { - "user": "241", - "role": "242", - "type": "243", - "level": "244" + "user": "255", + "role": "256", + "type": "257", + "level": "258" }, "windowsOptions": { - "gmsaCredentialSpecName": "245", - "gmsaCredentialSpec": "246", - "runAsUserName": "247" + "gmsaCredentialSpecName": "259", + "gmsaCredentialSpec": "260", + "runAsUserName": "261" }, - "runAsUser": 7459999274215055423, - "runAsGroup": 2900848145000451690, + "runAsUser": -4642229086806245627, + "runAsGroup": 6165457529064596376, "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "ĵ" + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "" }, + "stdinOnce": true, "tty": true } ], "ephemeralContainers": [ { - "name": "248", - "image": "249", + "name": "262", + "image": "263", "command": [ - "250" + "264" ], "args": [ - "251" + "265" ], - "workingDir": "252", + "workingDir": "266", "ports": [ { - "name": "253", - "hostPort": -1477511050, - "containerPort": -1373541406, - "protocol": "栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼", - "hostIP": "254" + "name": "267", + "hostPort": -1703360754, + "containerPort": -1569009987, + "protocol": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", + "hostIP": "268" } ], "envFrom": [ { - "prefix": "255", + "prefix": "269", "configMapRef": { - "name": "256", - "optional": false + "name": "270", + "optional": true }, "secretRef": { - "name": "257", + "name": "271", "optional": false } } ], "env": [ { - "name": "258", - "value": "259", + "name": "272", + "value": "273", "valueFrom": { "fieldRef": { - "apiVersion": "260", - "fieldPath": "261" + "apiVersion": "274", + "fieldPath": "275" }, "resourceFieldRef": { - "containerName": "262", - "resource": "263", - "divisor": "233" + "containerName": "276", + "resource": "277", + "divisor": "405" }, "configMapKeyRef": { - "name": "264", - "key": "265", + "name": "278", + "key": "279", "optional": false }, "secretKeyRef": { - "name": "266", - "key": "267", + "name": "280", + "key": "281", "optional": false } } @@ -813,212 +871,243 @@ ], "resources": { "limits": { - "+ņ榱*Gưoɘ檲": "340" + "豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷": "948" }, "requests": { - "ʔŊƞ究:hoĂɋ瀐\u003cɉ湨H=å睫}堇": "690" + "": "83" } }, "volumeMounts": [ { - "name": "268", - "mountPath": "269", - "subPath": "270", - "mountPropagation": "ï瓼猀2:öY鶪5w垁", - "subPathExpr": "271" + "name": "282", + "mountPath": "283", + "subPath": "284", + "mountPropagation": "@ùƸʋŀ樺ȃv", + "subPathExpr": "285" } ], "volumeDevices": [ { - "name": "272", - "devicePath": "273" + "name": "286", + "devicePath": "287" } ], "livenessProbe": { "exec": { "command": [ - "274" + "288" ] }, "httpGet": { - "path": "275", - "port": 1434408532, - "host": "276", - "scheme": "`劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立h", + "path": "289", + "port": "290", + "host": "291", + "scheme": "Źʣy豎@ɀ羭,铻O", "httpHeaders": [ { - "name": "277", - "value": "278" + "name": "292", + "value": "293" } ] }, "tcpSocket": { - "port": "279", - "host": "280" + "port": "294", + "host": "295" }, - "initialDelaySeconds": -1628697284, - "timeoutSeconds": 843845736, - "periodSeconds": 354496320, - "successThreshold": -418887496, - "failureThreshold": -522126070 + "initialDelaySeconds": 1424053148, + "timeoutSeconds": 747521320, + "periodSeconds": 859639931, + "successThreshold": -1663149700, + "failureThreshold": -1131820775 }, "readinessProbe": { "exec": { "command": [ - "281" + "296" ] }, "httpGet": { - "path": "282", - "port": -1569009987, - "host": "283", - "scheme": "ɢǵʭd鲡:贅wE@Ȗs«öʮĀ\u003c", + "path": "297", + "port": -1710454086, + "host": "298", + "scheme": "mɩC[ó瓧", "httpHeaders": [ { - "name": "284", - "value": "285" + "name": "299", + "value": "300" } ] }, "tcpSocket": { - "port": 1702578303, - "host": "286" + "port": -122979840, + "host": "301" }, - "initialDelaySeconds": -1565157256, - "timeoutSeconds": -1113628381, - "periodSeconds": -1385586997, - "successThreshold": 460997133, - "failureThreshold": -636855511 + "initialDelaySeconds": 915577348, + "timeoutSeconds": -590798124, + "periodSeconds": -1386967282, + "successThreshold": -2030286732, + "failureThreshold": -233378149 + }, + "startupProbe": { + "exec": { + "command": [ + "302" + ] + }, + "httpGet": { + "path": "303", + "port": -495373547, + "host": "304", + "scheme": "ʼn掏1ſ盷褎weLJ", + "httpHeaders": [ + { + "name": "305", + "value": "306" + } + ] + }, + "tcpSocket": { + "port": "307", + "host": "308" + }, + "initialDelaySeconds": -929354164, + "timeoutSeconds": 1972119760, + "periodSeconds": 1582773079, + "successThreshold": -1133499416, + "failureThreshold": 486195690 }, "lifecycle": { "postStart": { "exec": { "command": [ - "287" + "309" ] }, "httpGet": { - "path": "288", - "port": "289", - "host": "290", - "scheme": "ɃHŠơŴĿǹ_Áȉ彂Ŵ廷", + "path": "310", + "port": -1589303862, + "host": "311", + "scheme": "ľǎɳ,ǿ飏騀呣ǎ", "httpHeaders": [ { - "name": "291", - "value": "292" + "name": "312", + "value": "313" } ] }, "tcpSocket": { - "port": "293", - "host": "294" + "port": "314", + "host": "315" } }, "preStop": { "exec": { "command": [ - "295" + "316" ] }, "httpGet": { - "path": "296", - "port": 1923650413, - "host": "297", - "scheme": "I粛E煹ǐƲE'iþŹʣy", + "path": "317", + "port": "318", + "host": "319", + "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", "httpHeaders": [ { - "name": "298", - "value": "299" + "name": "320", + "value": "321" } ] }, "tcpSocket": { - "port": "300", - "host": "301" + "port": "322", + "host": "323" } } }, - "terminationMessagePath": "302", - "terminationMessagePolicy": "ɀ羭,铻OŤǢʭ嵔棂p", + "terminationMessagePath": "324", + "terminationMessagePolicy": "Ȋ礶", + "imagePullPolicy": "ʁ揆ɘȌ脾嚏吐ĠLƐ", "securityContext": { "capabilities": { "add": [ - "邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ" + "3.v-鿧悮坮Ȣ" ], "drop": [ - "ɟ踡肒Ao/樝fw[Řż丩Ž" + "ļ腻ŬƩȿ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "303", - "role": "304", - "type": "305", - "level": "306" + "user": "325", + "role": "326", + "type": "327", + "level": "328" }, "windowsOptions": { - "gmsaCredentialSpecName": "307", - "gmsaCredentialSpec": "308", - "runAsUserName": "309" + "gmsaCredentialSpecName": "329", + "gmsaCredentialSpec": "330", + "runAsUserName": "331" }, - "runAsUser": -4868342918997831990, - "runAsGroup": -7799096735007368868, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "Ź9ǕLLȊɞ-uƻ悖" + "runAsUser": 9197199583783594492, + "runAsGroup": 241615716805649441, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ħsĨɆâĺ" }, "stdin": true, - "stdinOnce": true, - "targetContainerName": "310" + "tty": true, + "targetContainerName": "332" } ], - "restartPolicy": "Ƹ[Ęİ榌U髷裎$MVȟ@7", - "terminationGracePeriodSeconds": 6867982991423502362, - "activeDeadlineSeconds": -8231011499756021266, - "dnsPolicy": "ljʁ揆ɘȌ脾嚏吐ĠL", + "restartPolicy": "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶", + "terminationGracePeriodSeconds": -1689173322096612726, + "activeDeadlineSeconds": -9052689354742694982, + "dnsPolicy": "8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ", "nodeSelector": { - "311": "312" + "333": "334" }, - "serviceAccountName": "313", - "serviceAccount": "314", + "serviceAccountName": "335", + "serviceAccount": "336", "automountServiceAccountToken": false, - "nodeName": "315", + "nodeName": "337", "hostNetwork": true, - "shareProcessNamespace": true, + "hostPID": true, + "hostIPC": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "316", - "role": "317", - "type": "318", - "level": "319" + "user": "338", + "role": "339", + "type": "340", + "level": "341" }, "windowsOptions": { - "gmsaCredentialSpecName": "320", - "gmsaCredentialSpec": "321", - "runAsUserName": "322" + "gmsaCredentialSpecName": "342", + "gmsaCredentialSpec": "343", + "runAsUserName": "344" }, - "runAsUser": 1026280325317369535, - "runAsGroup": -7224326297454280417, - "runAsNonRoot": false, + "runAsUser": 7525448836100188460, + "runAsGroup": -860974700141841896, + "runAsNonRoot": true, "supplementalGroups": [ - -8078748323087142398 + 7258403424756645907 ], - "fsGroup": -3280013801707365244, + "fsGroup": 6347577485454457915, "sysctls": [ { - "name": "323", - "value": "324" + "name": "345", + "value": "346" } ] }, "imagePullSecrets": [ { - "name": "325" + "name": "347" } ], - "hostname": "326", - "subdomain": "327", + "hostname": "348", + "subdomain": "349", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1026,19 +1115,19 @@ { "matchExpressions": [ { - "key": "328", - "operator": "Ƙ枛牐ɺ皚|懥ƖN", + "key": "350", + "operator": "}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g\u003e", "values": [ - "329" + "351" ] } ], "matchFields": [ { - "key": "330", - "operator": "sĨɆâĺɗŹ倗S晒嶗U", + "key": "352", + "operator": "偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ圯W", "values": [ - "331" + "353" ] } ] @@ -1047,23 +1136,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -686523310, + "weight": -1418092595, "preference": { "matchExpressions": [ { - "key": "332", - "operator": "A", + "key": "354", + "operator": "唊#v铿", "values": [ - "333" + "355" ] } ], "matchFields": [ { - "key": "334", - "operator": "ƁÀ*f\u003c鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ", + "key": "356", + "operator": "埄趛", "values": [ - "335" + "357" ] } ] @@ -1076,46 +1165,46 @@ { "labelSelector": { "matchLabels": { - "nV.9.4..9..c_uo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p65": "Z4Gj._BXt.O-7___-Y_um-_r" + "zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6": "9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y" }, "matchExpressions": [ { - "key": "88", + "key": "8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T", "operator": "NotIn", "values": [ - "XK5._..O_.J_-G_--V-42E_--o90G_A4..-L..-__0N_N.O30-_u._-2T" + "H.I3.__-.u" ] } ] }, "namespaces": [ - "342" + "364" ], - "topologyKey": "343" + "topologyKey": "365" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1847163341, + "weight": -819013491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "xsf1gb-2-o8sdezpy--8--i--28x-8-p-lvvm-2qz7-3042t/Y7-5lL..-_--.VEa-_gn.8-c.C3F": "34_.-_-_-...1py_8-7" + "x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2": "Ns-o779._-k5" }, "matchExpressions": [ { - "key": "293-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/qu_0S-CqW.D_8--21kF-c026.-iT1", - "operator": "In", + "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": [ - "v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tv3" + "G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X" ] } ] }, "namespaces": [ - "350" + "372" ], - "topologyKey": "351" + "topologyKey": "373" } } ] @@ -1125,106 +1214,109 @@ { "labelSelector": { "matchLabels": { - "K_A-_9_Z_C..7o_x3..-.8-Jp-94": "Tm.__G-8...__.Q_c8.G.b_9_18" + "xm-.nx.sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" }, "matchExpressions": [ { - "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q", - "operator": "DoesNotExist" + "key": "v8_.O_..8n.--z_-..6W.K", + "operator": "Exists" } ] }, "namespaces": [ - "358" + "380" ], - "topologyKey": "359" + "topologyKey": "381" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1008425444, + "weight": -168773629, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "x-_.--Q": "3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn" + "x-3/6-.7D.3_KPgL": "d._.Um.-__k.5" }, "matchExpressions": [ { - "key": "Ue_l2.._8s--Z", + "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", "operator": "In", "values": [ - "A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a" + "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw" ] } ] }, "namespaces": [ - "366" + "388" ], - "topologyKey": "367" + "topologyKey": "389" } } ] } }, - "schedulerName": "368", + "schedulerName": "390", "tolerations": [ { - "key": "369", - "operator": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽", - "value": "370", - "effect": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj", - "tolerationSeconds": -5478084374918590218 + "key": "391", + "operator": "栣险¹贮獘薟8Mĕ霉", + "value": "392", + "effect": "ŪǗȦɆ悼j蛑q", + "tolerationSeconds": 4375148957048018073 } ], "hostAliases": [ { - "ip": "371", + "ip": "393", "hostnames": [ - "372" + "394" ] } ], - "priorityClassName": "373", - "priority": -470149352, + "priorityClassName": "395", + "priority": -1286809305, "dnsConfig": { "nameservers": [ - "374" + "396" ], "searches": [ - "375" + "397" ], "options": [ { - "name": "376", - "value": "377" + "name": "398", + "value": "399" } ] }, "readinessGates": [ { - "conditionType": " ɲ±" + "conditionType": "ųŎ群E牬庘颮6(|ǖû" } ], - "runtimeClassName": "378", - "enableServiceLinks": true, - "preemptionPolicy": "厶s", + "runtimeClassName": "400", + "enableServiceLinks": false, + "preemptionPolicy": "怨彬ɈNƋl塠傫ü", "overhead": { - "Ö埡ÆɰŞ襵樞úʥ銀ƨ": "837" + "ɮ6)": "299" }, "topologySpreadConstraints": [ { - "maxSkew": 558113557, - "topologyKey": "379", - "whenUnsatisfiable": "ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈", + "maxSkew": -554557703, + "topologyKey": "401", + "whenUnsatisfiable": "¹t骳ɰɰUʜʔŜ0¢", "labelSelector": { "matchLabels": { - "1rhm-5y--z-0/5eQ9": "dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX" + "o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l": "b-L7.-__-G_2kCpS__.3g" }, "matchExpressions": [ { - "key": "7Vz_6.Hz_V_.r_v_._X", - "operator": "Exists" + "key": "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", + "operator": "In", + "values": [ + "7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx" + ] } ] } @@ -1232,164 +1324,167 @@ ] }, "status": { - "phase": "È娒", + "phase": "ș", "conditions": [ { - "type": "滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼɏ眞a", - "status": "vĝ線", - "lastProbeTime": "2465-07-24T08:03:04Z", - "lastTransitionTime": "2131-08-12T04:27:09Z", - "reason": "386", - "message": "387" + "type": "ļė[BN柌ë娒汙查o*Ĵ麻齔試", + "status": "昒", + "lastProbeTime": "2756-02-27T11:08:58Z", + "lastTransitionTime": "2296-12-01T04:10:44Z", + "reason": "408", + "message": "409" } ], - "message": "388", - "reason": "389", - "nominatedNodeName": "390", - "hostIP": "391", - "podIP": "392", + "message": "410", + "reason": "411", + "nominatedNodeName": "412", + "hostIP": "413", + "podIP": "414", "podIPs": [ { - "ip": "393" + "ip": "415" } ], "initContainerStatuses": [ { - "name": "394", + "name": "416", "state": { "waiting": { - "reason": "395", - "message": "396" + "reason": "417", + "message": "418" }, "running": { - "startedAt": "2699-03-03T11:43:14Z" + "startedAt": "1972-12-08T08:30:11Z" }, "terminated": { - "exitCode": -487554832, - "signal": -1458824094, - "reason": "397", - "message": "398", - "startedAt": "2650-06-04T03:54:12Z", - "finishedAt": "2165-11-13T17:55:54Z", - "containerID": "399" + "exitCode": -1817503524, + "signal": 1558801645, + "reason": "419", + "message": "420", + "startedAt": "2746-03-08T01:39:40Z", + "finishedAt": "2341-12-07T04:14:17Z", + "containerID": "421" } }, "lastState": { "waiting": { - "reason": "400", - "message": "401" + "reason": "422", + "message": "423" }, "running": { - "startedAt": "2680-07-27T09:14:15Z" + "startedAt": "2329-01-28T22:43:42Z" }, "terminated": { - "exitCode": -1323934223, - "signal": 1811345317, - "reason": "402", - "message": "403", - "startedAt": "2009-06-10T11:07:42Z", - "finishedAt": "2653-08-15T17:19:10Z", - "containerID": "404" + "exitCode": -545370104, + "signal": 1235883803, + "reason": "424", + "message": "425", + "startedAt": "2419-03-20T05:43:22Z", + "finishedAt": "2821-07-19T11:49:26Z", + "containerID": "426" } }, "ready": true, - "restartCount": -669668722, - "image": "405", - "imageID": "406", - "containerID": "407" + "restartCount": -810338968, + "image": "427", + "imageID": "428", + "containerID": "429", + "started": false } ], "containerStatuses": [ { - "name": "408", + "name": "430", "state": { "waiting": { - "reason": "409", - "message": "410" + "reason": "431", + "message": "432" }, "running": { - "startedAt": "2910-08-04T23:16:20Z" + "startedAt": "2403-04-11T00:06:43Z" }, "terminated": { - "exitCode": -2042274216, - "signal": -1026421474, - "reason": "411", - "message": "412", - "startedAt": "2340-08-23T19:32:20Z", - "finishedAt": "2130-10-01T13:09:33Z", - "containerID": "413" + "exitCode": -173761204, + "signal": 332998836, + "reason": "433", + "message": "434", + "startedAt": "2196-05-31T08:51:58Z", + "finishedAt": "2580-08-27T04:54:10Z", + "containerID": "435" } }, "lastState": { "waiting": { - "reason": "414", - "message": "415" + "reason": "436", + "message": "437" }, "running": { - "startedAt": "2322-06-23T07:29:40Z" + "startedAt": "2878-09-11T10:26:17Z" }, "terminated": { - "exitCode": -2077151483, - "signal": -1445105091, - "reason": "416", - "message": "417", - "startedAt": "2339-04-15T07:12:52Z", - "finishedAt": "2110-11-12T13:53:35Z", - "containerID": "418" + "exitCode": -1569123121, + "signal": 199195373, + "reason": "438", + "message": "439", + "startedAt": "2873-01-20T06:54:43Z", + "finishedAt": "2454-07-07T22:08:36Z", + "containerID": "440" } }, "ready": false, - "restartCount": -1636829866, - "image": "419", - "imageID": "420", - "containerID": "421" + "restartCount": 568619460, + "image": "441", + "imageID": "442", + "containerID": "443", + "started": false } ], - "qosClass": "Ƃ室逎ũ嵫蹈^ä狊ʍ誫盄灆!CU", + "qosClass": "刣ȱǍ;ġ縊CkǚŨ", "ephemeralContainerStatuses": [ { - "name": "422", + "name": "444", "state": { "waiting": { - "reason": "423", - "message": "424" + "reason": "445", + "message": "446" }, "running": { - "startedAt": "2607-12-09T22:58:28Z" + "startedAt": "2807-07-11T05:23:59Z" }, "terminated": { - "exitCode": 2032610456, - "signal": -1362748904, - "reason": "425", - "message": "426", - "startedAt": "2529-07-24T00:07:59Z", - "finishedAt": "2821-04-28T19:08:43Z", - "containerID": "427" + "exitCode": -496491540, + "signal": -1067633812, + "reason": "447", + "message": "448", + "startedAt": "2536-08-25T03:52:32Z", + "finishedAt": "2142-06-11T22:09:32Z", + "containerID": "449" } }, "lastState": { "waiting": { - "reason": "428", - "message": "429" + "reason": "450", + "message": "451" }, "running": { - "startedAt": "2592-05-16T21:14:28Z" + "startedAt": "2890-09-01T10:48:08Z" }, "terminated": { - "exitCode": -895435430, - "signal": 1367729918, - "reason": "430", - "message": "431", - "startedAt": "2794-06-28T13:30:00Z", - "finishedAt": "2880-09-08T02:30:33Z", - "containerID": "432" + "exitCode": 233999136, + "signal": 1701016188, + "reason": "452", + "message": "453", + "startedAt": "2420-06-19T09:33:57Z", + "finishedAt": "2387-07-09T16:21:33Z", + "containerID": "454" } }, - "ready": true, - "restartCount": 1785084309, - "image": "433", - "imageID": "434", - "containerID": "435" + "ready": false, + "restartCount": 1730285145, + "image": "455", + "imageID": "456", + "containerID": "457", + "started": true } ] } 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 00b0546533a..de5c444aeb5 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 c709e7228ce..c98f6d373d0 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,409 +30,453 @@ metadata: selfLink: "5" uid: "7" spec: - activeDeadlineSeconds: -8231011499756021266 + activeDeadlineSeconds: -9052689354742694982 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "332" - operator: A + - key: "354" + operator: 唊#v铿 values: - - "333" + - "355" matchFields: - - key: "334" - operator: ƁÀ*f<鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ + - key: "356" + operator: 埄趛 values: - - "335" - weight: -686523310 + - "357" + weight: -1418092595 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "328" - operator: Ƙ枛牐ɺ皚|懥ƖN + - key: "350" + operator: '}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g>' values: - - "329" + - "351" matchFields: - - key: "330" - operator: sĨɆâĺɗŹ倗S晒嶗U + - key: "352" + operator: 偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ圯W values: - - "331" + - "353" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 293-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/qu_0S-CqW.D_8--21kF-c026.-iT1 - operator: In + - 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: - - v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tv3 + - G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X matchLabels: - xsf1gb-2-o8sdezpy--8--i--28x-8-p-lvvm-2qz7-3042t/Y7-5lL..-_--.VEa-_gn.8-c.C3F: 34_.-_-_-...1py_8-7 + x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2: Ns-o779._-k5 namespaces: - - "350" - topologyKey: "351" - weight: 1847163341 + - "372" + topologyKey: "373" + weight: -819013491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: "88" + - key: 8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T operator: NotIn values: - - XK5._..O_.J_-G_--V-42E_--o90G_A4..-L..-__0N_N.O30-_u._-2T + - H.I3.__-.u matchLabels: - nV.9.4..9..c_uo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p65: Z4Gj._BXt.O-7___-Y_um-_r + zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6: 9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y namespaces: - - "342" - topologyKey: "343" + - "364" + topologyKey: "365" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: Ue_l2.._8s--Z + - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C operator: In values: - - A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a + - p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw matchLabels: - x-_.--Q: 3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn + x-3/6-.7D.3_KPgL: d._.Um.-__k.5 namespaces: - - "366" - topologyKey: "367" - weight: 1008425444 + - "388" + topologyKey: "389" + weight: -168773629 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q - operator: DoesNotExist + - key: v8_.O_..8n.--z_-..6W.K + operator: Exists matchLabels: - K_A-_9_Z_C..7o_x3..-.8-Jp-94: Tm.__G-8...__.Q_c8.G.b_9_18 + xm-.nx.sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 namespaces: - - "358" - topologyKey: "359" + - "380" + topologyKey: "381" automountServiceAccountToken: false containers: - args: - - "189" + - "195" command: - - "188" + - "194" env: - - name: "196" - value: "197" + - name: "202" + value: "203" valueFrom: configMapKeyRef: - key: "203" - name: "202" - optional: true + key: "209" + name: "208" + optional: false fieldRef: - apiVersion: "198" - fieldPath: "199" + apiVersion: "204" + fieldPath: "205" resourceFieldRef: - containerName: "200" - divisor: "161" - resource: "201" + containerName: "206" + divisor: "177" + resource: "207" secretKeyRef: - key: "205" - name: "204" - optional: true + key: "211" + name: "210" + optional: false envFrom: - configMapRef: - name: "194" + name: "200" optional: false - prefix: "193" + prefix: "199" secretRef: - name: "195" + name: "201" optional: true - image: "187" - imagePullPolicy: 瑥A + image: "193" + imagePullPolicy: ȓƇ$缔獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬 lifecycle: postStart: exec: command: - - "226" + - "239" httpGet: - host: "228" + host: "242" httpHeaders: - - name: "229" - value: "230" - path: "227" - port: -1629040033 - scheme: ʜǝ鿟ldg滠鼍ƭt + - name: "243" + value: "244" + path: "240" + port: "241" + scheme: '%:;栍dʪīT捘ɍi' tcpSocket: - host: "231" - port: 749286488 + host: "246" + port: "245" preStop: exec: command: - - "232" + - "247" httpGet: - host: "235" + host: "249" httpHeaders: - - name: "236" - value: "237" - path: "233" - port: "234" - scheme: QɰVzÏ抴ŨfZhUʎ浵ɲõT + - name: "250" + value: "251" + path: "248" + port: -1171060347 + scheme: 咻痗ȡmƴy綸_Ú8參遼ūPH炮掊° tcpSocket: - host: "239" - port: "238" + host: "253" + port: "252" livenessProbe: exec: command: - - "212" - failureThreshold: -815194340 + - "218" + failureThreshold: -1321131665 httpGet: - host: "215" + host: "220" httpHeaders: - - name: "216" - value: "217" - path: "213" - port: "214" - initialDelaySeconds: -155814081 - periodSeconds: 1083816849 - successThreshold: 1655406148 + - name: "221" + value: "222" + path: "219" + port: -144591150 + scheme: ƛƟ)ÙæNǚ錯ƶRquA?瞲Ť倱< + initialDelaySeconds: 1288053477 + periodSeconds: 1607133856 + successThreshold: 1891896870 tcpSocket: - host: "218" - port: -2068962521 - timeoutSeconds: 744106683 - name: "186" + host: "224" + port: "223" + timeoutSeconds: -163325250 + name: "192" ports: - - containerPort: -1103608051 - hostIP: "192" - hostPort: -1371063077 - name: "191" - protocol: ƅS·Õüe0ɔȖ脵鴈Ō + - containerPort: -539733119 + hostIP: "198" + hostPort: -632157481 + name: "197" + protocol: 楙¯ĦE勗E readinessProbe: exec: command: - - "219" - failureThreshold: -2007808768 + - "225" + failureThreshold: 1231820696 httpGet: - host: "222" + host: "228" httpHeaders: - - name: "223" - value: "224" - path: "220" - port: "221" - scheme: ' 宸@Z^嫫猤痈C*ĕʄő芖{|ǘ"' - initialDelaySeconds: -1332301579 - periodSeconds: -1318752360 - successThreshold: -1194714697 + - name: "229" + value: "230" + path: "226" + port: "227" + scheme: 0åȂ町恰nj揠8lj + initialDelaySeconds: -1188153605 + periodSeconds: 912004803 + successThreshold: -2098817064 tcpSocket: - host: "225" - port: 1029074742 - timeoutSeconds: -460478410 + host: "231" + port: -2049272966 + timeoutSeconds: -427769948 resources: limits: - ʢsɜ曢\%枅:=ǛƓɥ踓Ǻ: "30" + 蓳嗘TʡȂŏ{sǡƟ狩鴈o_: "445" requests: - 塧ȱ蓿彭聡: "89" + ǘ"^饣Vȿ: "900" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Ɋł/擇ɦĽ胚O醔ɍ厶耈  + - 瓼猀2:öY鶪5w垁鷌辪 drop: - - 衧ȇe媹H + - U珝Żwʮ馜üNșƶ4ĩĉ privileged: false - procMount: ĵ - readOnlyRootFilesystem: true - runAsGroup: 2900848145000451690 + procMount: "" + readOnlyRootFilesystem: false + runAsGroup: 6165457529064596376 runAsNonRoot: false - runAsUser: 7459999274215055423 + runAsUser: -4642229086806245627 seLinuxOptions: - level: "244" - role: "242" - type: "243" - user: "241" + level: "258" + role: "256" + type: "257" + user: "255" windowsOptions: - gmsaCredentialSpec: "246" - gmsaCredentialSpecName: "245" - runAsUserName: "247" - terminationMessagePath: "240" - terminationMessagePolicy: 蕭k ź贩j + gmsaCredentialSpec: "260" + gmsaCredentialSpecName: "259" + runAsUserName: "261" + startupProbe: + exec: + command: + - "232" + failureThreshold: -1618937335 + httpGet: + host: "235" + httpHeaders: + - name: "236" + value: "237" + path: "233" + port: "234" + initialDelaySeconds: 994527057 + periodSeconds: -1346458591 + successThreshold: 1234551517 + tcpSocket: + host: "238" + port: 675406340 + timeoutSeconds: -1482763519 + stdinOnce: true + terminationMessagePath: "254" + terminationMessagePolicy: 閼咎櫸eʔŊ tty: true volumeDevices: - - devicePath: "211" - name: "210" + - devicePath: "217" + name: "216" volumeMounts: - - mountPath: "207" - mountPropagation: ³ƞsɁ8^ - name: "206" - subPath: "208" - subPathExpr: "209" - workingDir: "190" + - mountPath: "213" + mountPropagation: 怳冘HǺƶȤ^}穠C]躢|)黰eȪ嵛4 + name: "212" + subPath: "214" + subPathExpr: "215" + workingDir: "196" dnsConfig: nameservers: - - "374" + - "396" options: - - name: "376" - value: "377" + - name: "398" + value: "399" searches: - - "375" - dnsPolicy: ljʁ揆ɘȌ脾嚏吐ĠL - enableServiceLinks: true + - "397" + dnsPolicy: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ + enableServiceLinks: false ephemeralContainers: - args: - - "251" + - "265" command: - - "250" + - "264" env: - - name: "258" - value: "259" + - name: "272" + value: "273" valueFrom: configMapKeyRef: - key: "265" - name: "264" + key: "279" + name: "278" optional: false fieldRef: - apiVersion: "260" - fieldPath: "261" + apiVersion: "274" + fieldPath: "275" resourceFieldRef: - containerName: "262" - divisor: "233" - resource: "263" + containerName: "276" + divisor: "405" + resource: "277" secretKeyRef: - key: "267" - name: "266" + key: "281" + name: "280" optional: false envFrom: - configMapRef: - name: "256" - optional: false - prefix: "255" + name: "270" + optional: true + prefix: "269" secretRef: - name: "257" + name: "271" optional: false - image: "249" + image: "263" + imagePullPolicy: ʁ揆ɘȌ脾嚏吐ĠLƐ lifecycle: postStart: exec: command: - - "287" + - "309" httpGet: - host: "290" + host: "311" httpHeaders: - - name: "291" - value: "292" - path: "288" - port: "289" - scheme: ɃHŠơŴĿǹ_Áȉ彂Ŵ廷 + - name: "312" + value: "313" + path: "310" + port: -1589303862 + scheme: ľǎɳ,ǿ飏騀呣ǎ tcpSocket: - host: "294" - port: "293" + host: "315" + port: "314" preStop: exec: command: - - "295" + - "316" httpGet: - host: "297" + host: "319" httpHeaders: - - name: "298" - value: "299" - path: "296" - port: 1923650413 - scheme: I粛E煹ǐƲE'iþŹʣy + - name: "320" + value: "321" + path: "317" + port: "318" + scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 tcpSocket: - host: "301" - port: "300" + host: "323" + port: "322" livenessProbe: exec: command: - - "274" - failureThreshold: -522126070 + - "288" + failureThreshold: -1131820775 httpGet: - host: "276" + host: "291" httpHeaders: - - name: "277" - value: "278" - path: "275" - port: 1434408532 - scheme: '`劳&¼傭Ȟ1酃=6}ɡŇƉ立h' - initialDelaySeconds: -1628697284 - periodSeconds: 354496320 - successThreshold: -418887496 + - name: "292" + value: "293" + path: "289" + port: "290" + scheme: Źʣy豎@ɀ羭,铻O + initialDelaySeconds: 1424053148 + periodSeconds: 859639931 + successThreshold: -1663149700 tcpSocket: - host: "280" - port: "279" - timeoutSeconds: 843845736 - name: "248" + host: "295" + port: "294" + timeoutSeconds: 747521320 + name: "262" ports: - - containerPort: -1373541406 - hostIP: "254" - hostPort: -1477511050 - name: "253" - protocol: 栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼 + - containerPort: -1569009987 + hostIP: "268" + hostPort: -1703360754 + name: "267" + protocol: ɢǵʭd鲡:贅wE@Ȗs«öʮĀ< readinessProbe: exec: command: - - "281" - failureThreshold: -636855511 + - "296" + failureThreshold: -233378149 httpGet: - host: "283" + host: "298" httpHeaders: - - name: "284" - value: "285" - path: "282" - port: -1569009987 - scheme: ɢǵʭd鲡:贅wE@Ȗs«öʮĀ< - initialDelaySeconds: -1565157256 - periodSeconds: -1385586997 - successThreshold: 460997133 + - name: "299" + value: "300" + path: "297" + port: -1710454086 + scheme: mɩC[ó瓧 + initialDelaySeconds: 915577348 + periodSeconds: -1386967282 + successThreshold: -2030286732 tcpSocket: - host: "286" - port: 1702578303 - timeoutSeconds: -1113628381 + host: "301" + port: -122979840 + timeoutSeconds: -590798124 resources: limits: - +ņ榱*Gưoɘ檲: "340" + 豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷: "948" requests: - ʔŊƞ究:hoĂɋ瀐<ɉ湨H=å睫}堇: "690" + "": "83" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ + - 3.v-鿧悮坮Ȣ drop: - - ɟ踡肒Ao/樝fw[Řż丩Ž - privileged: true - procMount: Ź9ǕLLȊɞ-uƻ悖 - readOnlyRootFilesystem: true - runAsGroup: -7799096735007368868 - runAsNonRoot: false - runAsUser: -4868342918997831990 + - ļ腻ŬƩȿ + privileged: false + procMount: ħsĨɆâĺ + readOnlyRootFilesystem: false + runAsGroup: 241615716805649441 + runAsNonRoot: true + runAsUser: 9197199583783594492 seLinuxOptions: - level: "306" - role: "304" - type: "305" - user: "303" + level: "328" + role: "326" + type: "327" + user: "325" windowsOptions: - gmsaCredentialSpec: "308" - gmsaCredentialSpecName: "307" - runAsUserName: "309" + gmsaCredentialSpec: "330" + gmsaCredentialSpecName: "329" + runAsUserName: "331" + startupProbe: + exec: + command: + - "302" + failureThreshold: 486195690 + httpGet: + host: "304" + httpHeaders: + - name: "305" + value: "306" + path: "303" + port: -495373547 + scheme: ʼn掏1ſ盷褎weLJ + initialDelaySeconds: -929354164 + periodSeconds: 1582773079 + successThreshold: -1133499416 + tcpSocket: + host: "308" + port: "307" + timeoutSeconds: 1972119760 stdin: true - stdinOnce: true - targetContainerName: "310" - terminationMessagePath: "302" - terminationMessagePolicy: ɀ羭,铻OŤǢʭ嵔棂p + targetContainerName: "332" + terminationMessagePath: "324" + terminationMessagePolicy: Ȋ礶 + tty: true volumeDevices: - - devicePath: "273" - name: "272" + - devicePath: "287" + name: "286" volumeMounts: - - mountPath: "269" - mountPropagation: ï瓼猀2:öY鶪5w垁 - name: "268" - subPath: "270" - subPathExpr: "271" - workingDir: "252" + - mountPath: "283" + mountPropagation: '@ùƸʋŀ樺ȃv' + name: "282" + subPath: "284" + subPathExpr: "285" + workingDir: "266" hostAliases: - hostnames: - - "372" - ip: "371" + - "394" + ip: "393" + hostIPC: true hostNetwork: true - hostname: "326" + hostPID: true + hostname: "348" imagePullSecrets: - - name: "325" + - name: "347" initContainers: - args: - "127" @@ -466,24 +510,9 @@ spec: name: "133" optional: true image: "125" - imagePullPolicy: <$洅ɹ7\弌Þ帺萸 + imagePullPolicy: TwMȗ礼2ħ籦ö嗏ʑ>季 lifecycle: postStart: - exec: - command: - - "164" - httpGet: - host: "167" - httpHeaders: - - name: "168" - value: "169" - path: "165" - port: "166" - scheme: ɸ殁Ka縳讋ɮ衺 - tcpSocket: - host: "170" - port: 60559686 - preStop: exec: command: - "171" @@ -498,6 +527,21 @@ spec: tcpSocket: host: "177" port: -662805900 + preStop: + exec: + command: + - "178" + httpGet: + host: "180" + httpHeaders: + - name: "181" + value: "182" + path: "179" + port: 249891070 + scheme: ɹ7\弌Þ帺萸Do©Ǿt'容柚ʕIã陫 + tcpSocket: + host: "183" + port: 266070687 livenessProbe: exec: command: @@ -550,29 +594,50 @@ spec: requests: 鄸靇杧ž譋娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳: "781" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - ©Ǿt' + - 畬x骀Šĸů湙騘& drop: - - 柚ʕIã陫ʋsş") - privileged: false - procMount: 揲ȼDDŽL - readOnlyRootFilesystem: true - runAsGroup: -7175248470191167216 - runAsNonRoot: true - runAsUser: -8839229724144592326 + - 川J缮ǚbJ5ʬ + privileged: true + procMount: '`诫z徃鷢6ȥ啕禗Ǐ2啗塧ȱ蓿彭聡A' + readOnlyRootFilesystem: false + runAsGroup: -7029550403667587439 + runAsNonRoot: false + runAsUser: 570299180913049309 seLinuxOptions: - level: "182" - role: "180" - type: "181" - user: "179" + level: "188" + role: "186" + type: "187" + user: "185" windowsOptions: - gmsaCredentialSpec: "184" - gmsaCredentialSpecName: "183" - runAsUserName: "185" + gmsaCredentialSpec: "190" + gmsaCredentialSpecName: "189" + runAsUserName: "191" + startupProbe: + exec: + command: + - "164" + failureThreshold: 1247862962 + httpGet: + host: "166" + httpHeaders: + - name: "167" + value: "168" + path: "165" + port: 1693510057 + scheme: =y钡 + initialDelaySeconds: -529495213 + periodSeconds: 1727149457 + successThreshold: 1407547486 + tcpSocket: + host: "170" + port: "169" + timeoutSeconds: 23025317 stdinOnce: true - terminationMessagePath: "178" + terminationMessagePath: "184" + terminationMessagePolicy: '")珷<º' volumeDevices: - devicePath: "149" name: "148" @@ -584,59 +649,61 @@ spec: subPath: "146" subPathExpr: "147" workingDir: "128" - nodeName: "315" + nodeName: "337" nodeSelector: - "311": "312" + "333": "334" overhead: - Ö埡ÆɰŞ襵樞úʥ銀ƨ: "837" - preemptionPolicy: 厶s - priority: -470149352 - priorityClassName: "373" + ɮ6): "299" + preemptionPolicy: 怨彬ɈNƋl塠傫ü + priority: -1286809305 + priorityClassName: "395" readinessGates: - - conditionType: ' ɲ±' - restartPolicy: Ƹ[Ęİ榌U髷裎$MVȟ@7 - runtimeClassName: "378" - schedulerName: "368" + - conditionType: ųŎ群E牬庘颮6(|ǖû + restartPolicy: 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶 + runtimeClassName: "400" + schedulerName: "390" securityContext: - fsGroup: -3280013801707365244 - runAsGroup: -7224326297454280417 - runAsNonRoot: false - runAsUser: 1026280325317369535 + fsGroup: 6347577485454457915 + runAsGroup: -860974700141841896 + runAsNonRoot: true + runAsUser: 7525448836100188460 seLinuxOptions: - level: "319" - role: "317" - type: "318" - user: "316" + level: "341" + role: "339" + type: "340" + user: "338" supplementalGroups: - - -8078748323087142398 + - 7258403424756645907 sysctls: - - name: "323" - value: "324" + - name: "345" + value: "346" windowsOptions: - gmsaCredentialSpec: "321" - gmsaCredentialSpecName: "320" - runAsUserName: "322" - serviceAccount: "314" - serviceAccountName: "313" - shareProcessNamespace: true - subdomain: "327" - terminationGracePeriodSeconds: 6867982991423502362 + gmsaCredentialSpec: "343" + gmsaCredentialSpecName: "342" + runAsUserName: "344" + serviceAccount: "336" + serviceAccountName: "335" + shareProcessNamespace: false + subdomain: "349" + terminationGracePeriodSeconds: -1689173322096612726 tolerations: - - effect: 委>,趐V曡88 u怞荊ù灹8緔Tj - key: "369" - operator: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ鮽 - tolerationSeconds: -5478084374918590218 - value: "370" + - effect: ŪǗȦɆ悼j蛑q + key: "391" + operator: 栣险¹贮獘薟8Mĕ霉 + tolerationSeconds: 4375148957048018073 + value: "392" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 7Vz_6.Hz_V_.r_v_._X - operator: Exists + - key: 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 + operator: In + values: + - 7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx matchLabels: - 1rhm-5y--z-0/5eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX - maxSkew: 558113557 - topologyKey: "379" - whenUnsatisfiable: ĵ'o儿Ƭ銭u裡_Ơ9oÕęȄ怈 + o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l: b-L7.-__-G_2kCpS__.3g + maxSkew: -554557703 + topologyKey: "401" + whenUnsatisfiable: ¹t骳ɰɰUʜʔŜ0¢ volumes: - awsElasticBlockStore: fsType: "24" @@ -834,123 +901,126 @@ spec: volumePath: "78" status: conditions: - - lastProbeTime: "2465-07-24T08:03:04Z" - lastTransitionTime: "2131-08-12T04:27:09Z" - message: "387" - reason: "386" - status: vĝ線 - type: 滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼɏ眞a + - lastProbeTime: "2756-02-27T11:08:58Z" + lastTransitionTime: "2296-12-01T04:10:44Z" + message: "409" + reason: "408" + status: 昒 + type: ļė[BN柌ë娒汙查o*Ĵ麻齔試 containerStatuses: - - containerID: "421" - image: "419" - imageID: "420" + - containerID: "443" + image: "441" + imageID: "442" lastState: running: - startedAt: "2322-06-23T07:29:40Z" + startedAt: "2878-09-11T10:26:17Z" terminated: - containerID: "418" - exitCode: -2077151483 - finishedAt: "2110-11-12T13:53:35Z" - message: "417" - reason: "416" - signal: -1445105091 - startedAt: "2339-04-15T07:12:52Z" + containerID: "440" + exitCode: -1569123121 + finishedAt: "2454-07-07T22:08:36Z" + message: "439" + reason: "438" + signal: 199195373 + startedAt: "2873-01-20T06:54:43Z" waiting: - message: "415" - reason: "414" - name: "408" + message: "437" + reason: "436" + name: "430" ready: false - restartCount: -1636829866 + restartCount: 568619460 + started: false state: running: - startedAt: "2910-08-04T23:16:20Z" + startedAt: "2403-04-11T00:06:43Z" terminated: - containerID: "413" - exitCode: -2042274216 - finishedAt: "2130-10-01T13:09:33Z" - message: "412" - reason: "411" - signal: -1026421474 - startedAt: "2340-08-23T19:32:20Z" + containerID: "435" + exitCode: -173761204 + finishedAt: "2580-08-27T04:54:10Z" + message: "434" + reason: "433" + signal: 332998836 + startedAt: "2196-05-31T08:51:58Z" waiting: - message: "410" - reason: "409" + message: "432" + reason: "431" ephemeralContainerStatuses: - - containerID: "435" - image: "433" - imageID: "434" + - containerID: "457" + image: "455" + imageID: "456" lastState: running: - startedAt: "2592-05-16T21:14:28Z" + startedAt: "2890-09-01T10:48:08Z" terminated: - containerID: "432" - exitCode: -895435430 - finishedAt: "2880-09-08T02:30:33Z" - message: "431" - reason: "430" - signal: 1367729918 - startedAt: "2794-06-28T13:30:00Z" + containerID: "454" + exitCode: 233999136 + finishedAt: "2387-07-09T16:21:33Z" + message: "453" + reason: "452" + signal: 1701016188 + startedAt: "2420-06-19T09:33:57Z" waiting: - message: "429" - reason: "428" - name: "422" - ready: true - restartCount: 1785084309 + message: "451" + reason: "450" + name: "444" + ready: false + restartCount: 1730285145 + started: true state: running: - startedAt: "2607-12-09T22:58:28Z" + startedAt: "2807-07-11T05:23:59Z" terminated: - containerID: "427" - exitCode: 2032610456 - finishedAt: "2821-04-28T19:08:43Z" - message: "426" - reason: "425" - signal: -1362748904 - startedAt: "2529-07-24T00:07:59Z" + containerID: "449" + exitCode: -496491540 + finishedAt: "2142-06-11T22:09:32Z" + message: "448" + reason: "447" + signal: -1067633812 + startedAt: "2536-08-25T03:52:32Z" waiting: - message: "424" - reason: "423" - hostIP: "391" + message: "446" + reason: "445" + hostIP: "413" initContainerStatuses: - - containerID: "407" - image: "405" - imageID: "406" + - containerID: "429" + image: "427" + imageID: "428" lastState: running: - startedAt: "2680-07-27T09:14:15Z" + startedAt: "2329-01-28T22:43:42Z" terminated: - containerID: "404" - exitCode: -1323934223 - finishedAt: "2653-08-15T17:19:10Z" - message: "403" - reason: "402" - signal: 1811345317 - startedAt: "2009-06-10T11:07:42Z" + containerID: "426" + exitCode: -545370104 + finishedAt: "2821-07-19T11:49:26Z" + message: "425" + reason: "424" + signal: 1235883803 + startedAt: "2419-03-20T05:43:22Z" waiting: - message: "401" - reason: "400" - name: "394" + message: "423" + reason: "422" + name: "416" ready: true - restartCount: -669668722 + restartCount: -810338968 + started: false state: running: - startedAt: "2699-03-03T11:43:14Z" + startedAt: "1972-12-08T08:30:11Z" terminated: - containerID: "399" - exitCode: -487554832 - finishedAt: "2165-11-13T17:55:54Z" - message: "398" - reason: "397" - signal: -1458824094 - startedAt: "2650-06-04T03:54:12Z" + containerID: "421" + exitCode: -1817503524 + finishedAt: "2341-12-07T04:14:17Z" + message: "420" + reason: "419" + signal: 1558801645 + startedAt: "2746-03-08T01:39:40Z" waiting: - message: "396" - reason: "395" - message: "388" - nominatedNodeName: "390" - phase: È娒 - podIP: "392" + message: "418" + reason: "417" + message: "410" + nominatedNodeName: "412" + phase: ș + podIP: "414" podIPs: - - ip: "393" - qosClass: Ƃ室逎ũ嵫蹈^ä狊ʍ誫盄灆!CU - reason: "389" + - ip: "415" + qosClass: 刣ȱǍ;ġ縊CkǚŨ + reason: "411" diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json index 5f5a58ea7e1..2322dba693d 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json @@ -105,7 +105,8 @@ "restartCount": -734360256, "image": "38", "imageID": "39", - "containerID": "40" + "containerID": "40", + "started": false } ], "containerStatuses": [ @@ -117,15 +118,15 @@ "message": "43" }, "running": { - "startedAt": "2149-06-18T16:38:18Z" + "startedAt": "2943-08-01T13:09:15Z" }, "terminated": { - "exitCode": 254375933, - "signal": 523306325, + "exitCode": 523306325, + "signal": -1639873916, "reason": "44", "message": "45", - "startedAt": "2874-05-09T23:28:59Z", - "finishedAt": "2516-08-23T06:28:28Z", + "startedAt": "2680-06-15T09:55:37Z", + "finishedAt": "2320-11-04T10:48:57Z", "containerID": "46" } }, @@ -135,26 +136,27 @@ "message": "48" }, "running": { - "startedAt": "2835-11-08T19:46:44Z" + "startedAt": "2283-08-16T02:57:13Z" }, "terminated": { - "exitCode": 705385560, - "signal": -1876826602, + "exitCode": -1876826602, + "signal": -1134418089, "reason": "49", "message": "50", - "startedAt": "2380-12-20T20:55:16Z", - "finishedAt": "2801-08-27T04:51:34Z", + "startedAt": "2103-08-02T14:34:54Z", + "finishedAt": "2485-12-31T11:06:30Z", "containerID": "51" } }, - "ready": false, - "restartCount": 607015027, + "ready": true, + "restartCount": 1366345526, "image": "52", "imageID": "53", - "containerID": "54" + "containerID": "54", + "started": false } ], - "qosClass": "ȮO励鹗塢ē ƕP", + "qosClass": "励鹗塢ē ", "ephemeralContainerStatuses": [ { "name": "55", @@ -164,15 +166,15 @@ "message": "57" }, "running": { - "startedAt": "2899-04-10T17:42:26Z" + "startedAt": "2442-02-07T10:23:02Z" }, "terminated": { - "exitCode": 712024464, - "signal": -1579157235, + "exitCode": -1395989138, + "signal": 1995971729, "reason": "58", "message": "59", - "startedAt": "2809-10-24T21:55:41Z", - "finishedAt": "2617-08-06T21:50:30Z", + "startedAt": "1982-02-22T15:48:54Z", + "finishedAt": "2843-03-23T07:04:39Z", "containerID": "60" } }, @@ -182,23 +184,24 @@ "message": "62" }, "running": { - "startedAt": "2135-11-17T10:03:44Z" + "startedAt": "2809-10-24T21:55:41Z" }, "terminated": { - "exitCode": -580241939, - "signal": 1654683896, + "exitCode": 1192771347, + "signal": -1737266499, "reason": "63", "message": "64", - "startedAt": "2964-05-31T10:17:54Z", - "finishedAt": "2793-11-04T09:57:32Z", + "startedAt": "2256-09-10T15:38:25Z", + "finishedAt": "2907-09-12T12:00:36Z", "containerID": "65" } }, - "ready": true, - "restartCount": 1111087895, + "ready": false, + "restartCount": 552512122, "image": "66", "imageID": "67", - "containerID": "68" + "containerID": "68", + "started": true } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.pb index 4ea04d56a1b..06d4fde83e8 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml index 1a85a20b2fd..d805ba80139 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml @@ -43,32 +43,33 @@ status: imageID: "53" lastState: running: - startedAt: "2835-11-08T19:46:44Z" + startedAt: "2283-08-16T02:57:13Z" terminated: containerID: "51" - exitCode: 705385560 - finishedAt: "2801-08-27T04:51:34Z" + exitCode: -1876826602 + finishedAt: "2485-12-31T11:06:30Z" message: "50" reason: "49" - signal: -1876826602 - startedAt: "2380-12-20T20:55:16Z" + signal: -1134418089 + startedAt: "2103-08-02T14:34:54Z" waiting: message: "48" reason: "47" name: "41" - ready: false - restartCount: 607015027 + ready: true + restartCount: 1366345526 + started: false state: running: - startedAt: "2149-06-18T16:38:18Z" + startedAt: "2943-08-01T13:09:15Z" terminated: containerID: "46" - exitCode: 254375933 - finishedAt: "2516-08-23T06:28:28Z" + exitCode: 523306325 + finishedAt: "2320-11-04T10:48:57Z" message: "45" reason: "44" - signal: 523306325 - startedAt: "2874-05-09T23:28:59Z" + signal: -1639873916 + startedAt: "2680-06-15T09:55:37Z" waiting: message: "43" reason: "42" @@ -78,32 +79,33 @@ status: imageID: "67" lastState: running: - startedAt: "2135-11-17T10:03:44Z" + startedAt: "2809-10-24T21:55:41Z" terminated: containerID: "65" - exitCode: -580241939 - finishedAt: "2793-11-04T09:57:32Z" + exitCode: 1192771347 + finishedAt: "2907-09-12T12:00:36Z" message: "64" reason: "63" - signal: 1654683896 - startedAt: "2964-05-31T10:17:54Z" + signal: -1737266499 + startedAt: "2256-09-10T15:38:25Z" waiting: message: "62" reason: "61" name: "55" - ready: true - restartCount: 1111087895 + ready: false + restartCount: 552512122 + started: true state: running: - startedAt: "2899-04-10T17:42:26Z" + startedAt: "2442-02-07T10:23:02Z" terminated: containerID: "60" - exitCode: 712024464 - finishedAt: "2617-08-06T21:50:30Z" + exitCode: -1395989138 + finishedAt: "2843-03-23T07:04:39Z" message: "59" reason: "58" - signal: -1579157235 - startedAt: "2809-10-24T21:55:41Z" + signal: 1995971729 + startedAt: "1982-02-22T15:48:54Z" waiting: message: "57" reason: "56" @@ -129,6 +131,7 @@ status: name: "27" ready: true restartCount: -734360256 + started: false state: running: startedAt: "2680-10-21T03:40:10Z" @@ -149,5 +152,5 @@ status: podIP: "25" podIPs: - ip: "26" - qosClass: ȮO励鹗塢ē ƕP + qosClass: '励鹗塢ē ' reason: "22" 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 e5b144143fb..06b8c6dbfd1 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 @@ -493,31 +493,36 @@ "successThreshold": 1718125857, "failureThreshold": -366263237 }, + "startupProbe": { + "exec": { + "command": [ + "179" + ] + }, + "httpGet": { + "path": "180", + "port": "181", + "host": "182", + "scheme": "P_痸", + "httpHeaders": [ + { + "name": "183", + "value": "184" + } + ] + }, + "tcpSocket": { + "port": -1341615783, + "host": "185" + }, + "initialDelaySeconds": 528528093, + "timeoutSeconds": 1408805313, + "periodSeconds": -2078905463, + "successThreshold": 1603139327, + "failureThreshold": 1050218190 + }, "lifecycle": { "postStart": { - "exec": { - "command": [ - "179" - ] - }, - "httpGet": { - "path": "180", - "port": "181", - "host": "182", - "scheme": "/Ź u衲\u003c¿燥ǖ_è绺Lɋ聻鎥", - "httpHeaders": [ - { - "name": "183", - "value": "184" - } - ] - }, - "tcpSocket": { - "port": 2115094729, - "host": "185" - } - }, - "preStop": { "exec": { "command": [ "186" @@ -527,7 +532,7 @@ "path": "187", "port": "188", "host": "189", - "scheme": "\u003c檔Ň'Ğİ", + "scheme": "O澘銈e棈_Ĭ艥\u003c檔", "httpHeaders": [ { "name": "190", @@ -536,41 +541,64 @@ ] }, "tcpSocket": { - "port": 1460441819, - "host": "192" + "port": "192", + "host": "193" + } + }, + "preStop": { + "exec": { + "command": [ + "194" + ] + }, + "httpGet": { + "path": "195", + "port": -1006328793, + "host": "196", + "scheme": "©Ǿt'", + "httpHeaders": [ + { + "name": "197", + "value": "198" + } + ] + }, + "tcpSocket": { + "port": "199", + "host": "200" } } }, - "terminationMessagePath": "193", - "terminationMessagePolicy": "A", - "imagePullPolicy": "'容", + "terminationMessagePath": "201", + "terminationMessagePolicy": "ʕIã陫ʋsş\")珷\u003cºɖ", + "imagePullPolicy": "wMȗ礼2ħ籦ö", "securityContext": { "capabilities": { "add": [ - "Iã陫ʋ" + "\u003e季Cʖ畬x骀Šĸů湙騘\u0026啞川J缮" ], "drop": [ - "ş\")珷" + "bJ5ʬ昹ʞĹ鑑6NJPM饣`" ] }, "privileged": false, "seLinuxOptions": { - "user": "194", - "role": "195", - "type": "196", - "level": "197" + "user": "202", + "role": "203", + "type": "204", + "level": "205" }, "windowsOptions": { - "gmsaCredentialSpecName": "198", - "gmsaCredentialSpec": "199", - "runAsUserName": "200" + "gmsaCredentialSpecName": "206", + "gmsaCredentialSpec": "207", + "runAsUserName": "208" }, - "runAsUser": 6670396461729736072, - "runAsGroup": 411720356558623363, + "runAsUser": 6821913012222657579, + "runAsGroup": -5811430020199686393, "runAsNonRoot": true, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "ȼDDŽLŬp:籀帊ìƅS·Õüe0" + "allowPrivilegeEscalation": false, + "procMount": "2啗塧ȱ蓿彭聡A3fƻfʣ繡楙¯ĦE勗" }, "stdinOnce": true, "tty": true @@ -578,59 +606,59 @@ ], "containers": [ { - "name": "201", - "image": "202", + "name": "209", + "image": "210", "command": [ - "203" + "211" ], "args": [ - "204" + "212" ], - "workingDir": "205", + "workingDir": "213", "ports": [ { - "name": "206", - "hostPort": -2034643700, - "containerPort": -156457987, - "protocol": "焁yǠ/淹\\韲翁\u0026ʢ", - "hostIP": "207" + "name": "214", + "hostPort": 744106683, + "containerPort": 1083816849, + "protocol": "議Ǹ轺@)蓳嗘", + "hostIP": "215" } ], "envFrom": [ { - "prefix": "208", + "prefix": "216", "configMapRef": { - "name": "209", - "optional": true + "name": "217", + "optional": false }, "secretRef": { - "name": "210", - "optional": false + "name": "218", + "optional": true } } ], "env": [ { - "name": "211", - "value": "212", + "name": "219", + "value": "220", "valueFrom": { "fieldRef": { - "apiVersion": "213", - "fieldPath": "214" + "apiVersion": "221", + "fieldPath": "222" }, "resourceFieldRef": { - "containerName": "215", - "resource": "216", - "divisor": "665" + "containerName": "223", + "resource": "224", + "divisor": "179" }, "configMapKeyRef": { - "name": "217", - "key": "218", + "name": "225", + "key": "226", "optional": false }, "secretKeyRef": { - "name": "219", - "key": "220", + "name": "227", + "key": "228", "optional": false } } @@ -638,434 +666,493 @@ ], "resources": { "limits": { - "ɥ踓Ǻǧ湬淊kŪ睴鸏:ɥ": "206" + "o_鹈ɹ坼É/pȿŘ阌Ŗ怳冘HǺƶ": "364" }, "requests": { - "fʣ繡楙¯ĦE勗E濞偘1ɩ": "161" + "ǝ鿟ldg滠鼍ƭt?QȫşŇɜ": "211" } }, "volumeMounts": [ { - "name": "221", - "readOnly": true, - "mountPath": "222", - "subPath": "223", - "mountPropagation": "ʅ芝M 宸@Z^嫫猤痈C*ĕʄő芖{", - "subPathExpr": "224" + "name": "229", + "mountPath": "230", + "subPath": "231", + "mountPropagation": "zÏ抴ŨfZhUʎ浵ɲõTo\u0026", + "subPathExpr": "232" } ], "volumeDevices": [ { - "name": "225", - "devicePath": "226" + "name": "233", + "devicePath": "234" } ], "livenessProbe": { "exec": { "command": [ - "227" + "235" ] }, "httpGet": { - "path": "228", - "port": "229", - "host": "230", - "scheme": "/pȿŘ阌Ŗ怳冘H", + "path": "236", + "port": "237", + "host": "238", + "scheme": "Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈", "httpHeaders": [ { - "name": "231", - "value": "232" + "name": "239", + "value": "240" } ] }, "tcpSocket": { - "port": -1057154155, - "host": "233" + "port": 2064656704, + "host": "241" }, - "initialDelaySeconds": -1999218345, - "timeoutSeconds": 1366561945, - "periodSeconds": 657514697, - "successThreshold": 408756018, - "failureThreshold": 437263194 + "initialDelaySeconds": -1940723300, + "timeoutSeconds": 749147575, + "periodSeconds": 496226800, + "successThreshold": 84444678, + "failureThreshold": -547518679 }, "readinessProbe": { "exec": { "command": [ - "234" + "242" ] }, "httpGet": { - "path": "235", - "port": "236", - "host": "237", - "scheme": "ƭt?QȫşŇɜ", + "path": "243", + "port": 1322581021, + "host": "244", + "scheme": "坩O`涁İ而踪鄌eÞ", "httpHeaders": [ { - "name": "238", - "value": "239" + "name": "245", + "value": "246" } ] }, "tcpSocket": { - "port": "240", - "host": "241" + "port": -1319491110, + "host": "247" }, - "initialDelaySeconds": 673378190, - "timeoutSeconds": 1701891633, - "periodSeconds": -1768075156, - "successThreshold": 273818613, - "failureThreshold": -522879476 + "initialDelaySeconds": 565789036, + "timeoutSeconds": -1572269414, + "periodSeconds": -582473401, + "successThreshold": -1252931244, + "failureThreshold": 1569992019 + }, + "startupProbe": { + "exec": { + "command": [ + "248" + ] + }, + "httpGet": { + "path": "249", + "port": 870237686, + "host": "250", + "scheme": "墴1Rƥ贫d", + "httpHeaders": [ + { + "name": "251", + "value": "252" + } + ] + }, + "tcpSocket": { + "port": -33154680, + "host": "253" + }, + "initialDelaySeconds": -709825668, + "timeoutSeconds": -1144400181, + "periodSeconds": -379514302, + "successThreshold": 173916181, + "failureThreshold": -813624408 }, "lifecycle": { "postStart": { "exec": { "command": [ - "242" + "254" ] }, "httpGet": { - "path": "243", - "port": "244", - "host": "245", - "scheme": "ƶRquA?瞲Ť倱\u003cįXŋ朘", + "path": "255", + "port": 200992434, + "host": "256", + "scheme": "ņ榱*Gưoɘ檲ɨ銦妰黖ȓ", "httpHeaders": [ { - "name": "246", - "value": "247" + "name": "257", + "value": "258" } ] }, "tcpSocket": { - "port": "248", - "host": "249" + "port": "259", + "host": "260" } }, "preStop": { "exec": { "command": [ - "250" + "261" ] }, "httpGet": { - "path": "251", - "port": 2147073181, - "host": "252", - "scheme": "0åȂ町恰nj揠8lj", + "path": "262", + "port": "263", + "host": "264", + "scheme": "ɋ瀐\u003cɉ", "httpHeaders": [ { - "name": "253", - "value": "254" + "name": "265", + "value": "266" } ] }, "tcpSocket": { - "port": -2049272966, - "host": "255" + "port": -1334904807, + "host": "267" } } }, - "terminationMessagePath": "256", - "terminationMessagePolicy": "禒Ƙá腿ħ缶.蒅", - "imagePullPolicy": "臷Ľð»ųKĵ\u00264ʑ%:;栍dʪ", + "terminationMessagePath": "268", + "terminationMessagePolicy": "å睫}堇硲蕵ɢ苆", + "imagePullPolicy": "猀2:ö", "securityContext": { "capabilities": { "add": [ - "捘ɍi縱ù墴" + "5w垁鷌辪虽U珝Żwʮ馜üNșƶ" ], "drop": [ - "Rƥ贫d飼$俊跾|@?鷅b" + "ĩĉş蝿ɖȃ賲鐅臬" ] }, "privileged": false, "seLinuxOptions": { - "user": "257", - "role": "258", - "type": "259", - "level": "260" + "user": "269", + "role": "270", + "type": "271", + "level": "272" }, "windowsOptions": { - "gmsaCredentialSpecName": "261", - "gmsaCredentialSpec": "262", - "runAsUserName": "263" + "gmsaCredentialSpecName": "273", + "gmsaCredentialSpec": "274", + "runAsUserName": "275" }, - "runAsUser": -4282906120698363891, - "runAsGroup": -5016407977423583667, - "runAsNonRoot": false, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": false, - "procMount": "ɘ檲ɨ銦" + "runAsUser": -1799108093609470992, + "runAsGroup": -1245112587824234591, + "runAsNonRoot": true, + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": true, + "procMount": "ǵʭd鲡:贅wE@Ȗs«öʮ" }, "stdin": true, - "tty": true + "stdinOnce": true } ], "ephemeralContainers": [ { - "name": "264", - "image": "265", + "name": "276", + "image": "277", "command": [ - "266" + "278" ], "args": [ - "267" + "279" ], - "workingDir": "268", + "workingDir": "280", "ports": [ { - "name": "269", - "hostPort": -1266125247, - "containerPort": -50623103, - "protocol": "獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬娬ï瓼", - "hostIP": "270" + "name": "281", + "hostPort": 1702578303, + "containerPort": -1565157256, + "protocol": "Ŭ", + "hostIP": "282" } ], "envFrom": [ { - "prefix": "271", + "prefix": "283", "configMapRef": { - "name": "272", - "optional": false + "name": "284", + "optional": true }, "secretRef": { - "name": "273", + "name": "285", "optional": false } } ], "env": [ { - "name": "274", - "value": "275", + "name": "286", + "value": "287", "valueFrom": { "fieldRef": { - "apiVersion": "276", - "fieldPath": "277" + "apiVersion": "288", + "fieldPath": "289" }, "resourceFieldRef": { - "containerName": "278", - "resource": "279", - "divisor": "8" + "containerName": "290", + "resource": "291", + "divisor": "157" }, "configMapKeyRef": { - "name": "280", - "key": "281", + "name": "292", + "key": "293", "optional": true }, "secretKeyRef": { - "name": "282", - "key": "283", - "optional": true + "name": "294", + "key": "295", + "optional": false } } } ], "resources": { "limits": { - "辪虽U珝Żwʮ馜": "604" + "ŴĿ": "377" }, "requests": { - "": "264" + ".Q貇£ȹ嫰ƹǔw÷nI": "718" } }, "volumeMounts": [ { - "name": "284", - "mountPath": "285", - "subPath": "286", - "mountPropagation": "4ĩĉş蝿ɖȃ賲鐅臬dH巧壚tC十Oɢ", - "subPathExpr": "287" + "name": "296", + "mountPath": "297", + "subPath": "298", + "mountPropagation": "樺ȃ", + "subPathExpr": "299" } ], "volumeDevices": [ { - "name": "288", - "devicePath": "289" + "name": "300", + "devicePath": "301" } ], "livenessProbe": { "exec": { "command": [ - "290" + "302" ] }, "httpGet": { - "path": "291", - "port": "292", - "host": "293", - "scheme": "Ȋ+?ƭ峧Y栲茇竛吲蚛", + "path": "303", + "port": -88173241, + "host": "304", + "scheme": "Źʣy豎@ɀ羭,铻O", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "305", + "value": "306" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": "307", + "host": "308" }, - "initialDelaySeconds": -138175394, - "timeoutSeconds": -1839582103, - "periodSeconds": 1054302708, - "successThreshold": -1696471293, - "failureThreshold": 1545364977 + "initialDelaySeconds": 1424053148, + "timeoutSeconds": 747521320, + "periodSeconds": 859639931, + "successThreshold": -1663149700, + "failureThreshold": -1131820775 }, "readinessProbe": { "exec": { "command": [ - "298" + "309" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "r蛏豈ɃHŠ", + "path": "310", + "port": -1710454086, + "host": "311", + "scheme": "mɩC[ó瓧", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "312", + "value": "313" } ] }, "tcpSocket": { - "port": 279808574, - "host": "304" + "port": -122979840, + "host": "314" }, - "initialDelaySeconds": -1765469779, - "timeoutSeconds": 1525829664, - "periodSeconds": -1047607622, - "successThreshold": -725526817, - "failureThreshold": 804417065 + "initialDelaySeconds": 915577348, + "timeoutSeconds": -590798124, + "periodSeconds": -1386967282, + "successThreshold": -2030286732, + "failureThreshold": -233378149 + }, + "startupProbe": { + "exec": { + "command": [ + "315" + ] + }, + "httpGet": { + "path": "316", + "port": -495373547, + "host": "317", + "scheme": "ʼn掏1ſ盷褎weLJ", + "httpHeaders": [ + { + "name": "318", + "value": "319" + } + ] + }, + "tcpSocket": { + "port": "320", + "host": "321" + }, + "initialDelaySeconds": -929354164, + "timeoutSeconds": 1972119760, + "periodSeconds": 1582773079, + "successThreshold": -1133499416, + "failureThreshold": 486195690 }, "lifecycle": { "postStart": { "exec": { "command": [ - "305" + "322" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "{Ⱦdz@", + "path": "323", + "port": -1589303862, + "host": "324", + "scheme": "ľǎɳ,ǿ飏騀呣ǎ", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "325", + "value": "326" } ] }, "tcpSocket": { - "port": 406308963, - "host": "311" + "port": "327", + "host": "328" } }, "preStop": { "exec": { "command": [ - "312" + "329" ] }, "httpGet": { - "path": "313", - "port": "314", - "host": "315", - "scheme": "ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ", + "path": "330", + "port": "331", + "host": "332", + "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "333", + "value": "334" } ] }, "tcpSocket": { - "port": "318", - "host": "319" + "port": "335", + "host": "336" } } }, - "terminationMessagePath": "320", - "terminationMessagePolicy": "p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF", - "imagePullPolicy": "^拜", + "terminationMessagePath": "337", + "terminationMessagePolicy": "Ȋ礶", + "imagePullPolicy": "ʁ揆ɘȌ脾嚏吐ĠLƐ", "securityContext": { "capabilities": { "add": [ - "ɟ踡肒Ao/樝fw[Řż丩Ž" + "3.v-鿧悮坮Ȣ" ], "drop": [ - "" + "ļ腻ŬƩȿ" ] }, "privileged": false, "seLinuxOptions": { - "user": "321", - "role": "322", - "type": "323", - "level": "324" + "user": "338", + "role": "339", + "type": "340", + "level": "341" }, "windowsOptions": { - "gmsaCredentialSpecName": "325", - "gmsaCredentialSpec": "326", - "runAsUserName": "327" + "gmsaCredentialSpecName": "342", + "gmsaCredentialSpec": "343", + "runAsUserName": "344" }, - "runAsUser": 2088194590485252823, - "runAsGroup": 454011859948691164, + "runAsUser": 9197199583783594492, + "runAsGroup": 241615716805649441, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę" + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ħsĨɆâĺ" }, - "targetContainerName": "328" + "stdin": true, + "tty": true, + "targetContainerName": "345" } ], - "restartPolicy": "U髷裎$MVȟ@7飣奺Ȋ", - "terminationGracePeriodSeconds": -1448436097540110204, - "activeDeadlineSeconds": 63880647284912382, - "dnsPolicy": "ɘȌ脾嚏吐ĠLƐȤ藠3.v", + "restartPolicy": "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶", + "terminationGracePeriodSeconds": -1689173322096612726, + "activeDeadlineSeconds": -9052689354742694982, + "dnsPolicy": "8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ", "nodeSelector": { - "329": "330" + "346": "347" }, - "serviceAccountName": "331", - "serviceAccount": "332", + "serviceAccountName": "348", + "serviceAccount": "349", "automountServiceAccountToken": false, - "nodeName": "333", + "nodeName": "350", "hostNetwork": true, + "hostPID": true, + "hostIPC": true, "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "334", - "role": "335", - "type": "336", - "level": "337" + "user": "351", + "role": "352", + "type": "353", + "level": "354" }, "windowsOptions": { - "gmsaCredentialSpecName": "338", - "gmsaCredentialSpec": "339", - "runAsUserName": "340" + "gmsaCredentialSpecName": "355", + "gmsaCredentialSpec": "356", + "runAsUserName": "357" }, - "runAsUser": 6546717103134456682, - "runAsGroup": 43374460844024823, - "runAsNonRoot": false, + "runAsUser": 7525448836100188460, + "runAsGroup": -860974700141841896, + "runAsNonRoot": true, "supplementalGroups": [ - -5030126702697967530 + 7258403424756645907 ], - "fsGroup": -609644235388870309, + "fsGroup": 6347577485454457915, "sysctls": [ { - "name": "341", - "value": "342" + "name": "358", + "value": "359" } ] }, "imagePullSecrets": [ { - "name": "343" + "name": "360" } ], - "hostname": "344", - "subdomain": "345", + "hostname": "361", + "subdomain": "362", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1073,19 +1160,19 @@ { "matchExpressions": [ { - "key": "346", - "operator": "懥ƖN粕擓ƖHVe", + "key": "363", + "operator": "}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g\u003e", "values": [ - "347" + "364" ] } ], "matchFields": [ { - "key": "348", - "operator": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "key": "365", + "operator": "偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ圯W", "values": [ - "349" + "366" ] } ] @@ -1094,23 +1181,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -148216266, + "weight": -1418092595, "preference": { "matchExpressions": [ { - "key": "350", - "operator": "", + "key": "367", + "operator": "唊#v铿", "values": [ - "351" + "368" ] } ], "matchFields": [ { - "key": "352", - "operator": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?", + "key": "369", + "operator": "埄趛", "values": [ - "353" + "370" ] } ] @@ -1123,43 +1210,46 @@ { "labelSelector": { "matchLabels": { - "Guo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_um-8": "d-684._-_18_...E.-2o_-.N.9D-F45eK" + "zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6": "9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y" }, "matchExpressions": [ { - "key": "5-R4_7FA.M.JP_oA_4A.J2s3.XL6_EU-A", - "operator": "DoesNotExist" + "key": "8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T", + "operator": "NotIn", + "values": [ + "H.I3.__-.u" + ] } ] }, "namespaces": [ - "360" + "377" ], - "topologyKey": "361" + "topologyKey": "378" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 2086031503, + "weight": -819013491, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "f3s--gg93--5-------g1c-r/a-3-___t-Z8SUGP.-_.uB-.--.gb_2_-8-----yJY._i": "mh._.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4-9" + "x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2": "Ns-o779._-k5" }, "matchExpressions": [ { - "key": "3---38----r-m-a--q3980c7f0p-3-----995----5sumf7ef8jzv4-9-35od/2I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-.-8v-J1zT", - "operator": "In", + "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": [ - "5-.-.T-V_D_0-K_A-_9_ZC" + "G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X" ] } ] }, "namespaces": [ - "368" + "385" ], - "topologyKey": "369" + "topologyKey": "386" } } ] @@ -1169,111 +1259,108 @@ { "labelSelector": { "matchLabels": { - "JrC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WTM": "3_-1y_8D_X._B__-p" + "xm-.nx.sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" }, "matchExpressions": [ { - "key": "u-2.d-s--op34-yy28-38xmu5nxs/j.___._8", - "operator": "In", - "values": [ - "K4.B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_0" - ] + "key": "v8_.O_..8n.--z_-..6W.K", + "operator": "Exists" } ] }, "namespaces": [ - "376" + "393" ], - "topologyKey": "377" + "topologyKey": "394" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -593572977, + "weight": -168773629, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "v8_.O_..8n.--z_-..6W.K": "sTt.-U_--6" + "x-3/6-.7D.3_KPgL": "d._.Um.-__k.5" }, "matchExpressions": [ { - "key": "7-3x-3/23_P", - "operator": "NotIn", + "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", + "operator": "In", "values": [ - "5....7..--w0_1V4.-r-8S5--_7_-Zp_._.-mi4" + "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw" ] } ] }, "namespaces": [ - "384" + "401" ], - "topologyKey": "385" + "topologyKey": "402" } } ] } }, - "schedulerName": "386", + "schedulerName": "403", "tolerations": [ { - "key": "387", - "operator": "$|gɳ礬.b屏ɧe", - "value": "388", - "effect": "ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­", - "tolerationSeconds": -6703183907837349431 + "key": "404", + "operator": "栣险¹贮獘薟8Mĕ霉", + "value": "405", + "effect": "ŪǗȦɆ悼j蛑q", + "tolerationSeconds": 4375148957048018073 } ], "hostAliases": [ { - "ip": "389", + "ip": "406", "hostnames": [ - "390" + "407" ] } ], - "priorityClassName": "391", - "priority": 1792673033, + "priorityClassName": "408", + "priority": -1286809305, "dnsConfig": { "nameservers": [ - "392" + "409" ], "searches": [ - "393" + "410" ], "options": [ { - "name": "394", - "value": "395" + "name": "411", + "value": "412" } ] }, "readinessGates": [ { - "conditionType": "q塨Ý-扚聧扈4ƫZɀȩ愉BʟƮƙ2詃" + "conditionType": "ųŎ群E牬庘颮6(|ǖû" } ], - "runtimeClassName": "396", - "enableServiceLinks": true, - "preemptionPolicy": "闎Ť萃Q+駟à稨氙'[\u003e", + "runtimeClassName": "413", + "enableServiceLinks": false, + "preemptionPolicy": "怨彬ɈNƋl塠傫ü", "overhead": { - "'o儿Ƭ銭u裡_": "986" + "ɮ6)": "299" }, "topologySpreadConstraints": [ { - "maxSkew": -1676200318, - "topologyKey": "397", - "whenUnsatisfiable": "唞鹚蝉茲ʛ饊ɣKIJW", + "maxSkew": -554557703, + "topologyKey": "414", + "whenUnsatisfiable": "¹t骳ɰɰUʜʔŜ0¢", "labelSelector": { "matchLabels": { - "l-d-8o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m8.o-20st4-7--i1-8miw-7a-2404/5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpS": "5.0" + "o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l": "b-L7.-__-G_2kCpS__.3g" }, "matchExpressions": [ { - "key": "7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY", - "operator": "NotIn", + "key": "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", + "operator": "In", "values": [ - "9CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--k" + "7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx" ] } ] 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 d1e2139f277..0fd0cea0f46 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 3d80576b339..295b43a52aa 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,411 +60,454 @@ template: selfLink: "22" uid: SǡƏ spec: - activeDeadlineSeconds: 63880647284912382 + activeDeadlineSeconds: -9052689354742694982 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "350" - operator: "" + - key: "367" + operator: 唊#v铿 values: - - "351" + - "368" matchFields: - - key: "352" - operator: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? + - key: "369" + operator: 埄趛 values: - - "353" - weight: -148216266 + - "370" + weight: -1418092595 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "346" - operator: 懥ƖN粕擓ƖHVe + - key: "363" + operator: '}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g>' values: - - "347" + - "364" matchFields: - - key: "348" - operator: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' + - key: "365" + operator: 偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ圯W values: - - "349" + - "366" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 3---38----r-m-a--q3980c7f0p-3-----995----5sumf7ef8jzv4-9-35od/2I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-.-8v-J1zT - operator: In + - 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: - - 5-.-.T-V_D_0-K_A-_9_ZC + - G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X matchLabels: - f3s--gg93--5-------g1c-r/a-3-___t-Z8SUGP.-_.uB-.--.gb_2_-8-----yJY._i: mh._.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4-9 + x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2: Ns-o779._-k5 namespaces: - - "368" - topologyKey: "369" - weight: 2086031503 + - "385" + topologyKey: "386" + weight: -819013491 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 5-R4_7FA.M.JP_oA_4A.J2s3.XL6_EU-A - operator: DoesNotExist + - key: 8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T + operator: NotIn + values: + - H.I3.__-.u matchLabels: - Guo3Pa__n-Dd-.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_um-8: d-684._-_18_...E.-2o_-.N.9D-F45eK + zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6: 9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y namespaces: - - "360" - topologyKey: "361" + - "377" + topologyKey: "378" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 7-3x-3/23_P - operator: NotIn + - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C + operator: In values: - - 5....7..--w0_1V4.-r-8S5--_7_-Zp_._.-mi4 + - p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw matchLabels: - v8_.O_..8n.--z_-..6W.K: sTt.-U_--6 + x-3/6-.7D.3_KPgL: d._.Um.-__k.5 namespaces: - - "384" - topologyKey: "385" - weight: -593572977 + - "401" + topologyKey: "402" + weight: -168773629 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: u-2.d-s--op34-yy28-38xmu5nxs/j.___._8 - operator: In - values: - - K4.B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_0 + - key: v8_.O_..8n.--z_-..6W.K + operator: Exists matchLabels: - JrC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WTM: 3_-1y_8D_X._B__-p + xm-.nx.sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 namespaces: - - "376" - topologyKey: "377" + - "393" + topologyKey: "394" automountServiceAccountToken: false containers: - args: - - "204" + - "212" command: - - "203" + - "211" env: - - name: "211" - value: "212" + - name: "219" + value: "220" valueFrom: configMapKeyRef: - key: "218" - name: "217" + key: "226" + name: "225" optional: false fieldRef: - apiVersion: "213" - fieldPath: "214" + apiVersion: "221" + fieldPath: "222" resourceFieldRef: - containerName: "215" - divisor: "665" - resource: "216" + containerName: "223" + divisor: "179" + resource: "224" secretKeyRef: - key: "220" - name: "219" + key: "228" + name: "227" optional: false envFrom: - configMapRef: - name: "209" - optional: true - prefix: "208" - secretRef: - name: "210" + name: "217" optional: false - image: "202" - imagePullPolicy: 臷Ľð»ųKĵ&4ʑ%:;栍dʪ + prefix: "216" + secretRef: + name: "218" + optional: true + image: "210" + imagePullPolicy: 猀2:ö lifecycle: postStart: exec: command: - - "242" + - "254" httpGet: - host: "245" + host: "256" httpHeaders: - - name: "246" - value: "247" - path: "243" - port: "244" - scheme: ƶRquA?瞲Ť倱<įXŋ朘 + - name: "257" + value: "258" + path: "255" + port: 200992434 + scheme: ņ榱*Gưoɘ檲ɨ銦妰黖ȓ tcpSocket: - host: "249" - port: "248" + host: "260" + port: "259" preStop: exec: command: - - "250" + - "261" httpGet: - host: "252" + host: "264" httpHeaders: - - name: "253" - value: "254" - path: "251" - port: 2147073181 - scheme: 0åȂ町恰nj揠8lj + - name: "265" + value: "266" + path: "262" + port: "263" + scheme: ɋ瀐<ɉ tcpSocket: - host: "255" - port: -2049272966 + host: "267" + port: -1334904807 livenessProbe: exec: command: - - "227" - failureThreshold: 437263194 + - "235" + failureThreshold: -547518679 httpGet: - host: "230" + host: "238" httpHeaders: - - name: "231" - value: "232" - path: "228" - port: "229" - scheme: /pȿŘ阌Ŗ怳冘H - initialDelaySeconds: -1999218345 - periodSeconds: 657514697 - successThreshold: 408756018 - tcpSocket: - host: "233" - port: -1057154155 - timeoutSeconds: 1366561945 - name: "201" - ports: - - containerPort: -156457987 - hostIP: "207" - hostPort: -2034643700 - name: "206" - protocol: 焁yǠ/淹\韲翁&ʢ - readinessProbe: - exec: - command: - - "234" - failureThreshold: -522879476 - httpGet: - host: "237" - httpHeaders: - - name: "238" - value: "239" - path: "235" - port: "236" - scheme: ƭt?QȫşŇɜ - initialDelaySeconds: 673378190 - periodSeconds: -1768075156 - successThreshold: 273818613 + - name: "239" + value: "240" + path: "236" + port: "237" + scheme: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈 + initialDelaySeconds: -1940723300 + periodSeconds: 496226800 + successThreshold: 84444678 tcpSocket: host: "241" - port: "240" - timeoutSeconds: 1701891633 - resources: - limits: - ɥ踓Ǻǧ湬淊kŪ睴鸏:ɥ: "206" - requests: - fʣ繡楙¯ĦE勗E濞偘1ɩ: "161" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - 捘ɍi縱ù墴 - drop: - - Rƥ贫d飼$俊跾|@?鷅b - privileged: false - procMount: ɘ檲ɨ銦 - readOnlyRootFilesystem: true - runAsGroup: -5016407977423583667 - runAsNonRoot: false - runAsUser: -4282906120698363891 - seLinuxOptions: - level: "260" - role: "258" - type: "259" - user: "257" - windowsOptions: - gmsaCredentialSpec: "262" - gmsaCredentialSpecName: "261" - runAsUserName: "263" - stdin: true - terminationMessagePath: "256" - terminationMessagePolicy: 禒Ƙá腿ħ缶.蒅 - tty: true - volumeDevices: - - devicePath: "226" - name: "225" - volumeMounts: - - mountPath: "222" - mountPropagation: ʅ芝M 宸@Z^嫫猤痈C*ĕʄő芖{ - name: "221" - readOnly: true - subPath: "223" - subPathExpr: "224" - workingDir: "205" - dnsConfig: - nameservers: - - "392" - options: - - name: "394" - value: "395" - searches: - - "393" - dnsPolicy: ɘȌ脾嚏吐ĠLƐȤ藠3.v - enableServiceLinks: true - ephemeralContainers: - - args: - - "267" - command: - - "266" - env: - - name: "274" - value: "275" - valueFrom: - configMapKeyRef: - key: "281" - name: "280" - optional: true - fieldRef: - apiVersion: "276" - fieldPath: "277" - resourceFieldRef: - containerName: "278" - divisor: "8" - resource: "279" - secretKeyRef: - key: "283" - name: "282" - optional: true - envFrom: - - configMapRef: - name: "272" - optional: false - prefix: "271" - secretRef: - name: "273" - optional: false - image: "265" - imagePullPolicy: ^拜 - lifecycle: - postStart: - exec: - command: - - "305" - httpGet: - host: "308" - httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: '{Ⱦdz@' - tcpSocket: - host: "311" - port: 406308963 - preStop: - exec: - command: - - "312" - httpGet: - host: "315" - httpHeaders: - - name: "316" - value: "317" - path: "313" - port: "314" - scheme: ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ - tcpSocket: - host: "319" - port: "318" - livenessProbe: - exec: - command: - - "290" - failureThreshold: 1545364977 - httpGet: - host: "293" - httpHeaders: - - name: "294" - value: "295" - path: "291" - port: "292" - scheme: Ȋ+?ƭ峧Y栲茇竛吲蚛 - initialDelaySeconds: -138175394 - periodSeconds: 1054302708 - successThreshold: -1696471293 - tcpSocket: - host: "297" - port: "296" - timeoutSeconds: -1839582103 - name: "264" + port: 2064656704 + timeoutSeconds: 749147575 + name: "209" ports: - - containerPort: -50623103 - hostIP: "270" - hostPort: -1266125247 - name: "269" - protocol: 獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬娬ï瓼 + - containerPort: 1083816849 + hostIP: "215" + hostPort: 744106683 + name: "214" + protocol: 議Ǹ轺@)蓳嗘 readinessProbe: exec: command: - - "298" - failureThreshold: 804417065 + - "242" + failureThreshold: 1569992019 httpGet: - host: "301" + host: "244" httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: r蛏豈ɃHŠ - initialDelaySeconds: -1765469779 - periodSeconds: -1047607622 - successThreshold: -725526817 + - name: "245" + value: "246" + path: "243" + port: 1322581021 + scheme: 坩O`涁İ而踪鄌eÞ + initialDelaySeconds: 565789036 + periodSeconds: -582473401 + successThreshold: -1252931244 tcpSocket: - host: "304" - port: 279808574 - timeoutSeconds: 1525829664 + host: "247" + port: -1319491110 + timeoutSeconds: -1572269414 resources: limits: - 辪虽U珝Żwʮ馜: "604" + o_鹈ɹ坼É/pȿŘ阌Ŗ怳冘HǺƶ: "364" requests: - "": "264" + ǝ鿟ldg滠鼍ƭt?QȫşŇɜ: "211" securityContext: allowPrivilegeEscalation: true capabilities: add: - - ɟ踡肒Ao/樝fw[Řż丩Ž + - 5w垁鷌辪虽U珝Żwʮ馜üNșƶ drop: - - "" + - ĩĉş蝿ɖȃ賲鐅臬 privileged: false - procMount: 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę - readOnlyRootFilesystem: true - runAsGroup: 454011859948691164 + procMount: ǵʭd鲡:贅wE@Ȗs«öʮ + readOnlyRootFilesystem: false + runAsGroup: -1245112587824234591 runAsNonRoot: true - runAsUser: 2088194590485252823 + runAsUser: -1799108093609470992 seLinuxOptions: - level: "324" - role: "322" - type: "323" - user: "321" + level: "272" + role: "270" + type: "271" + user: "269" windowsOptions: - gmsaCredentialSpec: "326" - gmsaCredentialSpecName: "325" - runAsUserName: "327" - targetContainerName: "328" - terminationMessagePath: "320" - terminationMessagePolicy: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF + gmsaCredentialSpec: "274" + gmsaCredentialSpecName: "273" + runAsUserName: "275" + startupProbe: + exec: + command: + - "248" + failureThreshold: -813624408 + httpGet: + host: "250" + httpHeaders: + - name: "251" + value: "252" + path: "249" + port: 870237686 + scheme: 墴1Rƥ贫d + initialDelaySeconds: -709825668 + periodSeconds: -379514302 + successThreshold: 173916181 + tcpSocket: + host: "253" + port: -33154680 + timeoutSeconds: -1144400181 + stdin: true + stdinOnce: true + terminationMessagePath: "268" + terminationMessagePolicy: å睫}堇硲蕵ɢ苆 volumeDevices: - - devicePath: "289" - name: "288" + - devicePath: "234" + name: "233" volumeMounts: - - mountPath: "285" - mountPropagation: 4ĩĉş蝿ɖȃ賲鐅臬dH巧壚tC十Oɢ - name: "284" - subPath: "286" - subPathExpr: "287" - workingDir: "268" + - mountPath: "230" + mountPropagation: zÏ抴ŨfZhUʎ浵ɲõTo& + name: "229" + subPath: "231" + subPathExpr: "232" + workingDir: "213" + dnsConfig: + nameservers: + - "409" + options: + - name: "411" + value: "412" + searches: + - "410" + dnsPolicy: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ + enableServiceLinks: false + ephemeralContainers: + - args: + - "279" + command: + - "278" + env: + - name: "286" + value: "287" + valueFrom: + configMapKeyRef: + key: "293" + name: "292" + optional: true + fieldRef: + apiVersion: "288" + fieldPath: "289" + resourceFieldRef: + containerName: "290" + divisor: "157" + resource: "291" + secretKeyRef: + key: "295" + name: "294" + optional: false + envFrom: + - configMapRef: + name: "284" + optional: true + prefix: "283" + secretRef: + name: "285" + optional: false + image: "277" + imagePullPolicy: ʁ揆ɘȌ脾嚏吐ĠLƐ + lifecycle: + postStart: + exec: + command: + - "322" + httpGet: + host: "324" + httpHeaders: + - name: "325" + value: "326" + path: "323" + port: -1589303862 + scheme: ľǎɳ,ǿ飏騀呣ǎ + tcpSocket: + host: "328" + port: "327" + preStop: + exec: + command: + - "329" + httpGet: + host: "332" + httpHeaders: + - name: "333" + value: "334" + path: "330" + port: "331" + scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 + tcpSocket: + host: "336" + port: "335" + livenessProbe: + exec: + command: + - "302" + failureThreshold: -1131820775 + httpGet: + host: "304" + httpHeaders: + - name: "305" + value: "306" + path: "303" + port: -88173241 + scheme: Źʣy豎@ɀ羭,铻O + initialDelaySeconds: 1424053148 + periodSeconds: 859639931 + successThreshold: -1663149700 + tcpSocket: + host: "308" + port: "307" + timeoutSeconds: 747521320 + name: "276" + ports: + - containerPort: -1565157256 + hostIP: "282" + hostPort: 1702578303 + name: "281" + protocol: Ŭ + readinessProbe: + exec: + command: + - "309" + failureThreshold: -233378149 + httpGet: + host: "311" + httpHeaders: + - name: "312" + value: "313" + path: "310" + port: -1710454086 + scheme: mɩC[ó瓧 + initialDelaySeconds: 915577348 + periodSeconds: -1386967282 + successThreshold: -2030286732 + tcpSocket: + host: "314" + port: -122979840 + timeoutSeconds: -590798124 + resources: + limits: + ŴĿ: "377" + requests: + .Q貇£ȹ嫰ƹǔw÷nI: "718" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - 3.v-鿧悮坮Ȣ + drop: + - ļ腻ŬƩȿ + privileged: false + procMount: ħsĨɆâĺ + readOnlyRootFilesystem: false + runAsGroup: 241615716805649441 + runAsNonRoot: true + runAsUser: 9197199583783594492 + seLinuxOptions: + level: "341" + role: "339" + type: "340" + user: "338" + windowsOptions: + gmsaCredentialSpec: "343" + gmsaCredentialSpecName: "342" + runAsUserName: "344" + startupProbe: + exec: + command: + - "315" + failureThreshold: 486195690 + httpGet: + host: "317" + httpHeaders: + - name: "318" + value: "319" + path: "316" + port: -495373547 + scheme: ʼn掏1ſ盷褎weLJ + initialDelaySeconds: -929354164 + periodSeconds: 1582773079 + successThreshold: -1133499416 + tcpSocket: + host: "321" + port: "320" + timeoutSeconds: 1972119760 + stdin: true + targetContainerName: "345" + terminationMessagePath: "337" + terminationMessagePolicy: Ȋ礶 + tty: true + volumeDevices: + - devicePath: "301" + name: "300" + volumeMounts: + - mountPath: "297" + mountPropagation: 樺ȃ + name: "296" + subPath: "298" + subPathExpr: "299" + workingDir: "280" hostAliases: - hostnames: - - "390" - ip: "389" + - "407" + ip: "406" + hostIPC: true hostNetwork: true - hostname: "344" + hostPID: true + hostname: "361" imagePullSecrets: - - name: "343" + - name: "360" initContainers: - args: - "144" @@ -498,24 +541,9 @@ template: name: "150" optional: true image: "142" - imagePullPolicy: '''容' + imagePullPolicy: wMȗ礼2ħ籦ö lifecycle: postStart: - exec: - command: - - "179" - httpGet: - host: "182" - httpHeaders: - - name: "183" - value: "184" - path: "180" - port: "181" - scheme: /Ź u衲<¿燥ǖ_è绺Lɋ聻鎥 - tcpSocket: - host: "185" - port: 2115094729 - preStop: exec: command: - "186" @@ -526,10 +554,25 @@ template: value: "191" path: "187" port: "188" - scheme: <檔Ň'Ğİ + scheme: O澘銈e棈_Ĭ艥<檔 tcpSocket: - host: "192" - port: 1460441819 + host: "193" + port: "192" + preStop: + exec: + command: + - "194" + httpGet: + host: "196" + httpHeaders: + - name: "197" + value: "198" + path: "195" + port: -1006328793 + scheme: ©Ǿt' + tcpSocket: + host: "200" + port: "199" livenessProbe: exec: command: @@ -583,30 +626,50 @@ template: requests: "": "609" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Iã陫ʋ + - '>季Cʖ畬x骀Šĸů湙騘&啞川J缮' drop: - - ş")珷 + - bJ5ʬ昹ʞĹ鑑6NJPM饣` privileged: false - procMount: ȼDDŽLŬp:籀帊ìƅS·Õüe0 + procMount: 2啗塧ȱ蓿彭聡A3fƻfʣ繡楙¯ĦE勗 readOnlyRootFilesystem: false - runAsGroup: 411720356558623363 + runAsGroup: -5811430020199686393 runAsNonRoot: true - runAsUser: 6670396461729736072 + runAsUser: 6821913012222657579 seLinuxOptions: - level: "197" - role: "195" - type: "196" - user: "194" + level: "205" + role: "203" + type: "204" + user: "202" windowsOptions: - gmsaCredentialSpec: "199" - gmsaCredentialSpecName: "198" - runAsUserName: "200" + gmsaCredentialSpec: "207" + gmsaCredentialSpecName: "206" + runAsUserName: "208" + startupProbe: + exec: + command: + - "179" + failureThreshold: 1050218190 + httpGet: + host: "182" + httpHeaders: + - name: "183" + value: "184" + path: "180" + port: "181" + scheme: P_痸 + initialDelaySeconds: 528528093 + periodSeconds: -2078905463 + successThreshold: 1603139327 + tcpSocket: + host: "185" + port: -1341615783 + timeoutSeconds: 1408805313 stdinOnce: true - terminationMessagePath: "193" - terminationMessagePolicy: A + terminationMessagePath: "201" + terminationMessagePolicy: ʕIã陫ʋsş")珷<ºɖ tty: true volumeDevices: - devicePath: "166" @@ -619,62 +682,61 @@ template: subPath: "163" subPathExpr: "164" workingDir: "145" - nodeName: "333" + nodeName: "350" nodeSelector: - "329": "330" + "346": "347" overhead: - '''o儿Ƭ銭u裡_': "986" - preemptionPolicy: 闎Ť萃Q+駟à稨氙'[> - priority: 1792673033 - priorityClassName: "391" + ɮ6): "299" + preemptionPolicy: 怨彬ɈNƋl塠傫ü + priority: -1286809305 + priorityClassName: "408" readinessGates: - - conditionType: q塨Ý-扚聧扈4ƫZɀȩ愉BʟƮƙ2詃 - restartPolicy: U髷裎$MVȟ@7飣奺Ȋ - runtimeClassName: "396" - schedulerName: "386" + - conditionType: ųŎ群E牬庘颮6(|ǖû + restartPolicy: 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶 + runtimeClassName: "413" + schedulerName: "403" securityContext: - fsGroup: -609644235388870309 - runAsGroup: 43374460844024823 - runAsNonRoot: false - runAsUser: 6546717103134456682 + fsGroup: 6347577485454457915 + runAsGroup: -860974700141841896 + runAsNonRoot: true + runAsUser: 7525448836100188460 seLinuxOptions: - level: "337" - role: "335" - type: "336" - user: "334" + level: "354" + role: "352" + type: "353" + user: "351" supplementalGroups: - - -5030126702697967530 + - 7258403424756645907 sysctls: - - name: "341" - value: "342" + - name: "358" + value: "359" windowsOptions: - gmsaCredentialSpec: "339" - gmsaCredentialSpecName: "338" - runAsUserName: "340" - serviceAccount: "332" - serviceAccountName: "331" + gmsaCredentialSpec: "356" + gmsaCredentialSpecName: "355" + runAsUserName: "357" + serviceAccount: "349" + serviceAccountName: "348" shareProcessNamespace: false - subdomain: "345" - terminationGracePeriodSeconds: -1448436097540110204 + subdomain: "362" + terminationGracePeriodSeconds: -1689173322096612726 tolerations: - - effect: ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­ - key: "387" - operator: $|gɳ礬.b屏ɧe - tolerationSeconds: -6703183907837349431 - value: "388" + - effect: ŪǗȦɆ悼j蛑q + key: "404" + operator: 栣险¹贮獘薟8Mĕ霉 + tolerationSeconds: 4375148957048018073 + value: "405" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY - operator: NotIn + - key: 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 + operator: In values: - - 9CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--k + - 7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx matchLabels: - ? l-d-8o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m8.o-20st4-7--i1-8miw-7a-2404/5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpS - : "5.0" - maxSkew: -1676200318 - topologyKey: "397" - whenUnsatisfiable: 唞鹚蝉茲ʛ饊ɣKIJW + o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l: b-L7.-__-G_2kCpS__.3g + maxSkew: -554557703 + topologyKey: "414" + whenUnsatisfiable: ¹t骳ɰɰUʜʔŜ0¢ 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 2e998a2f083..fbca39a9275 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 @@ -497,31 +497,36 @@ "successThreshold": 1899367104, "failureThreshold": -27219570 }, + "startupProbe": { + "exec": { + "command": [ + "183" + ] + }, + "httpGet": { + "path": "184", + "port": -303428971, + "host": "185", + "scheme": "e0ɔȖ脵鴈Ōƾ焁yǠ/淹\\韲翁\u0026", + "httpHeaders": [ + { + "name": "186", + "value": "187" + } + ] + }, + "tcpSocket": { + "port": "188", + "host": "189" + }, + "initialDelaySeconds": 642481593, + "timeoutSeconds": -1617414299, + "periodSeconds": 1013966977, + "successThreshold": 1056226939, + "failureThreshold": -1011172037 + }, "lifecycle": { "postStart": { - "exec": { - "command": [ - "183" - ] - }, - "httpGet": { - "path": "184", - "port": "185", - "host": "186", - "scheme": "湙騘", - "httpHeaders": [ - { - "name": "187", - "value": "188" - } - ] - }, - "tcpSocket": { - "port": -1291315853, - "host": "189" - } - }, - "preStop": { "exec": { "command": [ "190" @@ -529,335 +534,132 @@ }, "httpGet": { "path": "191", - "port": -156457987, - "host": "192", - "scheme": "焁yǠ/淹\\韲翁\u0026ʢ", + "port": "192", + "host": "193", + "scheme": "Ɠɥ踓Ǻǧ湬淊k", "httpHeaders": [ { - "name": "193", - "value": "194" + "name": "194", + "value": "195" } ] }, "tcpSocket": { - "port": -1617414299, - "host": "195" - } - } - }, - "terminationMessagePath": "196", - "terminationMessagePolicy": "\\%枅:=ǛƓɥ踓Ǻǧ湬淊kŪ", - "imagePullPolicy": "聡A3fƻfʣ繡楙¯ĦE勗E濞偘1ɩÅ", - "securityContext": { - "capabilities": { - "add": [ - "轺@)蓳嗘TʡȂŏ{sǡƟ狩鴈o_鹈ɹ" - ], - "drop": [ - "É/p" - ] - }, - "privileged": true, - "seLinuxOptions": { - "user": "197", - "role": "198", - "type": "199", - "level": "200" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "201", - "gmsaCredentialSpec": "202", - "runAsUserName": "203" - }, - "runAsUser": -5663998255416893194, - "runAsGroup": -7635256509062757120, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "Ȥ^}穠C]躢|)黰e" - }, - "stdin": true, - "stdinOnce": true, - "tty": true - } - ], - "containers": [ - { - "name": "204", - "image": "205", - "command": [ - "206" - ], - "args": [ - "207" - ], - "workingDir": "208", - "ports": [ - { - "name": "209", - "hostPort": -1351421716, - "containerPort": 798141673, - "protocol": "ɰVzÏ抴", - "hostIP": "210" - } - ], - "envFrom": [ - { - "prefix": "211", - "configMapRef": { - "name": "212", - "optional": false - }, - "secretRef": { - "name": "213", - "optional": false - } - } - ], - "env": [ - { - "name": "214", - "value": "215", - "valueFrom": { - "fieldRef": { - "apiVersion": "216", - "fieldPath": "217" - }, - "resourceFieldRef": { - "containerName": "218", - "resource": "219", - "divisor": "931" - }, - "configMapKeyRef": { - "name": "220", - "key": "221", - "optional": true - }, - "secretKeyRef": { - "name": "222", - "key": "223", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "o\u0026蕭k ź贩j瀉": "621" - }, - "requests": { - "徙ɶɊł/擇ɦĽ胚": "426" - } - }, - "volumeMounts": [ - { - "name": "224", - "readOnly": true, - "mountPath": "225", - "subPath": "226", - "mountPropagation": "lj黳鈫ʕ禒Ƙá腿ħ缶", - "subPathExpr": "227" - } - ], - "volumeDevices": [ - { - "name": "228", - "devicePath": "229" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "230" - ] - }, - "httpGet": { - "path": "231", - "port": 675406340, - "host": "232", - "scheme": "ð»ųKĵ", - "httpHeaders": [ - { - "name": "233", - "value": "234" - } - ] - }, - "tcpSocket": { - "port": -540225644, - "host": "235" - }, - "initialDelaySeconds": -2047333312, - "timeoutSeconds": -1477511050, - "periodSeconds": -1373541406, - "successThreshold": 480521693, - "failureThreshold": -199511133 - }, - "readinessProbe": { - "exec": { - "command": [ - "236" - ] - }, - "httpGet": { - "path": "237", - "port": "238", - "host": "239", - "scheme": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_", - "httpHeaders": [ - { - "name": "240", - "value": "241" - } - ] - }, - "tcpSocket": { - "port": -1222594476, - "host": "242" - }, - "initialDelaySeconds": 657298936, - "timeoutSeconds": -1231552123, - "periodSeconds": 2058961339, - "successThreshold": -997191789, - "failureThreshold": -935589762 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "243" - ] - }, - "httpGet": { - "path": "244", - "port": 446829537, - "host": "245", - "scheme": "閼咎櫸eʔŊ", - "httpHeaders": [ - { - "name": "246", - "value": "247" - } - ] - }, - "tcpSocket": { - "port": 731879508, - "host": "248" + "port": "196", + "host": "197" } }, "preStop": { "exec": { "command": [ - "249" + "198" ] }, "httpGet": { - "path": "250", - "port": -1350331007, - "host": "251", - "scheme": "ę腬瓷碑=ɉ鎷卩蝾H韹寬", + "path": "199", + "port": "200", + "host": "201", + "scheme": "fƻfʣ繡楙¯Ħ", "httpHeaders": [ { - "name": "252", - "value": "253" + "name": "202", + "value": "203" } ] }, "tcpSocket": { - "port": "254", - "host": "255" + "port": "204", + "host": "205" } } }, - "terminationMessagePath": "256", - "terminationMessagePolicy": "瓼猀2:öY鶪5w垁鷌辪", - "imagePullPolicy": "ɑ龫`劳\u0026¼傭Ȟ1酃=6}ɡŇƉ立h", + "terminationMessagePath": "206", + "imagePullPolicy": "ȸŹăȲϤĦ", "securityContext": { "capabilities": { "add": [ - "Ú|dk_" + "M 宸@Z^嫫猤痈C*ĕʄő芖{|" ], "drop": [ - "鞎sn芞QÄȻȊ+?ƭ峧Y栲茇竛吲蚛" + "\"^饣Vȿ$妻ƅ" ] }, "privileged": false, "seLinuxOptions": { - "user": "257", - "role": "258", - "type": "259", - "level": "260" + "user": "207", + "role": "208", + "type": "209", + "level": "210" }, "windowsOptions": { - "gmsaCredentialSpecName": "261", - "gmsaCredentialSpec": "262", - "runAsUserName": "263" + "gmsaCredentialSpecName": "211", + "gmsaCredentialSpec": "212", + "runAsUserName": "213" }, - "runAsUser": -8450215029913275287, - "runAsGroup": 4528195653674047608, - "runAsNonRoot": true, - "readOnlyRootFilesystem": true, + "runAsUser": -7042570146654509247, + "runAsGroup": -6996673662371947627, + "runAsNonRoot": false, + "readOnlyRootFilesystem": false, "allowPrivilegeEscalation": false, - "procMount": "*ʙ嫙\u0026蒒5靇C'ɵK." - }, - "stdin": true, - "stdinOnce": true + "procMount": "dg滠鼍ƭt?Qȫ" + } } ], - "ephemeralContainers": [ + "containers": [ { - "name": "264", - "image": "265", + "name": "214", + "image": "215", "command": [ - "266" + "216" ], "args": [ - "267" + "217" ], - "workingDir": "268", + "workingDir": "218", "ports": [ { - "name": "269", - "hostPort": 1428858742, - "containerPort": -1169420648, - "hostIP": "270" + "name": "219", + "hostPort": -144591150, + "containerPort": 673378190, + "protocol": "Ɵ)Ù", + "hostIP": "220" } ], "envFrom": [ { - "prefix": "271", + "prefix": "221", "configMapRef": { - "name": "272", - "optional": true + "name": "222", + "optional": false }, "secretRef": { - "name": "273", + "name": "223", "optional": false } } ], "env": [ { - "name": "274", - "value": "275", + "name": "224", + "value": "225", "valueFrom": { "fieldRef": { - "apiVersion": "276", - "fieldPath": "277" + "apiVersion": "226", + "fieldPath": "227" }, "resourceFieldRef": { - "containerName": "278", - "resource": "279", - "divisor": "398" + "containerName": "228", + "resource": "229", + "divisor": "46" }, "configMapKeyRef": { - "name": "280", - "key": "281", - "optional": false + "name": "230", + "key": "231", + "optional": true }, "secretKeyRef": { - "name": "282", - "key": "283", + "name": "232", + "key": "233", "optional": true } } @@ -865,213 +667,493 @@ ], "resources": { "limits": { - "E'iþŹʣy": "236" + "瞲": "980" }, "requests": { - "漘Z剚敍0)": "908" + "k ź贩j瀉ǚrǜnh0åȂ": "314" } }, "volumeMounts": [ { - "name": "284", + "name": "234", "readOnly": true, - "mountPath": "285", - "subPath": "286", - "mountPropagation": "嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨFħ", - "subPathExpr": "287" + "mountPath": "235", + "subPath": "236", + "mountPropagation": "O醔ɍ厶耈 T衧ȇe媹Hǝ呮}臷Ľð", + "subPathExpr": "237" } ], "volumeDevices": [ { - "name": "288", - "devicePath": "289" + "name": "238", + "devicePath": "239" } ], "livenessProbe": { "exec": { "command": [ - "290" + "240" ] }, "httpGet": { - "path": "291", - "port": "292", - "host": "293", - "scheme": "ɟ踡肒Ao/樝fw[Řż丩Ž", + "path": "241", + "port": -532628939, + "host": "242", + "scheme": "踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț", "httpHeaders": [ { - "name": "294", - "value": "295" + "name": "243", + "value": "244" } ] }, "tcpSocket": { - "port": "296", - "host": "297" + "port": -1171060347, + "host": "245" }, - "initialDelaySeconds": 988932710, - "timeoutSeconds": -1537700150, - "periodSeconds": -1815868713, - "successThreshold": 105707873, - "failureThreshold": -188803670 + "initialDelaySeconds": -2025874949, + "timeoutSeconds": -1468180511, + "periodSeconds": 1593906314, + "successThreshold": 188341147, + "failureThreshold": -1301133697 }, "readinessProbe": { "exec": { "command": [ - "298" + "246" ] }, "httpGet": { - "path": "299", - "port": 1908572031, - "host": "300", - "scheme": "ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l", + "path": "247", + "port": "248", + "host": "249", + "scheme": "@?鷅bȻN+ņ榱*Gưoɘ檲ɨ銦妰", "httpHeaders": [ { - "name": "301", - "value": "302" + "name": "250", + "value": "251" } ] }, "tcpSocket": { - "port": "303", - "host": "304" + "port": -1079519102, + "host": "252" }, - "initialDelaySeconds": 1584001904, - "timeoutSeconds": -839281354, - "periodSeconds": 2035347577, - "successThreshold": -819723498, - "failureThreshold": -150133456 + "initialDelaySeconds": -1266125247, + "timeoutSeconds": -50623103, + "periodSeconds": 1795738696, + "successThreshold": -1350331007, + "failureThreshold": -1145306833 + }, + "startupProbe": { + "exec": { + "command": [ + "253" + ] + }, + "httpGet": { + "path": "254", + "port": "255", + "host": "256", + "scheme": "湨", + "httpHeaders": [ + { + "name": "257", + "value": "258" + } + ] + }, + "tcpSocket": { + "port": 1824183165, + "host": "259" + }, + "initialDelaySeconds": 609274415, + "timeoutSeconds": 581816190, + "periodSeconds": -204658565, + "successThreshold": -498077886, + "failureThreshold": 1592637538 }, "lifecycle": { "postStart": { "exec": { "command": [ - "305" + "260" ] }, "httpGet": { - "path": "306", - "port": 1447898632, - "host": "307", - "scheme": "þ蛯ɰ荶lj", + "path": "261", + "port": "262", + "host": "263", + "scheme": "ńMǰ溟ɴ扵閝", "httpHeaders": [ { - "name": "308", - "value": "309" + "name": "264", + "value": "265" } ] }, "tcpSocket": { - "port": -1180080716, - "host": "310" + "port": -1474440600, + "host": "266" } }, "preStop": { "exec": { "command": [ - "311" + "267" ] }, "httpGet": { - "path": "312", - "port": 1428207963, - "host": "313", + "path": "268", + "port": 44308192, + "host": "269", + "scheme": "Żwʮ馜üNșƶ4ĩĉ", "httpHeaders": [ { - "name": "314", - "value": "315" + "name": "270", + "value": "271" } ] }, "tcpSocket": { - "port": 270599701, - "host": "316" + "port": "272", + "host": "273" } } }, - "terminationMessagePath": "317", - "terminationMessagePolicy": "ʤî萨zvt莭", - "imagePullPolicy": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p", + "terminationMessagePath": "274", + "terminationMessagePolicy": "ɖȃ賲鐅臬dH巧壚tC十Oɢ", + "imagePullPolicy": "QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖\u003cǶ", "securityContext": { "capabilities": { "add": [ - "sĨɆâĺɗŹ倗S晒嶗U" + "" ], "drop": [ - "_ƮA攤/ɸɎ R§耶FfBl" + "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "275", + "role": "276", + "type": "277", + "level": "278" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "279", + "gmsaCredentialSpec": "280", + "runAsUserName": "281" + }, + "runAsUser": 390808457597161112, + "runAsGroup": -7567945069856455979, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "粛E煹" + }, + "stdinOnce": true, + "tty": true + } + ], + "ephemeralContainers": [ + { + "name": "282", + "image": "283", + "command": [ + "284" + ], + "args": [ + "285" + ], + "workingDir": "286", + "ports": [ + { + "name": "287", + "hostPort": 304141309, + "containerPort": -88173241, + "protocol": "Źʣy豎@ɀ羭,铻O", + "hostIP": "288" + } + ], + "envFrom": [ + { + "prefix": "289", + "configMapRef": { + "name": "290", + "optional": true + }, + "secretRef": { + "name": "291", + "optional": true + } + } + ], + "env": [ + { + "name": "292", + "value": "293", + "valueFrom": { + "fieldRef": { + "apiVersion": "294", + "fieldPath": "295" + }, + "resourceFieldRef": { + "containerName": "296", + "resource": "297", + "divisor": "714" + }, + "configMapKeyRef": { + "name": "298", + "key": "299", + "optional": true + }, + "secretKeyRef": { + "name": "300", + "key": "301", + "optional": true + } + } + } + ], + "resources": { + "limits": { + "釆Ɗ+j忊": "486" + }, + "requests": { + "嫭塓烀罁胾": "494" + } + }, + "volumeMounts": [ + { + "name": "302", + "readOnly": true, + "mountPath": "303", + "subPath": "304", + "mountPropagation": "ǒɿʒ刽ʼn掏1ſ盷褎weLJ", + "subPathExpr": "305" + } + ], + "volumeDevices": [ + { + "name": "306", + "devicePath": "307" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "308" + ] + }, + "httpGet": { + "path": "309", + "port": "310", + "host": "311", + "httpHeaders": [ + { + "name": "312", + "value": "313" + } + ] + }, + "tcpSocket": { + "port": "314", + "host": "315" + }, + "initialDelaySeconds": -1537700150, + "timeoutSeconds": -1815868713, + "periodSeconds": 105707873, + "successThreshold": -188803670, + "failureThreshold": 1832870128 + }, + "readinessProbe": { + "exec": { + "command": [ + "316" + ] + }, + "httpGet": { + "path": "317", + "port": 1422435836, + "host": "318", + "scheme": ",ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ", + "httpHeaders": [ + { + "name": "319", + "value": "320" + } + ] + }, + "tcpSocket": { + "port": "321", + "host": "322" + }, + "initialDelaySeconds": -819723498, + "timeoutSeconds": -150133456, + "periodSeconds": 1507815593, + "successThreshold": 1498833271, + "failureThreshold": 1505082076 + }, + "startupProbe": { + "exec": { + "command": [ + "323" + ] + }, + "httpGet": { + "path": "324", + "port": 2134439962, + "host": "325", + "scheme": "Ȋ礶", + "httpHeaders": [ + { + "name": "326", + "value": "327" + } + ] + }, + "tcpSocket": { + "port": "328", + "host": "329" + }, + "initialDelaySeconds": 1919527626, + "timeoutSeconds": -389501466, + "periodSeconds": -161753937, + "successThreshold": -1578746609, + "failureThreshold": 1428207963 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "330" + ] + }, + "httpGet": { + "path": "331", + "port": "332", + "host": "333", + "scheme": "ʤî萨zvt莭", + "httpHeaders": [ + { + "name": "334", + "value": "335" + } + ] + }, + "tcpSocket": { + "port": "336", + "host": "337" + } + }, + "preStop": { + "exec": { + "command": [ + "338" + ] + }, + "httpGet": { + "path": "339", + "port": "340", + "host": "341", + "scheme": "ļ腻ŬƩȿ", + "httpHeaders": [ + { + "name": "342", + "value": "343" + } + ] + }, + "tcpSocket": { + "port": -2123728714, + "host": "344" + } + } + }, + "terminationMessagePath": "345", + "terminationMessagePolicy": "ʝ瘴I\\p[ħsĨ", + "imagePullPolicy": "Ve", + "securityContext": { + "capabilities": { + "add": [ + "FD剂讼ɓȌʟn" + ], + "drop": [ + "酛3ƁÀ*f\u003c鴒翁杙" ] }, "privileged": true, "seLinuxOptions": { - "user": "318", - "role": "319", - "type": "320", - "level": "321" + "user": "346", + "role": "347", + "type": "348", + "level": "349" }, "windowsOptions": { - "gmsaCredentialSpecName": "322", - "gmsaCredentialSpec": "323", - "runAsUserName": "324" + "gmsaCredentialSpecName": "350", + "gmsaCredentialSpec": "351", + "runAsUserName": "352" }, - "runAsUser": -1422849761759913573, - "runAsGroup": -4227284644269939905, - "runAsNonRoot": true, + "runAsUser": 4125312213789345425, + "runAsGroup": -3295693280350872542, + "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "dz娝嘚庎D}埽uʎȺ眖R#yV'WK" + "procMount": "螡źȰ?$矡ȶ网棊ʢ=wǕɳ" }, "stdinOnce": true, "tty": true, - "targetContainerName": "325" + "targetContainerName": "353" } ], - "restartPolicy": "ğ儴Ůĺ}潷ʒ胵輓", - "terminationGracePeriodSeconds": 1616645369356252673, - "activeDeadlineSeconds": 3749749117130745391, - "dnsPolicy": "œȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]", + "restartPolicy": "Ì", + "terminationGracePeriodSeconds": -860974700141841896, + "activeDeadlineSeconds": -5860790522738935260, + "dnsPolicy": "w(ğ儴Ůĺ}潷ʒ胵", "nodeSelector": { - "326": "327" + "354": "355" }, - "serviceAccountName": "328", - "serviceAccount": "329", - "automountServiceAccountToken": true, - "nodeName": "330", + "serviceAccountName": "356", + "serviceAccount": "357", + "automountServiceAccountToken": false, + "nodeName": "358", "hostNetwork": true, - "shareProcessNamespace": false, + "hostPID": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "331", - "role": "332", - "type": "333", - "level": "334" + "user": "359", + "role": "360", + "type": "361", + "level": "362" }, "windowsOptions": { - "gmsaCredentialSpecName": "335", - "gmsaCredentialSpec": "336", - "runAsUserName": "337" + "gmsaCredentialSpecName": "363", + "gmsaCredentialSpec": "364", + "runAsUserName": "365" }, - "runAsUser": 3785971062093853048, - "runAsGroup": -4207281854510634861, + "runAsUser": -7059779929916534575, + "runAsGroup": -4105014793515441558, "runAsNonRoot": true, "supplementalGroups": [ - 2007000972845989054 + 830921445879518469 ], - "fsGroup": -6090661315121334525, + "fsGroup": 7861919711004065015, "sysctls": [ { - "name": "338", - "value": "339" + "name": "366", + "value": "367" } ] }, "imagePullSecrets": [ { - "name": "340" + "name": "368" } ], - "hostname": "341", - "subdomain": "342", + "hostname": "369", + "subdomain": "370", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1079,19 +1161,19 @@ { "matchExpressions": [ { - "key": "343", - "operator": "", + "key": "371", + "operator": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "values": [ - "344" + "372" ] } ], "matchFields": [ { - "key": "345", - "operator": "Ȃ4", + "key": "373", + "operator": "t叀碧闳ȩr嚧ʣq埄", "values": [ - "346" + "374" ] } ] @@ -1100,23 +1182,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 508868877, + "weight": -379385405, "preference": { "matchExpressions": [ { - "key": "347", - "operator": "", + "key": "375", + "operator": "岼昕ĬÇó藢xɮĵȑ6L*Z", "values": [ - "348" + "376" ] } ], "matchFields": [ { - "key": "349", - "operator": "ĬÇó藢xɮĵȑ6L*Z", + "key": "377", + "operator": "绤fʀļ腩墺Ò媁荭g", "values": [ - "350" + "378" ] } ] @@ -1129,46 +1211,40 @@ { "labelSelector": { "matchLabels": { - "O_.J_-G_--d": "2E_--o90G_A4..-L..-__0N_N.O0" + "6-d42--clo90---461v-07r--0---8-30i-uo/9DF": "AH-Q.GM72_-c-.-.6--3-__t" }, "matchExpressions": [ { - "key": "n.j-6-o-h-9-15v-5925a-x12a-214-3s--gg93--p/2hT.-z-._7-5lL..-_--.VEa-_gn.n", - "operator": "NotIn", - "values": [ - "E__K_g1cXfr.4_.-_-_-...1py_t" - ] + "key": "8SUGP.-_.uB-.--.gb_2_-8--z", + "operator": "Exists" } ] }, "namespaces": [ - "357" + "385" ], - "topologyKey": "358" + "topologyKey": "386" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1449289597, + "weight": 1258370227, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "43---93-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/32K_2qu_0S-CqW.D_8--21kF-c026n": "yP9S--858LI__.8____rO-S-P_-...07" + "N-_-vv-Q2q7": "3.4....-h._.GgT7_7P" }, "matchExpressions": [ { - "key": "KCR.s--f.-f.-zv._._.5-H.T.-.-.T-V_S", - "operator": "NotIn", - "values": [ - "4.Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.wo" - ] + "key": "ftie4-7--gm4p-8y-9-te858----38----r-m-a--q3980c7fp/26GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sn_.x", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "365" + "393" ], - "topologyKey": "366" + "topologyKey": "394" } } ] @@ -1178,108 +1254,108 @@ { "labelSelector": { "matchLabels": { - "3--j2---2--82--cj-1-s--op34-yw/g_I-A-_3bz._M": "4_Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l" + "927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-53-x1y-8---3----7/mf.-f.-zv._._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_x32": "0U1_-__.71-_-9_._X-D---k..1Q7N" }, "matchExpressions": [ { - "key": "2-mv56c27-23---g----1/MXOnf_ZN.-_--6", + "key": "2I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7s", "operator": "DoesNotExist" } ] }, "namespaces": [ - "373" + "401" ], - "topologyKey": "374" + "topologyKey": "402" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1000831922, + "weight": 1289969734, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "8.--w0_1V7": "r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" + "gr-y7nlp97v-0-1y-t3---2ga-v205p-26-l.p2-t--m-l80--5o1--cp6-5-x1---0w4rm0/f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--wO": "" }, "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" ] } ] }, "namespaces": [ - "381" + "409" ], - "topologyKey": "382" + "topologyKey": "410" } } ] } }, - "schedulerName": "383", + "schedulerName": "411", "tolerations": [ { - "key": "384", - "operator": "!蘋`翾'ųŎ", - "value": "385", - "effect": "亦輯\u003e肸H5fŮƛƛ龢ÄƤU", - "tolerationSeconds": -1346654761106639569 + "key": "412", + "operator": "}缫,", + "value": "413", + "effect": "ɉ愂", + "tolerationSeconds": 5005983565679986804 } ], "hostAliases": [ { - "ip": "386", + "ip": "414", "hostnames": [ - "387" + "415" ] } ], - "priorityClassName": "388", - "priority": -418556976, + "priorityClassName": "416", + "priority": 178156526, "dnsConfig": { "nameservers": [ - "389" + "417" ], "searches": [ - "390" + "418" ], "options": [ { - "name": "391", - "value": "392" + "name": "419", + "value": "420" } ] }, "readinessGates": [ { - "conditionType": "ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ" + "conditionType": "糮R(_âŔ獎$ƆJije檗" } ], - "runtimeClassName": "393", + "runtimeClassName": "421", "enableServiceLinks": true, - "preemptionPolicy": "啾閥óƒ", + "preemptionPolicy": "ʜ_ȭwɵ糫武诰ð", "overhead": { - "Üɉ愂,wa纝佯fɞ": "823" + "娒Ġ滔xvŗÑ\"虆k遚釾ʼn{": "803" }, "topologySpreadConstraints": [ { - "maxSkew": 1831585697, - "topologyKey": "394", - "whenUnsatisfiable": "U駯Ĕ驢.'", + "maxSkew": -1531421126, + "topologyKey": "422", + "whenUnsatisfiable": "墘ȕûy\u003cvĝ線Ưȫ喆5O2.", "labelSelector": { "matchLabels": { - "8o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C" + "7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY": "0" }, "matchExpressions": [ { - "key": "4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p", + "key": "vf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7yd-y-3/hjO", "operator": "NotIn", "values": [ - "N7_B_r" + "c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG" ] } ] @@ -1290,18 +1366,18 @@ } }, "status": { - "replicas": 1454867437, - "fullyLabeledReplicas": 1648811301, - "readyReplicas": -2062497734, - "availableReplicas": 1309129044, - "observedGeneration": 1503865638277557961, + "replicas": -1530496417, + "fullyLabeledReplicas": -1698525469, + "readyReplicas": -525943726, + "availableReplicas": -578926701, + "observedGeneration": 8034206547748752944, "conditions": [ { - "type": "Ŭ尌eáNRNJ丧鴻ĿW癜鞤A馱z芀", - "status": "璻攜", - "lastTransitionTime": "2519-06-20T10:43:36Z", - "reason": "401", - "message": "402" + "type": "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲", + "status": "\u003e堵zŕƧ钖孝0蛮xAǫ\u0026tŧK剛Ʀ", + "lastTransitionTime": "2837-10-14T23:23:27Z", + "reason": "429", + "message": "430" } ] } 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 1a84c3f1789..7f1fc546c6b 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 a2fc2d434b2..68d5af64ea3 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,412 +65,450 @@ spec: selfLink: "24" uid: '*齧獚敆Ȏțêɘ' spec: - activeDeadlineSeconds: 3749749117130745391 + activeDeadlineSeconds: -5860790522738935260 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "347" - operator: "" + - key: "375" + operator: 岼昕ĬÇó藢xɮĵȑ6L*Z values: - - "348" + - "376" matchFields: - - key: "349" - operator: ĬÇó藢xɮĵȑ6L*Z + - key: "377" + operator: 绤fʀļ腩墺Ò媁荭g values: - - "350" - weight: 508868877 + - "378" + weight: -379385405 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "343" - operator: "" + - key: "371" + operator: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ values: - - "344" + - "372" matchFields: - - key: "345" - operator: Ȃ4 + - key: "373" + operator: t叀碧闳ȩr嚧ʣq埄 values: - - "346" + - "374" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: KCR.s--f.-f.-zv._._.5-H.T.-.-.T-V_S - operator: NotIn - values: - - 4.Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.wo + - key: ftie4-7--gm4p-8y-9-te858----38----r-m-a--q3980c7fp/26GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sn_.x + operator: DoesNotExist matchLabels: - 43---93-2-2-37--e00uz-z0sn-8hx-qa--0o8m3-d0w3/32K_2qu_0S-CqW.D_8--21kF-c026n: yP9S--858LI__.8____rO-S-P_-...07 + N-_-vv-Q2q7: 3.4....-h._.GgT7_7P namespaces: - - "365" - topologyKey: "366" - weight: -1449289597 + - "393" + topologyKey: "394" + weight: 1258370227 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: n.j-6-o-h-9-15v-5925a-x12a-214-3s--gg93--p/2hT.-z-._7-5lL..-_--.VEa-_gn.n - operator: NotIn - values: - - E__K_g1cXfr.4_.-_-_-...1py_t + - key: 8SUGP.-_.uB-.--.gb_2_-8--z + operator: Exists matchLabels: - O_.J_-G_--d: 2E_--o90G_A4..-L..-__0N_N.O0 + 6-d42--clo90---461v-07r--0---8-30i-uo/9DF: AH-Q.GM72_-c-.-.6--3-__t namespaces: - - "357" - topologyKey: "358" + - "385" + topologyKey: "386" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: 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 matchLabels: - 8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc + gr-y7nlp97v-0-1y-t3---2ga-v205p-26-l.p2-t--m-l80--5o1--cp6-5-x1---0w4rm0/f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--wO: "" namespaces: - - "381" - topologyKey: "382" - weight: -1000831922 + - "409" + topologyKey: "410" + weight: 1289969734 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 2-mv56c27-23---g----1/MXOnf_ZN.-_--6 + - key: 2I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7s operator: DoesNotExist matchLabels: - 3--j2---2--82--cj-1-s--op34-yw/g_I-A-_3bz._M: 4_Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l + 927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-53-x1y-8---3----7/mf.-f.-zv._._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_x32: 0U1_-__.71-_-9_._X-D---k..1Q7N namespaces: - - "373" - topologyKey: "374" - automountServiceAccountToken: true + - "401" + topologyKey: "402" + automountServiceAccountToken: false containers: - args: - - "207" + - "217" command: - - "206" + - "216" env: - - name: "214" - value: "215" + - name: "224" + value: "225" valueFrom: configMapKeyRef: - key: "221" - name: "220" + key: "231" + name: "230" optional: true fieldRef: - apiVersion: "216" - fieldPath: "217" + apiVersion: "226" + fieldPath: "227" resourceFieldRef: - containerName: "218" - divisor: "931" - resource: "219" + containerName: "228" + divisor: "46" + resource: "229" secretKeyRef: - key: "223" - name: "222" + key: "233" + name: "232" optional: true envFrom: - configMapRef: - name: "212" + name: "222" optional: false - prefix: "211" + prefix: "221" secretRef: - name: "213" + name: "223" optional: false - image: "205" - imagePullPolicy: ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇƉ立h + image: "215" + imagePullPolicy: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ lifecycle: postStart: exec: command: - - "243" + - "260" httpGet: - host: "245" + host: "263" httpHeaders: - - name: "246" - value: "247" - path: "244" - port: 446829537 - scheme: 閼咎櫸eʔŊ + - name: "264" + value: "265" + path: "261" + port: "262" + scheme: ńMǰ溟ɴ扵閝 tcpSocket: - host: "248" - port: 731879508 + host: "266" + port: -1474440600 preStop: exec: command: - - "249" + - "267" httpGet: - host: "251" + host: "269" httpHeaders: - - name: "252" - value: "253" - path: "250" - port: -1350331007 - scheme: ę腬瓷碑=ɉ鎷卩蝾H韹寬 + - name: "270" + value: "271" + path: "268" + port: 44308192 + scheme: Żwʮ馜üNșƶ4ĩĉ tcpSocket: - host: "255" - port: "254" + host: "273" + port: "272" livenessProbe: exec: command: - - "230" - failureThreshold: -199511133 + - "240" + failureThreshold: -1301133697 httpGet: - host: "232" + host: "242" httpHeaders: - - name: "233" - value: "234" - path: "231" - port: 675406340 - scheme: ð»ųKĵ - initialDelaySeconds: -2047333312 - periodSeconds: -1373541406 - successThreshold: 480521693 + - name: "243" + value: "244" + path: "241" + port: -532628939 + scheme: 踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț + initialDelaySeconds: -2025874949 + periodSeconds: 1593906314 + successThreshold: 188341147 tcpSocket: - host: "235" - port: -540225644 - timeoutSeconds: -1477511050 - name: "204" + host: "245" + port: -1171060347 + timeoutSeconds: -1468180511 + name: "214" ports: - - containerPort: 798141673 - hostIP: "210" - hostPort: -1351421716 - name: "209" - protocol: ɰVzÏ抴 + - containerPort: 673378190 + hostIP: "220" + hostPort: -144591150 + name: "219" + protocol: Ɵ)Ù readinessProbe: exec: command: - - "236" - failureThreshold: -935589762 + - "246" + failureThreshold: -1145306833 httpGet: - host: "239" + host: "249" httpHeaders: - - name: "240" - value: "241" - path: "237" - port: "238" - scheme: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ - initialDelaySeconds: 657298936 - periodSeconds: 2058961339 - successThreshold: -997191789 + - name: "250" + value: "251" + path: "247" + port: "248" + scheme: '@?鷅bȻN+ņ榱*Gưoɘ檲ɨ銦妰' + initialDelaySeconds: -1266125247 + periodSeconds: 1795738696 + successThreshold: -1350331007 tcpSocket: - host: "242" - port: -1222594476 - timeoutSeconds: -1231552123 + host: "252" + port: -1079519102 + timeoutSeconds: -50623103 resources: limits: - o&蕭k ź贩j瀉: "621" + 瞲: "980" requests: - 徙ɶɊł/擇ɦĽ胚: "426" + k ź贩j瀉ǚrǜnh0åȂ: "314" securityContext: allowPrivilegeEscalation: false capabilities: add: - - Ú|dk_ + - "" drop: - - 鞎sn芞QÄȻȊ+?ƭ峧Y栲茇竛吲蚛 + - £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 privileged: false - procMount: '*ʙ嫙&蒒5靇C''ɵK.' + procMount: 粛E煹 readOnlyRootFilesystem: true - runAsGroup: 4528195653674047608 + runAsGroup: -7567945069856455979 runAsNonRoot: true - runAsUser: -8450215029913275287 + runAsUser: 390808457597161112 seLinuxOptions: - level: "260" - role: "258" - type: "259" - user: "257" + level: "278" + role: "276" + type: "277" + user: "275" windowsOptions: - gmsaCredentialSpec: "262" - gmsaCredentialSpecName: "261" - runAsUserName: "263" - stdin: true + gmsaCredentialSpec: "280" + gmsaCredentialSpecName: "279" + runAsUserName: "281" + startupProbe: + exec: + command: + - "253" + failureThreshold: 1592637538 + httpGet: + host: "256" + httpHeaders: + - name: "257" + value: "258" + path: "254" + port: "255" + scheme: 湨 + initialDelaySeconds: 609274415 + periodSeconds: -204658565 + successThreshold: -498077886 + tcpSocket: + host: "259" + port: 1824183165 + timeoutSeconds: 581816190 stdinOnce: true - terminationMessagePath: "256" - terminationMessagePolicy: 瓼猀2:öY鶪5w垁鷌辪 + terminationMessagePath: "274" + terminationMessagePolicy: ɖȃ賲鐅臬dH巧壚tC十Oɢ + tty: true volumeDevices: - - devicePath: "229" - name: "228" + - devicePath: "239" + name: "238" volumeMounts: - - mountPath: "225" - mountPropagation: lj黳鈫ʕ禒Ƙá腿ħ缶 - name: "224" + - mountPath: "235" + mountPropagation: O醔ɍ厶耈 T衧ȇe媹Hǝ呮}臷Ľð + name: "234" readOnly: true - subPath: "226" - subPathExpr: "227" - workingDir: "208" + subPath: "236" + subPathExpr: "237" + workingDir: "218" dnsConfig: nameservers: - - "389" + - "417" options: - - name: "391" - value: "392" + - name: "419" + value: "420" searches: - - "390" - dnsPolicy: œȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] + - "418" + dnsPolicy: w(ğ儴Ůĺ}潷ʒ胵 enableServiceLinks: true ephemeralContainers: - args: - - "267" + - "285" command: - - "266" + - "284" env: - - name: "274" - value: "275" + - name: "292" + value: "293" valueFrom: configMapKeyRef: - key: "281" - name: "280" - optional: false + key: "299" + name: "298" + optional: true fieldRef: - apiVersion: "276" - fieldPath: "277" + apiVersion: "294" + fieldPath: "295" resourceFieldRef: - containerName: "278" - divisor: "398" - resource: "279" + containerName: "296" + divisor: "714" + resource: "297" secretKeyRef: - key: "283" - name: "282" + key: "301" + name: "300" optional: true envFrom: - configMapRef: - name: "272" + name: "290" optional: true - prefix: "271" + prefix: "289" secretRef: - name: "273" - optional: false - image: "265" - imagePullPolicy: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p + name: "291" + optional: true + image: "283" + imagePullPolicy: Ve lifecycle: postStart: exec: command: - - "305" + - "330" httpGet: - host: "307" + host: "333" httpHeaders: - - name: "308" - value: "309" - path: "306" - port: 1447898632 - scheme: þ蛯ɰ荶lj + - name: "334" + value: "335" + path: "331" + port: "332" + scheme: ʤî萨zvt莭 tcpSocket: - host: "310" - port: -1180080716 + host: "337" + port: "336" preStop: exec: command: - - "311" + - "338" httpGet: - host: "313" + host: "341" httpHeaders: - - name: "314" - value: "315" - path: "312" - port: 1428207963 + - name: "342" + value: "343" + path: "339" + port: "340" + scheme: ļ腻ŬƩȿ tcpSocket: - host: "316" - port: 270599701 + host: "344" + port: -2123728714 livenessProbe: exec: command: - - "290" - failureThreshold: -188803670 + - "308" + failureThreshold: 1832870128 httpGet: - host: "293" + host: "311" httpHeaders: - - name: "294" - value: "295" - path: "291" - port: "292" - scheme: ɟ踡肒Ao/樝fw[Řż丩Ž - initialDelaySeconds: 988932710 - periodSeconds: -1815868713 - successThreshold: 105707873 + - name: "312" + value: "313" + path: "309" + port: "310" + initialDelaySeconds: -1537700150 + periodSeconds: 105707873 + successThreshold: -188803670 tcpSocket: - host: "297" - port: "296" - timeoutSeconds: -1537700150 - name: "264" + host: "315" + port: "314" + timeoutSeconds: -1815868713 + name: "282" ports: - - containerPort: -1169420648 - hostIP: "270" - hostPort: 1428858742 - name: "269" + - containerPort: -88173241 + hostIP: "288" + hostPort: 304141309 + name: "287" + protocol: Źʣy豎@ɀ羭,铻O readinessProbe: exec: command: - - "298" - failureThreshold: -150133456 + - "316" + failureThreshold: 1505082076 httpGet: - host: "300" + host: "318" httpHeaders: - - name: "301" - value: "302" - path: "299" - port: 1908572031 - scheme: ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l - initialDelaySeconds: 1584001904 - periodSeconds: 2035347577 - successThreshold: -819723498 + - name: "319" + value: "320" + path: "317" + port: 1422435836 + scheme: ',ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ' + initialDelaySeconds: -819723498 + periodSeconds: 1507815593 + successThreshold: 1498833271 tcpSocket: - host: "304" - port: "303" - timeoutSeconds: -839281354 + host: "322" + port: "321" + timeoutSeconds: -150133456 resources: limits: - E'iþŹʣy: "236" + 釆Ɗ+j忊: "486" requests: - 漘Z剚敍0): "908" + 嫭塓烀罁胾: "494" securityContext: allowPrivilegeEscalation: false capabilities: add: - - sĨɆâĺɗŹ倗S晒嶗U + - FD剂讼ɓȌʟn drop: - - _ƮA攤/ɸɎ R§耶FfBl + - 酛3ƁÀ*f<鴒翁杙 privileged: true - procMount: dz娝嘚庎D}埽uʎȺ眖R#yV'WK + procMount: 螡źȰ?$矡ȶ网棊ʢ=wǕɳ readOnlyRootFilesystem: true - runAsGroup: -4227284644269939905 - runAsNonRoot: true - runAsUser: -1422849761759913573 + runAsGroup: -3295693280350872542 + runAsNonRoot: false + runAsUser: 4125312213789345425 seLinuxOptions: - level: "321" - role: "319" - type: "320" - user: "318" + level: "349" + role: "347" + type: "348" + user: "346" windowsOptions: - gmsaCredentialSpec: "323" - gmsaCredentialSpecName: "322" - runAsUserName: "324" + gmsaCredentialSpec: "351" + gmsaCredentialSpecName: "350" + runAsUserName: "352" + startupProbe: + exec: + command: + - "323" + failureThreshold: 1428207963 + httpGet: + host: "325" + httpHeaders: + - name: "326" + value: "327" + path: "324" + port: 2134439962 + scheme: Ȋ礶 + initialDelaySeconds: 1919527626 + periodSeconds: -161753937 + successThreshold: -1578746609 + tcpSocket: + host: "329" + port: "328" + timeoutSeconds: -389501466 stdinOnce: true - targetContainerName: "325" - terminationMessagePath: "317" - terminationMessagePolicy: ʤî萨zvt莭 + targetContainerName: "353" + terminationMessagePath: "345" + terminationMessagePolicy: ʝ瘴I\p[ħsĨ tty: true volumeDevices: - - devicePath: "289" - name: "288" + - devicePath: "307" + name: "306" volumeMounts: - - mountPath: "285" - mountPropagation: 嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨFħ - name: "284" + - mountPath: "303" + mountPropagation: ǒɿʒ刽ʼn掏1ſ盷褎weLJ + name: "302" readOnly: true - subPath: "286" - subPathExpr: "287" - workingDir: "268" + subPath: "304" + subPathExpr: "305" + workingDir: "286" hostAliases: - hostnames: - - "387" - ip: "386" + - "415" + ip: "414" hostNetwork: true - hostname: "341" + hostPID: true + hostname: "369" imagePullSecrets: - - name: "340" + - name: "368" initContainers: - args: - "146" @@ -504,38 +542,38 @@ spec: name: "152" optional: true image: "144" - imagePullPolicy: 聡A3fƻfʣ繡楙¯ĦE勗E濞偘1ɩÅ + imagePullPolicy: ȸŹăȲϤĦ lifecycle: postStart: exec: command: - - "183" + - "190" httpGet: - host: "186" + host: "193" httpHeaders: - - name: "187" - value: "188" - path: "184" - port: "185" - scheme: 湙騘 + - name: "194" + value: "195" + path: "191" + port: "192" + scheme: Ɠɥ踓Ǻǧ湬淊k tcpSocket: - host: "189" - port: -1291315853 + host: "197" + port: "196" preStop: exec: command: - - "190" + - "198" httpGet: - host: "192" + host: "201" httpHeaders: - - name: "193" - value: "194" - path: "191" - port: -156457987 - scheme: 焁yǠ/淹\韲翁&ʢ + - name: "202" + value: "203" + path: "199" + port: "200" + scheme: fƻfʣ繡楙¯Ħ tcpSocket: - host: "195" - port: -1617414299 + host: "205" + port: "204" livenessProbe: exec: command: @@ -589,32 +627,48 @@ spec: requests: 郀叚Fi皬择,Q捇ȸ{+ɸ殁: "687" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 轺@)蓳嗘TʡȂŏ{sǡƟ狩鴈o_鹈ɹ + - M 宸@Z^嫫猤痈C*ĕʄő芖{| drop: - - É/p - privileged: true - procMount: Ȥ^}穠C]躢|)黰e + - '"^饣Vȿ$妻ƅ' + privileged: false + procMount: dg滠鼍ƭt?Qȫ readOnlyRootFilesystem: false - runAsGroup: -7635256509062757120 + runAsGroup: -6996673662371947627 runAsNonRoot: false - runAsUser: -5663998255416893194 + runAsUser: -7042570146654509247 seLinuxOptions: - level: "200" - role: "198" - type: "199" - user: "197" + level: "210" + role: "208" + type: "209" + user: "207" windowsOptions: - gmsaCredentialSpec: "202" - gmsaCredentialSpecName: "201" - runAsUserName: "203" - stdin: true - stdinOnce: true - terminationMessagePath: "196" - terminationMessagePolicy: \%枅:=ǛƓɥ踓Ǻǧ湬淊kŪ - tty: true + gmsaCredentialSpec: "212" + gmsaCredentialSpecName: "211" + runAsUserName: "213" + startupProbe: + exec: + command: + - "183" + failureThreshold: -1011172037 + httpGet: + host: "185" + httpHeaders: + - name: "186" + value: "187" + path: "184" + port: -303428971 + scheme: e0ɔȖ脵鴈Ōƾ焁yǠ/淹\韲翁& + initialDelaySeconds: 642481593 + periodSeconds: 1013966977 + successThreshold: 1056226939 + tcpSocket: + host: "189" + port: "188" + timeoutSeconds: -1617414299 + terminationMessagePath: "206" volumeDevices: - devicePath: "168" name: "167" @@ -625,61 +679,61 @@ spec: subPath: "165" subPathExpr: "166" workingDir: "147" - nodeName: "330" + nodeName: "358" nodeSelector: - "326": "327" + "354": "355" overhead: - Üɉ愂,wa纝佯fɞ: "823" - preemptionPolicy: 啾閥óƒ - priority: -418556976 - priorityClassName: "388" + 娒Ġ滔xvŗÑ"虆k遚釾ʼn{: "803" + preemptionPolicy: ʜ_ȭwɵ糫武诰ð + priority: 178156526 + priorityClassName: "416" readinessGates: - - conditionType: ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ - restartPolicy: ğ儴Ůĺ}潷ʒ胵輓 - runtimeClassName: "393" - schedulerName: "383" + - conditionType: 糮R(_âŔ獎$ƆJije檗 + restartPolicy: Ì + runtimeClassName: "421" + schedulerName: "411" securityContext: - fsGroup: -6090661315121334525 - runAsGroup: -4207281854510634861 + fsGroup: 7861919711004065015 + runAsGroup: -4105014793515441558 runAsNonRoot: true - runAsUser: 3785971062093853048 + runAsUser: -7059779929916534575 seLinuxOptions: - level: "334" - role: "332" - type: "333" - user: "331" + level: "362" + role: "360" + type: "361" + user: "359" supplementalGroups: - - 2007000972845989054 + - 830921445879518469 sysctls: - - name: "338" - value: "339" + - name: "366" + value: "367" windowsOptions: - gmsaCredentialSpec: "336" - gmsaCredentialSpecName: "335" - runAsUserName: "337" - serviceAccount: "329" - serviceAccountName: "328" - shareProcessNamespace: false - subdomain: "342" - terminationGracePeriodSeconds: 1616645369356252673 + gmsaCredentialSpec: "364" + gmsaCredentialSpecName: "363" + runAsUserName: "365" + serviceAccount: "357" + serviceAccountName: "356" + shareProcessNamespace: true + subdomain: "370" + terminationGracePeriodSeconds: -860974700141841896 tolerations: - - effect: 亦輯>肸H5fŮƛƛ龢ÄƤU - key: "384" - operator: '!蘋`翾''ųŎ' - tolerationSeconds: -1346654761106639569 - value: "385" + - effect: ɉ愂 + key: "412" + operator: '}缫,' + tolerationSeconds: 5005983565679986804 + value: "413" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p + - key: vf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7yd-y-3/hjO operator: NotIn values: - - N7_B_r + - c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG matchLabels: - 8o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C - maxSkew: 1831585697 - topologyKey: "394" - whenUnsatisfiable: U駯Ĕ驢.' + 7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY: "0" + maxSkew: -1531421126 + topologyKey: "422" + whenUnsatisfiable: 墘ȕûy堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ' + type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲 + fullyLabeledReplicas: -1698525469 + observedGeneration: 8034206547748752944 + readyReplicas: -525943726 + replicas: -1530496417 diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json index 95abdcf907a..502da5dfa2f 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json @@ -509,143 +509,173 @@ "successThreshold": -1430577593, "failureThreshold": 524249411 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "k_瀹鞎sn芞QÄȻ", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": "194", + "host": "195" + }, + "initialDelaySeconds": 364013971, + "timeoutSeconds": 1596422492, + "periodSeconds": -1790124395, + "successThreshold": 1094670193, + "failureThreshold": 905846572 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "196" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", + "path": "197", + "port": "198", + "host": "199", + "scheme": "蚛隖\u003cǶĬ4y£軶ǃ*ʙ嫙\u0026蒒5靇C'", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "200", + "value": "201" } ] }, "tcpSocket": { - "port": 559781916, - "host": "194" + "port": 2126876305, + "host": "202" } }, "preStop": { "exec": { "command": [ - "195" + "203" ] }, "httpGet": { - "path": "196", - "port": 1150375229, - "host": "197", - "scheme": "QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖\u003cǶ", + "path": "204", + "port": "205", + "host": "206", + "scheme": "Ŵ廷s{Ⱦdz@", "httpHeaders": [ { - "name": "198", - "value": "199" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": -1696471293, - "host": "200" + "port": 406308963, + "host": "209" } } }, - "terminationMessagePath": "201", - "terminationMessagePolicy": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇", - "imagePullPolicy": "Ŵ廷s{Ⱦdz@", + "terminationMessagePath": "210", + "terminationMessagePolicy": "ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0", + "imagePullPolicy": "ŤǢʭ嵔棂p儼Ƿ裚瓶", "securityContext": { "capabilities": { "add": [ - "ʋŀ樺ȃv渟7¤7d" + "+j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn" ], "drop": [ - "ƯĖ漘Z剚敍0)鈼¬麄p呝T" + "1ſ盷褎weLJèux榜VƋZ1Ůđ眊" ] }, "privileged": true, "seLinuxOptions": { - "user": "202", - "role": "203", - "type": "204", - "level": "205" + "user": "211", + "role": "212", + "type": "213", + "level": "214" }, "windowsOptions": { - "gmsaCredentialSpecName": "206", - "gmsaCredentialSpec": "207", - "runAsUserName": "208" + "gmsaCredentialSpecName": "215", + "gmsaCredentialSpec": "216", + "runAsUserName": "217" }, - "runAsUser": 4181787587415673530, - "runAsGroup": 825262458636305509, + "runAsUser": 1563703589270296759, + "runAsGroup": 6506922239346928579, "runAsNonRoot": true, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": true, - "procMount": "瓧嫭塓烀罁胾^拜" + "procMount": "fǣ萭旿@" }, "stdin": true, - "stdinOnce": true + "stdinOnce": true, + "tty": true } ], "containers": [ { - "name": "209", - "image": "210", + "name": "218", + "image": "219", "command": [ - "211" + "220" ], "args": [ - "212" + "221" ], - "workingDir": "213", + "workingDir": "222", "ports": [ { - "name": "214", - "hostPort": 1385030458, - "containerPort": 427196286, - "protocol": "o/樝fw[Řż丩Ž", - "hostIP": "215" + "name": "223", + "hostPort": 1584001904, + "containerPort": -839281354, + "protocol": "5姣\u003e懔%熷谟þ蛯ɰ荶ljʁ", + "hostIP": "224" } ], "envFrom": [ { - "prefix": "216", + "prefix": "225", "configMapRef": { - "name": "217", + "name": "226", "optional": false }, "secretRef": { - "name": "218", - "optional": true + "name": "227", + "optional": false } } ], "env": [ { - "name": "219", - "value": "220", + "name": "228", + "value": "229", "valueFrom": { "fieldRef": { - "apiVersion": "221", - "fieldPath": "222" + "apiVersion": "230", + "fieldPath": "231" }, "resourceFieldRef": { - "containerName": "223", - "resource": "224", - "divisor": "932" + "containerName": "232", + "resource": "233", + "divisor": "357" }, "configMapKeyRef": { - "name": "225", - "key": "226", - "optional": false + "name": "234", + "key": "235", + "optional": true }, "secretKeyRef": { - "name": "227", - "key": "228", + "name": "236", + "key": "237", "optional": true } } @@ -653,67 +683,38 @@ ], "resources": { "limits": { - "9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę": "638" + "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0": "175" }, "requests": { - "ǂ\u003e5姣\u003e懔%熷": "440" + "ɺ皚|懥ƖN粕擓ƖHV": "962" } }, "volumeMounts": [ { - "name": "229", - "readOnly": true, - "mountPath": "230", - "subPath": "231", - "mountPropagation": "奺Ȋ礶惇¸t颟.鵫ǚ", - "subPathExpr": "232" + "name": "238", + "mountPath": "239", + "subPath": "240", + "mountPropagation": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ", + "subPathExpr": "241" } ], "volumeDevices": [ { - "name": "233", - "devicePath": "234" + "name": "242", + "devicePath": "243" } ], "livenessProbe": { "exec": { "command": [ - "235" + "244" ] }, "httpGet": { - "path": "236", - "port": "237", - "host": "238", - "scheme": "Ȥ藠3.", - "httpHeaders": [ - { - "name": "239", - "value": "240" - } - ] - }, - "tcpSocket": { - "port": "241", - "host": "242" - }, - "initialDelaySeconds": -1389418722, - "timeoutSeconds": 851018015, - "periodSeconds": 596942561, - "successThreshold": -1880980172, - "failureThreshold": -161485752 - }, - "readinessProbe": { - "exec": { - "command": [ - "243" - ] - }, - "httpGet": { - "path": "244", - "port": "245", + "path": "245", + "port": -393291312, "host": "246", - "scheme": "«丯Ƙ枛牐ɺ皚", + "scheme": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?", "httpHeaders": [ { "name": "247", @@ -722,152 +723,207 @@ ] }, "tcpSocket": { - "port": -1934111455, - "host": "249" + "port": "249", + "host": "250" }, - "initialDelaySeconds": 766864314, - "timeoutSeconds": 1146016612, - "periodSeconds": 1495880465, - "successThreshold": -1032967081, - "failureThreshold": 59664438 + "initialDelaySeconds": 627713162, + "timeoutSeconds": 1255312175, + "periodSeconds": -1740959124, + "successThreshold": 158280212, + "failureThreshold": -361442565 + }, + "readinessProbe": { + "exec": { + "command": [ + "251" + ] + }, + "httpGet": { + "path": "252", + "port": -2013568185, + "host": "253", + "scheme": "#yV'WKw(ğ儴Ůĺ}", + "httpHeaders": [ + { + "name": "254", + "value": "255" + } + ] + }, + "tcpSocket": { + "port": -20130017, + "host": "256" + }, + "initialDelaySeconds": -1244623134, + "timeoutSeconds": -1334110502, + "periodSeconds": -398297599, + "successThreshold": 873056500, + "failureThreshold": -36782737 + }, + "startupProbe": { + "exec": { + "command": [ + "257" + ] + }, + "httpGet": { + "path": "258", + "port": "259", + "host": "260", + "scheme": "Qg鄠[", + "httpHeaders": [ + { + "name": "261", + "value": "262" + } + ] + }, + "tcpSocket": { + "port": -241238495, + "host": "263" + }, + "initialDelaySeconds": -1556231754, + "timeoutSeconds": 461585849, + "periodSeconds": -321709789, + "successThreshold": -1463645123, + "failureThreshold": -1011390276 }, "lifecycle": { "postStart": { "exec": { "command": [ - "250" + "264" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "'", + "path": "265", + "port": "266", + "host": "267", + "scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "268", + "value": "269" } ] }, "tcpSocket": { - "port": -801430937, - "host": "256" + "port": "270", + "host": "271" } }, "preStop": { "exec": { "command": [ - "257" + "272" ] }, "httpGet": { - "path": "258", - "port": 1810980158, - "host": "259", - "scheme": "_ƮA攤/ɸɎ R§耶FfBl", + "path": "273", + "port": -1161649101, + "host": "274", + "scheme": "嚧ʣq埄", "httpHeaders": [ { - "name": "260", - "value": "261" + "name": "275", + "value": "276" } ] }, "tcpSocket": { - "port": 1074486306, - "host": "262" + "port": "277", + "host": "278" } } }, - "terminationMessagePath": "263", - "terminationMessagePolicy": "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ", - "imagePullPolicy": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "terminationMessagePath": "279", + "terminationMessagePolicy": "ʁ岼昕ĬÇ", + "imagePullPolicy": "T 苧yñKJɐ扵G", "securityContext": { "capabilities": { "add": [ - "勅跦Opwǩ曬逴褜1Ø" + "fʀļ腩墺Ò媁荭gw忊" ], "drop": [ - "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]" + "E剒蔞" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "264", - "role": "265", - "type": "266", - "level": "267" + "user": "280", + "role": "281", + "type": "282", + "level": "283" }, "windowsOptions": { - "gmsaCredentialSpecName": "268", - "gmsaCredentialSpec": "269", - "runAsUserName": "270" + "gmsaCredentialSpecName": "284", + "gmsaCredentialSpec": "285", + "runAsUserName": "286" }, - "runAsUser": -6470941481344047265, - "runAsGroup": 1373384864388370080, - "runAsNonRoot": false, + "runAsUser": -6177393256425700216, + "runAsGroup": 2001337664780390084, + "runAsNonRoot": true, "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "W:ĸ輦唊#v" + "allowPrivilegeEscalation": false, + "procMount": "Ȩ\u003c6鄰簳°Ļǟi\u0026" }, - "tty": true + "stdin": true } ], "ephemeralContainers": [ { - "name": "271", - "image": "272", + "name": "287", + "image": "288", "command": [ - "273" + "289" ], "args": [ - "274" + "290" ], - "workingDir": "275", + "workingDir": "291", "ports": [ { - "name": "276", - "hostPort": 2058122084, - "containerPort": -379385405, - "protocol": "#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f", - "hostIP": "277" + "name": "292", + "hostPort": 1313273370, + "containerPort": -1296830577, + "hostIP": "293" } ], "envFrom": [ { - "prefix": "278", + "prefix": "294", "configMapRef": { - "name": "279", + "name": "295", "optional": true }, "secretRef": { - "name": "280", + "name": "296", "optional": false } } ], "env": [ { - "name": "281", - "value": "282", + "name": "297", + "value": "298", "valueFrom": { "fieldRef": { - "apiVersion": "283", - "fieldPath": "284" + "apiVersion": "299", + "fieldPath": "300" }, "resourceFieldRef": { - "containerName": "285", - "resource": "286", - "divisor": "355" + "containerName": "301", + "resource": "302", + "divisor": "3" }, "configMapKeyRef": { - "name": "287", - "key": "288", - "optional": false + "name": "303", + "key": "304", + "optional": true }, "secretKeyRef": { - "name": "289", - "key": "290", + "name": "305", + "key": "306", "optional": true } } @@ -875,214 +931,242 @@ ], "resources": { "limits": { - "|E剒蔞|表徶đ寳议Ƭƶ氩": "337" + "淳4揻-$ɽ丟×x锏ɟ": "178" }, "requests": { - "": "124" + "Ö闊 鰔澝qV": "752" } }, "volumeMounts": [ { - "name": "291", - "mountPath": "292", - "subPath": "293", - "mountPropagation": "簳°Ļǟi\u0026皥贸", - "subPathExpr": "294" + "name": "307", + "readOnly": true, + "mountPath": "308", + "subPath": "309", + "mountPropagation": "/»頸+SÄ蚃ɣľ)酊龨Î", + "subPathExpr": "310" } ], "volumeDevices": [ { - "name": "295", - "devicePath": "296" + "name": "311", + "devicePath": "312" } ], "livenessProbe": { "exec": { "command": [ - "297" + "313" ] }, "httpGet": { - "path": "298", - "port": "299", - "host": "300", - "scheme": "现葢ŵ橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉", + "path": "314", + "port": "315", + "host": "316", + "scheme": "冓鍓贯", "httpHeaders": [ { - "name": "301", - "value": "302" + "name": "317", + "value": "318" } ] }, "tcpSocket": { - "port": "303", - "host": "304" + "port": "319", + "host": "320" }, - "initialDelaySeconds": 2066735093, - "timeoutSeconds": -190183379, - "periodSeconds": -940334911, - "successThreshold": -341287812, - "failureThreshold": 2030115750 + "initialDelaySeconds": 1290950685, + "timeoutSeconds": 12533543, + "periodSeconds": 1058960779, + "successThreshold": -2133441986, + "failureThreshold": 472742933 }, "readinessProbe": { "exec": { "command": [ - "305" + "321" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ", + "path": "322", + "port": 1332783160, + "host": "323", + "scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": 458427807, - "host": "311" + "port": "326", + "host": "327" }, - "initialDelaySeconds": -1971421078, - "timeoutSeconds": 1905181464, - "periodSeconds": -1730959016, - "successThreshold": 1272940694, - "failureThreshold": -385597677 + "initialDelaySeconds": -300247800, + "timeoutSeconds": 386804041, + "periodSeconds": -126958936, + "successThreshold": 186945072, + "failureThreshold": 620822482 + }, + "startupProbe": { + "exec": { + "command": [ + "328" + ] + }, + "httpGet": { + "path": "329", + "port": "330", + "host": "331", + "scheme": "鍏H鯂²", + "httpHeaders": [ + { + "name": "332", + "value": "333" + } + ] + }, + "tcpSocket": { + "port": -1187301925, + "host": "334" + }, + "initialDelaySeconds": -402384013, + "timeoutSeconds": -181601395, + "periodSeconds": -617381112, + "successThreshold": 1851229369, + "failureThreshold": -560238386 }, "lifecycle": { "postStart": { "exec": { "command": [ - "312" + "335" ] }, "httpGet": { - "path": "313", - "port": "314", - "host": "315", - "scheme": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC", + "path": "336", + "port": "337", + "host": "338", + "scheme": "C\"6x$1s", "httpHeaders": [ { - "name": "316", - "value": "317" + "name": "339", + "value": "340" } ] }, "tcpSocket": { - "port": "318", - "host": "319" + "port": "341", + "host": "342" } }, "preStop": { "exec": { "command": [ - "320" + "343" ] }, "httpGet": { - "path": "321", - "port": "322", - "host": "323", - "scheme": "鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²", + "path": "344", + "port": -518160270, + "host": "345", + "scheme": "ɔ幩še", "httpHeaders": [ { - "name": "324", - "value": "325" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": -1187301925, - "host": "326" + "port": 1956567721, + "host": "348" } } }, - "terminationMessagePath": "327", - "terminationMessagePolicy": "Őnj汰8ŕ", - "imagePullPolicy": "邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩", + "terminationMessagePath": "349", + "terminationMessagePolicy": "ȤƏ埮pɵ", "securityContext": { "capabilities": { "add": [ - "SvEȤƏ埮p" + "|ʐşƧ諔迮ƙIJ嘢" ], "drop": [ - "{WOŭW灬pȭCV擭銆jʒǚ鍰" + "ʗN" ] }, "privileged": false, "seLinuxOptions": { - "user": "328", - "role": "329", - "type": "330", - "level": "331" + "user": "350", + "role": "351", + "type": "352", + "level": "353" }, "windowsOptions": { - "gmsaCredentialSpecName": "332", - "gmsaCredentialSpec": "333", - "runAsUserName": "334" + "gmsaCredentialSpecName": "354", + "gmsaCredentialSpec": "355", + "runAsUserName": "356" }, - "runAsUser": 6726836758549163621, - "runAsGroup": 741362943076737213, + "runAsUser": -6048969174364431391, + "runAsGroup": 6726836758549163621, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "DµņP)DŽ髐njʉBn(fǂǢ曣ŋ" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "" }, "stdin": true, "stdinOnce": true, "tty": true, - "targetContainerName": "335" + "targetContainerName": "357" } ], - "restartPolicy": "åe躒訙", - "terminationGracePeriodSeconds": 6942343986058351509, - "activeDeadlineSeconds": 9212087462729867542, - "dnsPolicy": "娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ", + "restartPolicy": "ɭɪǹ0衷,", + "terminationGracePeriodSeconds": -3039830979334099524, + "activeDeadlineSeconds": 7270263763744228913, + "dnsPolicy": "n(fǂǢ曣ŋayåe躒訙Ǫ", "nodeSelector": { - "336": "337" + "358": "359" }, - "serviceAccountName": "338", - "serviceAccount": "339", - "automountServiceAccountToken": false, - "nodeName": "340", - "hostPID": true, - "shareProcessNamespace": false, + "serviceAccountName": "360", + "serviceAccount": "361", + "automountServiceAccountToken": true, + "nodeName": "362", + "hostNetwork": true, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "341", - "role": "342", - "type": "343", - "level": "344" + "user": "363", + "role": "364", + "type": "365", + "level": "366" }, "windowsOptions": { - "gmsaCredentialSpecName": "345", - "gmsaCredentialSpec": "346", - "runAsUserName": "347" + "gmsaCredentialSpecName": "367", + "gmsaCredentialSpec": "368", + "runAsUserName": "369" }, - "runAsUser": 7747616967629081728, - "runAsGroup": 2548453080315983269, + "runAsUser": -5315960194881172085, + "runAsGroup": 6386250802140824739, "runAsNonRoot": false, "supplementalGroups": [ - -1193643752264108019 + -4480129203693517072 ], - "fsGroup": -7117039988160665426, + "fsGroup": 2585323675983182372, "sysctls": [ { - "name": "348", - "value": "349" + "name": "370", + "value": "371" } ] }, "imagePullSecrets": [ { - "name": "350" + "name": "372" } ], - "hostname": "351", - "subdomain": "352", + "hostname": "373", + "subdomain": "374", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1090,19 +1174,19 @@ { "matchExpressions": [ { - "key": "353", - "operator": "", + "key": "375", + "operator": "Ã茓pȓɻ", "values": [ - "354" + "376" ] } ], "matchFields": [ { - "key": "355", - "operator": "ƽ眝{æ盪泙", + "key": "377", + "operator": "", "values": [ - "356" + "378" ] } ] @@ -1111,23 +1195,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 646133945, + "weight": -767058113, "preference": { "matchExpressions": [ { - "key": "357", - "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", + "key": "379", + "operator": "Ǹ|蕎'佉賞ǧĒz", "values": [ - "358" + "380" ] } ], "matchFields": [ { - "key": "359", - "operator": "ʨIk(dŊiɢzĮ蛋I滞", + "key": "381", + "operator": "ùfŭƽ", "values": [ - "360" + "382" ] } ] @@ -1140,43 +1224,40 @@ { "labelSelector": { "matchLabels": { - "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" + "h-up52--sjo7799-skj5--9/R_rm": "CR.s--f.-f.-zv._._.o" }, "matchExpressions": [ { - "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", - "operator": "Exists" + "key": "K_A-_9_Z_C..7o_x3..-.8-Jp-94", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "367" + "389" ], - "topologyKey": "368" + "topologyKey": "390" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -855547676, + "weight": 801902541, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" + "bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I": "x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4" }, "matchExpressions": [ { - "key": "8.--w0_1V7", - "operator": "In", - "values": [ - "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "375" + "397" ], - "topologyKey": "376" + "topologyKey": "398" } } ] @@ -1186,102 +1267,105 @@ { "labelSelector": { "matchLabels": { - "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "key": "QZ9p_6.C.e", "operator": "DoesNotExist" } ] }, "namespaces": [ - "383" + "405" ], - "topologyKey": "384" + "topologyKey": "406" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 808399187, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", - "operator": "DoesNotExist" + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", + "operator": "NotIn", + "values": [ + "txb__-ex-_1_-ODgC_1-_V" + ] } ] }, "namespaces": [ - "391" + "413" ], - "topologyKey": "392" + "topologyKey": "414" } } ] } }, - "schedulerName": "393", + "schedulerName": "415", "tolerations": [ { - "key": "394", - "operator": "ƹ|", - "value": "395", - "effect": "料ȭzV镜籬ƽ", - "tolerationSeconds": 935587338391120947 + "key": "416", + "operator": "堺ʣ", + "value": "417", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "396", + "ip": "418", "hostnames": [ - "397" + "419" ] } ], - "priorityClassName": "398", - "priority": 1690570439, + "priorityClassName": "420", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "399" + "421" ], "searches": [ - "400" + "422" ], "options": [ { - "name": "401", - "value": "402" + "name": "423", + "value": "424" } ] }, "readinessGates": [ { - "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "403", - "enableServiceLinks": true, - "preemptionPolicy": "eáNRNJ丧鴻Ŀ", + "runtimeClassName": "425", + "enableServiceLinks": false, + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -137402083, - "topologyKey": "404", - "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", + "maxSkew": -150478704, + "topologyKey": "426", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "key": "qW", + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "operator": "In", "values": [ "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" @@ -1318,8 +1402,8 @@ "type": "Ƅ抄3昞财Î嘝zʄ", "status": "\u003ec緍k¢茤Ƣǟ½灶du汎mō6µɑ", "lastTransitionTime": "2196-03-13T21:02:11Z", - "reason": "411", - "message": "412" + "reason": "433", + "message": "434" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb index 0f01ea76542..2edc219ab3e 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb differ diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml index f4250224725..0b30647cb35 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml @@ -71,409 +71,447 @@ spec: selfLink: "28" uid: TʡȂŏ{sǡƟ spec: - activeDeadlineSeconds: 9212087462729867542 + activeDeadlineSeconds: 7270263763744228913 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "357" - operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' + - key: "379" + operator: Ǹ|蕎'佉賞ǧĒz values: - - "358" + - "380" matchFields: - - key: "359" - operator: ʨIk(dŊiɢzĮ蛋I滞 + - key: "381" + operator: ùfŭƽ values: - - "360" - weight: 646133945 + - "382" + weight: -767058113 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "353" + - key: "375" + operator: Ã茓pȓɻ + values: + - "376" + matchFields: + - key: "377" operator: "" values: - - "354" - matchFields: - - key: "355" - operator: ƽ眝{æ盪泙 - values: - - "356" + - "378" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8.--w0_1V7 - operator: In - values: - - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 + bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I: x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4 namespaces: - - "375" - topologyKey: "376" - weight: -855547676 + - "397" + topologyKey: "398" + weight: 801902541 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd - operator: Exists + - key: K_A-_9_Z_C..7o_x3..-.8-Jp-94 + operator: DoesNotExist matchLabels: - 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 + h-up52--sjo7799-skj5--9/R_rm: CR.s--f.-f.-zv._._.o namespaces: - - "367" - topologyKey: "368" + - "389" + topologyKey: "390" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf - operator: DoesNotExist + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D + operator: NotIn + values: + - txb__-ex-_1_-ODgC_1-_V matchLabels: - 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "391" - topologyKey: "392" - weight: 808399187 + - "413" + topologyKey: "414" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + - key: QZ9p_6.C.e operator: DoesNotExist matchLabels: - 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "383" - topologyKey: "384" - automountServiceAccountToken: false + - "405" + topologyKey: "406" + automountServiceAccountToken: true containers: - args: - - "212" + - "221" command: - - "211" + - "220" env: - - name: "219" - value: "220" + - name: "228" + value: "229" valueFrom: configMapKeyRef: - key: "226" - name: "225" - optional: false + key: "235" + name: "234" + optional: true fieldRef: - apiVersion: "221" - fieldPath: "222" + apiVersion: "230" + fieldPath: "231" resourceFieldRef: - containerName: "223" - divisor: "932" - resource: "224" + containerName: "232" + divisor: "357" + resource: "233" secretKeyRef: - key: "228" - name: "227" + key: "237" + name: "236" optional: true envFrom: - configMapRef: - name: "217" + name: "226" optional: false - prefix: "216" + prefix: "225" secretRef: - name: "218" - optional: true - image: "210" - imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 + name: "227" + optional: false + image: "219" + imagePullPolicy: T 苧yñKJɐ扵G lifecycle: postStart: exec: command: - - "250" + - "264" httpGet: - host: "253" + host: "267" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: '''' + - name: "268" + value: "269" + path: "265" + port: "266" + scheme: ']佱¿>犵殇ŕ-Ɂ圯W' tcpSocket: - host: "256" - port: -801430937 + host: "271" + port: "270" preStop: exec: command: - - "257" + - "272" httpGet: - host: "259" + host: "274" httpHeaders: - - name: "260" - value: "261" - path: "258" - port: 1810980158 - scheme: _ƮA攤/ɸɎ R§耶FfBl + - name: "275" + value: "276" + path: "273" + port: -1161649101 + scheme: 嚧ʣq埄 tcpSocket: - host: "262" - port: 1074486306 + host: "278" + port: "277" livenessProbe: exec: command: - - "235" - failureThreshold: -161485752 - httpGet: - host: "238" - httpHeaders: - - name: "239" - value: "240" - path: "236" - port: "237" - scheme: Ȥ藠3. - initialDelaySeconds: -1389418722 - periodSeconds: 596942561 - successThreshold: -1880980172 - tcpSocket: - host: "242" - port: "241" - timeoutSeconds: 851018015 - name: "209" - ports: - - containerPort: 427196286 - hostIP: "215" - hostPort: 1385030458 - name: "214" - protocol: o/樝fw[Řż丩Ž - readinessProbe: - exec: - command: - - "243" - failureThreshold: 59664438 + - "244" + failureThreshold: -361442565 httpGet: host: "246" httpHeaders: - name: "247" value: "248" - path: "244" - port: "245" - scheme: «丯Ƙ枛牐ɺ皚 - initialDelaySeconds: 766864314 - periodSeconds: 1495880465 - successThreshold: -1032967081 + path: "245" + port: -393291312 + scheme: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? + initialDelaySeconds: 627713162 + periodSeconds: -1740959124 + successThreshold: 158280212 tcpSocket: - host: "249" - port: -1934111455 - timeoutSeconds: 1146016612 + host: "250" + port: "249" + timeoutSeconds: 1255312175 + name: "218" + ports: + - containerPort: -839281354 + hostIP: "224" + hostPort: 1584001904 + name: "223" + protocol: 5姣>懔%熷谟þ蛯ɰ荶ljʁ + readinessProbe: + exec: + command: + - "251" + failureThreshold: -36782737 + httpGet: + host: "253" + httpHeaders: + - name: "254" + value: "255" + path: "252" + port: -2013568185 + scheme: '#yV''WKw(ğ儴Ůĺ}' + initialDelaySeconds: -1244623134 + periodSeconds: -398297599 + successThreshold: 873056500 + tcpSocket: + host: "256" + port: -20130017 + timeoutSeconds: -1334110502 resources: limits: - 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" + 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0: "175" requests: - ǂ>5姣>懔%熷: "440" + ɺ皚|懥ƖN粕擓ƖHV: "962" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - 勅跦Opwǩ曬逴褜1Ø + - fʀļ腩墺Ò媁荭gw忊 drop: - - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] - privileged: true - procMount: W:ĸ輦唊#v + - E剒蔞 + privileged: false + procMount: Ȩ<6鄰簳°Ļǟi& readOnlyRootFilesystem: true - runAsGroup: 1373384864388370080 - runAsNonRoot: false - runAsUser: -6470941481344047265 + runAsGroup: 2001337664780390084 + runAsNonRoot: true + runAsUser: -6177393256425700216 seLinuxOptions: - level: "267" - role: "265" - type: "266" - user: "264" + level: "283" + role: "281" + type: "282" + user: "280" windowsOptions: - gmsaCredentialSpec: "269" - gmsaCredentialSpecName: "268" - runAsUserName: "270" - terminationMessagePath: "263" - terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ - tty: true + gmsaCredentialSpec: "285" + gmsaCredentialSpecName: "284" + runAsUserName: "286" + startupProbe: + exec: + command: + - "257" + failureThreshold: -1011390276 + httpGet: + host: "260" + httpHeaders: + - name: "261" + value: "262" + path: "258" + port: "259" + scheme: Qg鄠[ + initialDelaySeconds: -1556231754 + periodSeconds: -321709789 + successThreshold: -1463645123 + tcpSocket: + host: "263" + port: -241238495 + timeoutSeconds: 461585849 + stdin: true + terminationMessagePath: "279" + terminationMessagePolicy: ʁ岼昕ĬÇ volumeDevices: - - devicePath: "234" - name: "233" + - devicePath: "243" + name: "242" volumeMounts: - - mountPath: "230" - mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ - name: "229" - readOnly: true - subPath: "231" - subPathExpr: "232" - workingDir: "213" + - mountPath: "239" + mountPropagation: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' + name: "238" + subPath: "240" + subPathExpr: "241" + workingDir: "222" dnsConfig: nameservers: - - "399" + - "421" options: - - name: "401" - value: "402" + - name: "423" + value: "424" searches: - - "400" - dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ - enableServiceLinks: true + - "422" + dnsPolicy: n(fǂǢ曣ŋayåe躒訙Ǫ + enableServiceLinks: false ephemeralContainers: - args: - - "274" + - "290" command: - - "273" + - "289" env: - - name: "281" - value: "282" + - name: "297" + value: "298" valueFrom: configMapKeyRef: - key: "288" - name: "287" - optional: false + key: "304" + name: "303" + optional: true fieldRef: - apiVersion: "283" - fieldPath: "284" + apiVersion: "299" + fieldPath: "300" resourceFieldRef: - containerName: "285" - divisor: "355" - resource: "286" + containerName: "301" + divisor: "3" + resource: "302" secretKeyRef: - key: "290" - name: "289" + key: "306" + name: "305" optional: true envFrom: - configMapRef: - name: "279" + name: "295" optional: true - prefix: "278" + prefix: "294" secretRef: - name: "280" + name: "296" optional: false - image: "272" - imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩 + image: "288" lifecycle: postStart: exec: command: - - "312" + - "335" httpGet: - host: "315" + host: "338" httpHeaders: - - name: "316" - value: "317" - path: "313" - port: "314" - scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC + - name: "339" + value: "340" + path: "336" + port: "337" + scheme: C"6x$1s tcpSocket: - host: "319" - port: "318" + host: "342" + port: "341" preStop: exec: command: - - "320" + - "343" httpGet: - host: "323" + host: "345" httpHeaders: - - name: "324" - value: "325" - path: "321" - port: "322" - scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² + - name: "346" + value: "347" + path: "344" + port: -518160270 + scheme: ɔ幩še tcpSocket: - host: "326" - port: -1187301925 + host: "348" + port: 1956567721 livenessProbe: exec: command: - - "297" - failureThreshold: 2030115750 + - "313" + failureThreshold: 472742933 httpGet: - host: "300" + host: "316" httpHeaders: - - name: "301" - value: "302" - path: "298" - port: "299" - scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 - initialDelaySeconds: 2066735093 - periodSeconds: -940334911 - successThreshold: -341287812 + - name: "317" + value: "318" + path: "314" + port: "315" + scheme: 冓鍓贯 + initialDelaySeconds: 1290950685 + periodSeconds: 1058960779 + successThreshold: -2133441986 tcpSocket: - host: "304" - port: "303" - timeoutSeconds: -190183379 - name: "271" + host: "320" + port: "319" + timeoutSeconds: 12533543 + name: "287" ports: - - containerPort: -379385405 - hostIP: "277" - hostPort: 2058122084 - name: "276" - protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f' + - containerPort: -1296830577 + hostIP: "293" + hostPort: 1313273370 + name: "292" readinessProbe: exec: command: - - "305" - failureThreshold: -385597677 + - "321" + failureThreshold: 620822482 httpGet: - host: "308" + host: "323" httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ - initialDelaySeconds: -1971421078 - periodSeconds: -1730959016 - successThreshold: 1272940694 + - name: "324" + value: "325" + path: "322" + port: 1332783160 + scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; + initialDelaySeconds: -300247800 + periodSeconds: -126958936 + successThreshold: 186945072 tcpSocket: - host: "311" - port: 458427807 - timeoutSeconds: 1905181464 + host: "327" + port: "326" + timeoutSeconds: 386804041 resources: limits: - '|E剒蔞|表徶đ寳议Ƭƶ氩': "337" + 淳4揻-$ɽ丟×x锏ɟ: "178" requests: - "": "124" + Ö闊 鰔澝qV: "752" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - SvEȤƏ埮p + - '|ʐşƧ諔迮ƙIJ嘢' drop: - - '{WOŭW灬pȭCV擭銆jʒǚ鍰' + - ʗN privileged: false - procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ - readOnlyRootFilesystem: false - runAsGroup: 741362943076737213 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: 6726836758549163621 runAsNonRoot: false - runAsUser: 6726836758549163621 + runAsUser: -6048969174364431391 seLinuxOptions: - level: "331" - role: "329" - type: "330" - user: "328" + level: "353" + role: "351" + type: "352" + user: "350" windowsOptions: - gmsaCredentialSpec: "333" - gmsaCredentialSpecName: "332" - runAsUserName: "334" + gmsaCredentialSpec: "355" + gmsaCredentialSpecName: "354" + runAsUserName: "356" + startupProbe: + exec: + command: + - "328" + failureThreshold: -560238386 + httpGet: + host: "331" + httpHeaders: + - name: "332" + value: "333" + path: "329" + port: "330" + scheme: 鍏H鯂² + initialDelaySeconds: -402384013 + periodSeconds: -617381112 + successThreshold: 1851229369 + tcpSocket: + host: "334" + port: -1187301925 + timeoutSeconds: -181601395 stdin: true stdinOnce: true - targetContainerName: "335" - terminationMessagePath: "327" - terminationMessagePolicy: Őnj汰8ŕ + targetContainerName: "357" + terminationMessagePath: "349" + terminationMessagePolicy: ȤƏ埮pɵ tty: true volumeDevices: - - devicePath: "296" - name: "295" + - devicePath: "312" + name: "311" volumeMounts: - - mountPath: "292" - mountPropagation: 簳°Ļǟi&皥贸 - name: "291" - subPath: "293" - subPathExpr: "294" - workingDir: "275" + - mountPath: "308" + mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î + name: "307" + readOnly: true + subPath: "309" + subPathExpr: "310" + workingDir: "291" hostAliases: - hostnames: - - "397" - ip: "396" - hostPID: true - hostname: "351" + - "419" + ip: "418" + hostNetwork: true + hostname: "373" imagePullSecrets: - - name: "350" + - name: "372" initContainers: - args: - "150" @@ -507,37 +545,38 @@ spec: name: "156" optional: false image: "148" - imagePullPolicy: Ŵ廷s{Ⱦdz@ + imagePullPolicy: ŤǢʭ嵔棂p儼Ƿ裚瓶 lifecycle: postStart: exec: command: - - "188" + - "196" httpGet: - host: "191" + host: "199" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" + - name: "200" + value: "201" + path: "197" + port: "198" + scheme: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C' tcpSocket: - host: "194" - port: 559781916 + host: "202" + port: 2126876305 preStop: exec: command: - - "195" + - "203" httpGet: - host: "197" + host: "206" httpHeaders: - - name: "198" - value: "199" - path: "196" - port: 1150375229 - scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: Ŵ廷s{Ⱦdz@ tcpSocket: - host: "200" - port: -1696471293 + host: "209" + port: 406308963 livenessProbe: exec: command: @@ -593,28 +632,49 @@ spec: allowPrivilegeEscalation: true capabilities: add: - - ʋŀ樺ȃv渟7¤7d + - +j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn drop: - - ƯĖ漘Z剚敍0)鈼¬麄p呝T + - 1ſ盷褎weLJèux榜VƋZ1Ůđ眊 privileged: true - procMount: 瓧嫭塓烀罁胾^拜 + procMount: fǣ萭旿@ readOnlyRootFilesystem: true - runAsGroup: 825262458636305509 + runAsGroup: 6506922239346928579 runAsNonRoot: true - runAsUser: 4181787587415673530 + runAsUser: 1563703589270296759 seLinuxOptions: - level: "205" - role: "203" - type: "204" - user: "202" + level: "214" + role: "212" + type: "213" + user: "211" windowsOptions: - gmsaCredentialSpec: "207" - gmsaCredentialSpecName: "206" - runAsUserName: "208" + gmsaCredentialSpec: "216" + gmsaCredentialSpecName: "215" + runAsUserName: "217" + startupProbe: + exec: + command: + - "188" + failureThreshold: 905846572 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: k_瀹鞎sn芞QÄȻ + initialDelaySeconds: 364013971 + periodSeconds: -1790124395 + successThreshold: 1094670193 + tcpSocket: + host: "195" + port: "194" + timeoutSeconds: 1596422492 stdin: true stdinOnce: true - terminationMessagePath: "201" - terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 + terminationMessagePath: "210" + terminationMessagePolicy: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -626,61 +686,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "340" + nodeName: "362" nodeSelector: - "336": "337" + "358": "359" overhead: - 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" - preemptionPolicy: eáNRNJ丧鴻Ŀ - priority: 1690570439 - priorityClassName: "398" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "420" readinessGates: - - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 - restartPolicy: åe躒訙 - runtimeClassName: "403" - schedulerName: "393" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɭɪǹ0衷, + runtimeClassName: "425" + schedulerName: "415" securityContext: - fsGroup: -7117039988160665426 - runAsGroup: 2548453080315983269 + fsGroup: 2585323675983182372 + runAsGroup: 6386250802140824739 runAsNonRoot: false - runAsUser: 7747616967629081728 + runAsUser: -5315960194881172085 seLinuxOptions: - level: "344" - role: "342" - type: "343" - user: "341" + level: "366" + role: "364" + type: "365" + user: "363" supplementalGroups: - - -1193643752264108019 + - -4480129203693517072 sysctls: - - name: "348" - value: "349" + - name: "370" + value: "371" windowsOptions: - gmsaCredentialSpec: "346" - gmsaCredentialSpecName: "345" - runAsUserName: "347" - serviceAccount: "339" - serviceAccountName: "338" - shareProcessNamespace: false - subdomain: "352" - terminationGracePeriodSeconds: 6942343986058351509 + gmsaCredentialSpec: "368" + gmsaCredentialSpecName: "367" + runAsUserName: "369" + serviceAccount: "361" + serviceAccountName: "360" + shareProcessNamespace: true + subdomain: "374" + terminationGracePeriodSeconds: -3039830979334099524 tolerations: - - effect: 料ȭzV镜籬ƽ - key: "394" - operator: ƹ| - tolerationSeconds: 935587338391120947 - value: "395" + - effect: ŽɣB矗E¸乾 + key: "416" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "417" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: qW + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W operator: In values: - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X - maxSkew: -137402083 - topologyKey: "404" - whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "426" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "47" @@ -888,8 +948,8 @@ status: collisionCount: 2063260600 conditions: - lastTransitionTime: "2196-03-13T21:02:11Z" - message: "412" - reason: "411" + message: "434" + reason: "433" status: '>c緍k¢茤Ƣǟ½灶du汎mō6µɑ' type: Ƅ抄3昞财Î嘝zʄ currentNumberScheduled: -1707056814 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 f0e8b7bfb74..abede0dcd95 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 @@ -508,579 +508,661 @@ "successThreshold": -2079582559, "failureThreshold": -1167888910 }, + "startupProbe": { + "exec": { + "command": [ + "186" + ] + }, + "httpGet": { + "path": "187", + "port": 804417065, + "host": "188", + "scheme": "Ŵ廷s{Ⱦdz@", + "httpHeaders": [ + { + "name": "189", + "value": "190" + } + ] + }, + "tcpSocket": { + "port": 406308963, + "host": "191" + }, + "initialDelaySeconds": 632397602, + "timeoutSeconds": 2026784878, + "periodSeconds": -730174220, + "successThreshold": 433084615, + "failureThreshold": 208045354 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "186" + "192" ] }, "httpGet": { - "path": "187", - "port": "188", - "host": "189", - "scheme": "£ȹ嫰ƹǔw÷nI粛E煹", + "path": "193", + "port": -2015604435, + "host": "194", + "scheme": "jƯĖ漘Z剚敍0)", "httpHeaders": [ { - "name": "190", - "value": "191" + "name": "195", + "value": "196" } ] }, "tcpSocket": { - "port": 135036402, - "host": "192" + "port": 424236719, + "host": "197" } }, "preStop": { "exec": { "command": [ - "193" + "198" ] }, "httpGet": { - "path": "194", - "port": -1188430996, - "host": "195", - "scheme": "djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪", + "path": "199", + "port": -1131820775, + "host": "200", + "scheme": "Ƿ裚瓶釆Ɗ+j忊", "httpHeaders": [ { - "name": "196", - "value": "197" + "name": "201", + "value": "202" } ] }, "tcpSocket": { - "port": "198", - "host": "199" + "port": "203", + "host": "204" } } }, - "terminationMessagePath": "200", - "terminationMessagePolicy": "ɩC", + "terminationMessagePath": "205", + "terminationMessagePolicy": "焗捏", + "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩", "securityContext": { "capabilities": { "add": [ - "ȫ焗捏ĨFħ籘Àǒɿʒ刽" + "" ], "drop": [ - "掏1ſ" + "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "201", - "role": "202", - "type": "203", - "level": "204" + "user": "206", + "role": "207", + "type": "208", + "level": "209" }, "windowsOptions": { - "gmsaCredentialSpecName": "205", - "gmsaCredentialSpec": "206", - "runAsUserName": "207" + "gmsaCredentialSpecName": "210", + "gmsaCredentialSpec": "211", + "runAsUserName": "212" }, - "runAsUser": 7739117973959656085, - "runAsGroup": 3747003978559617838, + "runAsUser": -6576869501326512452, + "runAsGroup": -8419423421380299597, "runAsNonRoot": false, "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "VƋZ1Ůđ眊ľǎɳ,ǿ飏" + "procMount": "$MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫" }, - "stdin": true, - "stdinOnce": true + "tty": true } ], "containers": [ { - "name": "208", - "image": "209", + "name": "213", + "image": "214", "command": [ - "210" + "215" ], "args": [ - "211" + "216" ], - "workingDir": "212", + "workingDir": "217", "ports": [ { - "name": "213", - "hostPort": 474119379, - "containerPort": 1923334396, - "protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", - "hostIP": "214" + "name": "218", + "hostPort": 62799871, + "containerPort": -775325416, + "protocol": "t莭琽§ć\\ ïì", + "hostIP": "219" } ], "envFrom": [ { - "prefix": "215", + "prefix": "220", "configMapRef": { - "name": "216", + "name": "221", "optional": false }, "secretRef": { - "name": "217", + "name": "222", + "optional": false + } + } + ], + "env": [ + { + "name": "223", + "value": "224", + "valueFrom": { + "fieldRef": { + "apiVersion": "225", + "fieldPath": "226" + }, + "resourceFieldRef": { + "containerName": "227", + "resource": "228", + "divisor": "595" + }, + "configMapKeyRef": { + "name": "229", + "key": "230", + "optional": true + }, + "secretKeyRef": { + "name": "231", + "key": "232", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "N粕擓ƖHVe熼": "334" + }, + "requests": { + "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶": "388" + } + }, + "volumeMounts": [ + { + "name": "233", + "readOnly": true, + "mountPath": "234", + "subPath": "235", + "mountPropagation": "癃8鸖", + "subPathExpr": "236" + } + ], + "volumeDevices": [ + { + "name": "237", + "devicePath": "238" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "239" + ] + }, + "httpGet": { + "path": "240", + "port": -1654678802, + "host": "241", + "scheme": "毋", + "httpHeaders": [ + { + "name": "242", + "value": "243" + } + ] + }, + "tcpSocket": { + "port": 391562775, + "host": "244" + }, + "initialDelaySeconds": -775511009, + "timeoutSeconds": -832805508, + "periodSeconds": -228822833, + "successThreshold": -970312425, + "failureThreshold": -1213051101 + }, + "readinessProbe": { + "exec": { + "command": [ + "245" + ] + }, + "httpGet": { + "path": "246", + "port": -1905643191, + "host": "247", + "scheme": "Ǖɳɷ9Ì崟¿瘦ɖ緕", + "httpHeaders": [ + { + "name": "248", + "value": "249" + } + ] + }, + "tcpSocket": { + "port": "250", + "host": "251" + }, + "initialDelaySeconds": 852780575, + "timeoutSeconds": -1252938503, + "periodSeconds": 893823156, + "successThreshold": -1980314709, + "failureThreshold": 571739592 + }, + "startupProbe": { + "exec": { + "command": [ + "252" + ] + }, + "httpGet": { + "path": "253", + "port": -1334110502, + "host": "254", + "scheme": "ȓ蹣ɐǛv+8Ƥ熪军", + "httpHeaders": [ + { + "name": "255", + "value": "256" + } + ] + }, + "tcpSocket": { + "port": 622267234, + "host": "257" + }, + "initialDelaySeconds": 410611837, + "timeoutSeconds": 809006670, + "periodSeconds": 972978563, + "successThreshold": 17771103, + "failureThreshold": -1008070934 + }, + "lifecycle": { + "postStart": { + "exec": { + "command": [ + "258" + ] + }, + "httpGet": { + "path": "259", + "port": "260", + "host": "261", + "httpHeaders": [ + { + "name": "262", + "value": "263" + } + ] + }, + "tcpSocket": { + "port": 1943028037, + "host": "264" + } + }, + "preStop": { + "exec": { + "command": [ + "265" + ] + }, + "httpGet": { + "path": "266", + "port": -1355476687, + "host": "267", + "scheme": "-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ", + "httpHeaders": [ + { + "name": "268", + "value": "269" + } + ] + }, + "tcpSocket": { + "port": "270", + "host": "271" + } + } + }, + "terminationMessagePath": "272", + "terminationMessagePolicy": "T 苧yñKJɐ扵G", + "imagePullPolicy": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5", + "securityContext": { + "capabilities": { + "add": [ + "E埄Ȁ朦 wƯ貾坢'" + ], + "drop": [ + "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l" + ] + }, + "privileged": false, + "seLinuxOptions": { + "user": "273", + "role": "274", + "type": "275", + "level": "276" + }, + "windowsOptions": { + "gmsaCredentialSpecName": "277", + "gmsaCredentialSpec": "278", + "runAsUserName": "279" + }, + "runAsUser": -2270595441829602368, + "runAsGroup": -2408264753085021035, + "runAsNonRoot": true, + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": true, + "procMount": "" + } + } + ], + "ephemeralContainers": [ + { + "name": "280", + "image": "281", + "command": [ + "282" + ], + "args": [ + "283" + ], + "workingDir": "284", + "ports": [ + { + "name": "285", + "hostPort": 1868683352, + "containerPort": -1137436579, + "protocol": "颶妧Ö闊", + "hostIP": "286" + } + ], + "envFrom": [ + { + "prefix": "287", + "configMapRef": { + "name": "288", + "optional": false + }, + "secretRef": { + "name": "289", "optional": true } } ], "env": [ { - "name": "218", - "value": "219", + "name": "290", + "value": "291", "valueFrom": { "fieldRef": { - "apiVersion": "220", - "fieldPath": "221" + "apiVersion": "292", + "fieldPath": "293" }, "resourceFieldRef": { - "containerName": "222", - "resource": "223", - "divisor": "771" + "containerName": "294", + "resource": "295", + "divisor": "381" }, "configMapKeyRef": { - "name": "224", - "key": "225", - "optional": false - }, - "secretKeyRef": { - "name": "226", - "key": "227", - "optional": true - } - } - } - ], - "resources": { - "limits": { - "吐": "777" - }, - "requests": { - "rʤî萨zvt莭琽§ć\\ ïì": "80" - } - }, - "volumeMounts": [ - { - "name": "228", - "readOnly": true, - "mountPath": "229", - "subPath": "230", - "mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", - "subPathExpr": "231" - } - ], - "volumeDevices": [ - { - "name": "232", - "devicePath": "233" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "234" - ] - }, - "httpGet": { - "path": "235", - "port": -1285424066, - "host": "236", - "scheme": "ni酛3ƁÀ", - "httpHeaders": [ - { - "name": "237", - "value": "238" - } - ] - }, - "tcpSocket": { - "port": "239", - "host": "240" - }, - "initialDelaySeconds": -2036074491, - "timeoutSeconds": -148216266, - "periodSeconds": 165047920, - "successThreshold": -393291312, - "failureThreshold": -93157681 - }, - "readinessProbe": { - "exec": { - "command": [ - "241" - ] - }, - "httpGet": { - "path": "242", - "port": "243", - "host": "244", - "scheme": "3!Zɾģ毋Ó6", - "httpHeaders": [ - { - "name": "245", - "value": "246" - } - ] - }, - "tcpSocket": { - "port": -832805508, - "host": "247" - }, - "initialDelaySeconds": -228822833, - "timeoutSeconds": -970312425, - "periodSeconds": -1213051101, - "successThreshold": 1451056156, - "failureThreshold": 267768240 - }, - "lifecycle": { - "postStart": { - "exec": { - "command": [ - "248" - ] - }, - "httpGet": { - "path": "249", - "port": -2013568185, - "host": "250", - "scheme": "#yV'WKw(ğ儴Ůĺ}", - "httpHeaders": [ - { - "name": "251", - "value": "252" - } - ] - }, - "tcpSocket": { - "port": -20130017, - "host": "253" - } - }, - "preStop": { - "exec": { - "command": [ - "254" - ] - }, - "httpGet": { - "path": "255", - "port": -661937776, - "host": "256", - "scheme": "ØœȠƬQg鄠[颐o", - "httpHeaders": [ - { - "name": "257", - "value": "258" - } - ] - }, - "tcpSocket": { - "port": 461585849, - "host": "259" - } - } - }, - "terminationMessagePath": "260", - "terminationMessagePolicy": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", - "imagePullPolicy": "ƙt叀碧闳ȩr嚧ʣq埄趛屡", - "securityContext": { - "capabilities": { - "add": [ - "昕Ĭ" - ], - "drop": [ - "ó藢xɮĵȑ6L*" - ] - }, - "privileged": false, - "seLinuxOptions": { - "user": "261", - "role": "262", - "type": "263", - "level": "264" - }, - "windowsOptions": { - "gmsaCredentialSpecName": "265", - "gmsaCredentialSpec": "266", - "runAsUserName": "267" - }, - "runAsUser": -5835415947553716289, - "runAsGroup": 2540215688947167763, - "runAsNonRoot": false, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w" - }, - "tty": true - } - ], - "ephemeralContainers": [ - { - "name": "268", - "image": "269", - "command": [ - "270" - ], - "args": [ - "271" - ], - "workingDir": "272", - "ports": [ - { - "name": "273", - "hostPort": -552281772, - "containerPort": -677617960, - "protocol": "ŕ翑0展}", - "hostIP": "274" - } - ], - "envFrom": [ - { - "prefix": "275", - "configMapRef": { - "name": "276", - "optional": false - }, - "secretRef": { - "name": "277", - "optional": false - } - } - ], - "env": [ - { - "name": "278", - "value": "279", - "valueFrom": { - "fieldRef": { - "apiVersion": "280", - "fieldPath": "281" - }, - "resourceFieldRef": { - "containerName": "282", - "resource": "283", - "divisor": "185" - }, - "configMapKeyRef": { - "name": "284", - "key": "285", + "name": "296", + "key": "297", "optional": true }, "secretKeyRef": { - "name": "286", - "key": "287", - "optional": false - } - } - } - ], - "resources": { - "limits": { - "鬶l獕;跣Hǝcw": "242" - }, - "requests": { - "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" - } - }, - "volumeMounts": [ - { - "name": "288", - "mountPath": "289", - "subPath": "290", - "mountPropagation": "", - "subPathExpr": "291" - } - ], - "volumeDevices": [ - { - "name": "292", - "devicePath": "293" - } - ], - "livenessProbe": { - "exec": { - "command": [ - "294" - ] - }, - "httpGet": { - "path": "295", - "port": "296", - "host": "297", - "scheme": "頸", - "httpHeaders": [ - { "name": "298", - "value": "299" + "key": "299", + "optional": false + } + } + } + ], + "resources": { + "limits": { + "²sNƗ¸g": "50" + }, + "requests": { + "酊龨δ摖ȱğ_\u003c": "118" + } + }, + "volumeMounts": [ + { + "name": "300", + "readOnly": true, + "mountPath": "301", + "subPath": "302", + "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź", + "subPathExpr": "303" + } + ], + "volumeDevices": [ + { + "name": "304", + "devicePath": "305" + } + ], + "livenessProbe": { + "exec": { + "command": [ + "306" + ] + }, + "httpGet": { + "path": "307", + "port": 865289071, + "host": "308", + "scheme": "iɥ嵐sC8", + "httpHeaders": [ + { + "name": "309", + "value": "310" } ] }, "tcpSocket": { - "port": 1315054653, - "host": "300" + "port": -898536659, + "host": "311" }, - "initialDelaySeconds": 711020087, - "timeoutSeconds": 1103049140, - "periodSeconds": -1965247100, - "successThreshold": 218453478, - "failureThreshold": 1993268896 + "initialDelaySeconds": -1513284745, + "timeoutSeconds": 1258370227, + "periodSeconds": -414121491, + "successThreshold": -1862764022, + "failureThreshold": -300247800 }, "readinessProbe": { "exec": { "command": [ - "301" + "312" ] }, "httpGet": { - "path": "302", - "port": "303", - "host": "304", - "scheme": "ƿ頀\"冓鍓贯澔 ", + "path": "313", + "port": 323903711, + "host": "314", + "scheme": "J", "httpHeaders": [ { - "name": "305", - "value": "306" + "name": "315", + "value": "316" } ] }, "tcpSocket": { - "port": "307", - "host": "308" + "port": "317", + "host": "318" }, - "initialDelaySeconds": 1058960779, - "timeoutSeconds": -2133441986, - "periodSeconds": 472742933, - "successThreshold": 50696420, - "failureThreshold": -1250314365 + "initialDelaySeconds": 657418949, + "timeoutSeconds": -992558278, + "periodSeconds": 287654902, + "successThreshold": -2062708879, + "failureThreshold": 215186711 + }, + "startupProbe": { + "exec": { + "command": [ + "319" + ] + }, + "httpGet": { + "path": "320", + "port": -1117254382, + "host": "321", + "scheme": "趐囨鏻砅邻爥蹔ŧOǨ", + "httpHeaders": [ + { + "name": "322", + "value": "323" + } + ] + }, + "tcpSocket": { + "port": "324", + "host": "325" + }, + "initialDelaySeconds": 2129989022, + "timeoutSeconds": -1699531929, + "periodSeconds": 1311843384, + "successThreshold": -1292310438, + "failureThreshold": 1502643091 }, "lifecycle": { "postStart": { "exec": { "command": [ - "309" + "326" ] }, "httpGet": { - "path": "310", - "port": -934378634, - "host": "311", - "scheme": "ɐ鰥", + "path": "327", + "port": "328", + "host": "329", + "scheme": "幩šeSvEȤƏ埮pɵ", "httpHeaders": [ { - "name": "312", - "value": "313" + "name": "330", + "value": "331" } ] }, "tcpSocket": { - "port": 630140708, - "host": "314" + "port": "332", + "host": "333" } }, "preStop": { "exec": { "command": [ - "315" + "334" ] }, "httpGet": { - "path": "316", - "port": "317", - "host": "318", - "scheme": "8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録²", + "path": "335", + "port": "336", + "host": "337", + "scheme": "ş", "httpHeaders": [ { - "name": "319", - "value": "320" + "name": "338", + "value": "339" } ] }, "tcpSocket": { - "port": 2080874371, - "host": "321" + "port": "340", + "host": "341" } } }, - "terminationMessagePath": "322", - "terminationMessagePolicy": "灩聋3趐囨鏻砅邻", - "imagePullPolicy": "騎C\"6x$1sȣ±p鋄", + "terminationMessagePath": "342", + "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", + "imagePullPolicy": "ņ", "securityContext": { "capabilities": { "add": [ - "ȹ均i绝5哇芆斩ìh4Ɋ" + "DŽ髐njʉBn(fǂǢ曣" ], "drop": [ - "Ȗ|ʐşƧ諔迮ƙIJ嘢4" + "ay" ] }, "privileged": false, "seLinuxOptions": { - "user": "323", - "role": "324", - "type": "325", - "level": "326" + "user": "343", + "role": "344", + "type": "345", + "level": "346" }, "windowsOptions": { - "gmsaCredentialSpecName": "327", - "gmsaCredentialSpec": "328", - "runAsUserName": "329" + "gmsaCredentialSpecName": "347", + "gmsaCredentialSpec": "348", + "runAsUserName": "349" }, - "runAsUser": 4288903380102217677, - "runAsGroup": 6618112330449141397, + "runAsUser": 1958157659034146020, + "runAsGroup": -5996624450771474158, "runAsNonRoot": false, - "readOnlyRootFilesystem": false, + "readOnlyRootFilesystem": true, "allowPrivilegeEscalation": false, - "procMount": "ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW" + "procMount": "嗆u" }, - "stdinOnce": true, "tty": true, - "targetContainerName": "330" + "targetContainerName": "350" } ], - "restartPolicy": "w妕眵笭/9崍h趭(娕", - "terminationGracePeriodSeconds": 6245571390016329382, - "activeDeadlineSeconds": -3214891994203952546, - "dnsPolicy": "晲T[irȎ3Ĕ\\", + "restartPolicy": "T[", + "terminationGracePeriodSeconds": -2738603156841903595, + "activeDeadlineSeconds": -8619192438821356882, + "dnsPolicy": "Ƶf", "nodeSelector": { - "331": "332" + "351": "352" }, - "serviceAccountName": "333", - "serviceAccount": "334", - "automountServiceAccountToken": true, - "nodeName": "335", - "hostIPC": true, - "shareProcessNamespace": true, + "serviceAccountName": "353", + "serviceAccount": "354", + "automountServiceAccountToken": false, + "nodeName": "355", + "hostNetwork": true, + "shareProcessNamespace": false, "securityContext": { "seLinuxOptions": { - "user": "336", - "role": "337", - "type": "338", - "level": "339" + "user": "356", + "role": "357", + "type": "358", + "level": "359" }, "windowsOptions": { - "gmsaCredentialSpecName": "340", - "gmsaCredentialSpec": "341", - "runAsUserName": "342" + "gmsaCredentialSpecName": "360", + "gmsaCredentialSpec": "361", + "runAsUserName": "362" }, - "runAsUser": 4430285638700927057, - "runAsGroup": 7461098988156705429, - "runAsNonRoot": false, + "runAsUser": -2781126825051715248, + "runAsGroup": -801152248124332545, + "runAsNonRoot": true, "supplementalGroups": [ - 7866826580662861268 + 5255171395073905944 ], - "fsGroup": 7747616967629081728, + "fsGroup": 760480547754807445, "sysctls": [ { - "name": "343", - "value": "344" + "name": "363", + "value": "364" } ] }, "imagePullSecrets": [ { - "name": "345" + "name": "365" } ], - "hostname": "346", - "subdomain": "347", + "hostname": "366", + "subdomain": "367", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1088,19 +1170,19 @@ { "matchExpressions": [ { - "key": "348", - "operator": "Ǚ(", + "key": "368", + "operator": "ǧĒzŔ瘍N", "values": [ - "349" + "369" ] } ], "matchFields": [ { - "key": "350", - "operator": "瘍Nʊ輔3璾ėȜv1b繐汚", + "key": "370", + "operator": "ƽ眝{æ盪泙", "values": [ - "351" + "371" ] } ] @@ -1109,23 +1191,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 702968201, + "weight": 646133945, "preference": { "matchExpressions": [ { - "key": "352", - "operator": "n覦灲閈誹ʅ蕉", + "key": "372", + "operator": "}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊", "values": [ - "353" + "373" ] } ], "matchFields": [ { - "key": "354", - "operator": "", + "key": "374", + "operator": "ʨIk(dŊiɢzĮ蛋I滞", "values": [ - "355" + "375" ] } ] @@ -1138,43 +1220,43 @@ { "labelSelector": { "matchLabels": { - "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I" + "3.csh-3--Z1Tvw39FC": "rtSY.g._2F7.-_e..Or_-.3OHgt._6" }, "matchExpressions": [ { - "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l", - "operator": "DoesNotExist" + "key": "V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd", + "operator": "Exists" } ] }, "namespaces": [ - "362" + "382" ], - "topologyKey": "363" + "topologyKey": "383" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": 1195176401, + "weight": -855547676, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q" + "w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y": "f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5" }, "matchExpressions": [ { - "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", - "operator": "NotIn", + "key": "8.--w0_1V7", + "operator": "In", "values": [ - "0..KpiS.oK-.O--5-yp8q_s-L" + "7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8" ] } ] }, "namespaces": [ - "370" + "390" ], - "topologyKey": "371" + "topologyKey": "391" } } ] @@ -1184,109 +1266,106 @@ { "labelSelector": { "matchLabels": { - "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" + "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1" }, "matchExpressions": [ { - "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", - "operator": "NotIn", - "values": [ - "VT3sn-0_.i__a.O2G_J" - ] + "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "378" + "398" ], - "topologyKey": "379" + "topologyKey": "399" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1508769491, + "weight": 808399187, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F" + "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx" }, "matchExpressions": [ { - "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e", - "operator": "In", - "values": [ - "" - ] + "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "386" + "406" ], - "topologyKey": "387" + "topologyKey": "407" } } ] } }, - "schedulerName": "388", + "schedulerName": "408", "tolerations": [ { - "key": "389", - "operator": "抄3昞财Î嘝zʄ!ć", - "value": "390", - "effect": "緍k¢茤", - "tolerationSeconds": 4096844323391966153 + "key": "409", + "operator": "ƹ|", + "value": "410", + "effect": "料ȭzV镜籬ƽ", + "tolerationSeconds": 935587338391120947 } ], "hostAliases": [ { - "ip": "391", + "ip": "411", "hostnames": [ - "392" + "412" ] } ], - "priorityClassName": "393", - "priority": -1331113536, + "priorityClassName": "413", + "priority": 1690570439, "dnsConfig": { "nameservers": [ - "394" + "414" ], "searches": [ - "395" + "415" ], "options": [ { - "name": "396", - "value": "397" + "name": "416", + "value": "417" } ] }, "readinessGates": [ { - "conditionType": "mō6µɑ`ȗ\u003c8^翜" + "conditionType": "梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳" } ], - "runtimeClassName": "398", - "enableServiceLinks": false, - "preemptionPolicy": "ý筞X", + "runtimeClassName": "418", + "enableServiceLinks": true, + "preemptionPolicy": "eáNRNJ丧鴻Ŀ", "overhead": { - "tHǽ÷閂抰^窄CǙķȈ": "97" + "癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö": "607" }, "topologySpreadConstraints": [ { - "maxSkew": 1956797678, - "topologyKey": "399", - "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙", + "maxSkew": -137402083, + "topologyKey": "419", + "whenUnsatisfiable": "Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥", "labelSelector": { "matchLabels": { - "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4" + "E--pT751": "mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X" }, "matchExpressions": [ { - "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz", - "operator": "DoesNotExist" + "key": "qW", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1295,34 +1374,35 @@ } }, "strategy": { + "type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5", "rollingUpdate": { } }, - "minReadySeconds": 997447044, - "revisionHistoryLimit": 989524452, + "minReadySeconds": 212061711, + "revisionHistoryLimit": -1092090658, "rollbackTo": { - "revision": -7811637368862163847 + "revision": -318895959020904110 }, - "progressDeadlineSeconds": 1774123594 + "progressDeadlineSeconds": 1109758199 }, "status": { - "observedGeneration": -4950488263500864484, - "replicas": 67329694, - "updatedReplicas": 1689648303, - "readyReplicas": -1121580186, - "availableReplicas": -1521312599, - "unavailableReplicas": 129237050, + "observedGeneration": 1751238822830387407, + "replicas": -106050665, + "updatedReplicas": -929473748, + "readyReplicas": -1450995995, + "availableReplicas": 740158871, + "unavailableReplicas": -449319810, "conditions": [ { - "type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö", - "status": "2ț", - "lastUpdateTime": "2733-02-09T15:36:31Z", - "lastTransitionTime": "2615-10-02T05:14:27Z", - "reason": "406", - "message": "407" + "type": "", + "status": "'ƈoIǢ龞瞯å", + "lastUpdateTime": "2469-07-10T03:20:34Z", + "lastTransitionTime": "1970-05-16T01:44:00Z", + "reason": "426", + "message": "427" } ], - "collisionCount": -612321491 + "collisionCount": 571778293 } } \ 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 89a585bcfc8..530dea71de1 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 1473ebe951d..544403c3fd9 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: 997447044 - progressDeadlineSeconds: 1774123594 + minReadySeconds: 212061711 + progressDeadlineSeconds: 1109758199 replicas: 896585016 - revisionHistoryLimit: 989524452 + revisionHistoryLimit: -1092090658 rollbackTo: - revision: -7811637368862163847 + revision: -318895959020904110 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,6 +44,7 @@ spec: 74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1 strategy: rollingUpdate: {} + type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5 template: metadata: annotations: @@ -75,412 +76,446 @@ spec: selfLink: "28" uid: ?Qȫş spec: - activeDeadlineSeconds: -3214891994203952546 + activeDeadlineSeconds: -8619192438821356882 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "352" - operator: n覦灲閈誹ʅ蕉 + - key: "372" + operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' values: - - "353" + - "373" matchFields: - - key: "354" - operator: "" + - key: "374" + operator: ʨIk(dŊiɢzĮ蛋I滞 values: - - "355" - weight: 702968201 + - "375" + weight: 646133945 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "348" - operator: Ǚ( + - key: "368" + operator: ǧĒzŔ瘍N values: - - "349" + - "369" matchFields: - - key: "350" - operator: 瘍Nʊ輔3璾ėȜv1b繐汚 + - key: "370" + operator: ƽ眝{æ盪泙 values: - - "351" + - "371" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - operator: NotIn + - key: 8.--w0_1V7 + operator: In values: - - 0..KpiS.oK-.O--5-yp8q_s-L + - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8 matchLabels: - Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q + w--162-gk2-99v22.g-65m8-1x129-9d8-s7-t7--336-11k9-8609a-e0--1----v8-4--558n1asz5/BD8.TS-jJ.Ys_Mop34_y: f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J5 namespaces: - - "370" - topologyKey: "371" - weight: 1195176401 + - "390" + topologyKey: "391" + weight: -855547676 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l - operator: DoesNotExist + - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd + operator: Exists matchLabels: - lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I + 3.csh-3--Z1Tvw39FC: rtSY.g._2F7.-_e..Or_-.3OHgt._6 namespaces: - - "362" - topologyKey: "363" + - "382" + topologyKey: "383" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - operator: In - values: - - "" + - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf + operator: DoesNotExist matchLabels: - 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F + 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx namespaces: - - "386" - topologyKey: "387" - weight: -1508769491 + - "406" + topologyKey: "407" + weight: 808399187 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - operator: NotIn - values: - - VT3sn-0_.i__a.O2G_J + - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81 + operator: DoesNotExist matchLabels: - H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1 + 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1 namespaces: - - "378" - topologyKey: "379" - automountServiceAccountToken: true + - "398" + topologyKey: "399" + automountServiceAccountToken: false containers: - args: - - "211" + - "216" command: - - "210" + - "215" env: - - name: "218" - value: "219" + - name: "223" + value: "224" valueFrom: configMapKeyRef: - key: "225" - name: "224" - optional: false - fieldRef: - apiVersion: "220" - fieldPath: "221" - resourceFieldRef: - containerName: "222" - divisor: "771" - resource: "223" - secretKeyRef: - key: "227" - name: "226" + key: "230" + name: "229" optional: true + fieldRef: + apiVersion: "225" + fieldPath: "226" + resourceFieldRef: + containerName: "227" + divisor: "595" + resource: "228" + secretKeyRef: + key: "232" + name: "231" + optional: false envFrom: - configMapRef: - name: "216" + name: "221" optional: false - prefix: "215" + prefix: "220" secretRef: - name: "217" - optional: true - image: "209" - imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 + name: "222" + optional: false + image: "214" + imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5 lifecycle: postStart: exec: command: - - "248" + - "258" httpGet: - host: "250" + host: "261" httpHeaders: - - name: "251" - value: "252" - path: "249" - port: -2013568185 - scheme: '#yV''WKw(ğ儴Ůĺ}' + - name: "262" + value: "263" + path: "259" + port: "260" tcpSocket: - host: "253" - port: -20130017 + host: "264" + port: 1943028037 preStop: exec: command: - - "254" + - "265" httpGet: - host: "256" + host: "267" httpHeaders: - - name: "257" - value: "258" - path: "255" - port: -661937776 - scheme: ØœȠƬQg鄠[颐o + - name: "268" + value: "269" + path: "266" + port: -1355476687 + scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ tcpSocket: - host: "259" - port: 461585849 + host: "271" + port: "270" livenessProbe: exec: command: - - "234" - failureThreshold: -93157681 + - "239" + failureThreshold: -1213051101 httpGet: - host: "236" + host: "241" httpHeaders: - - name: "237" - value: "238" - path: "235" - port: -1285424066 - scheme: ni酛3ƁÀ - initialDelaySeconds: -2036074491 - periodSeconds: 165047920 - successThreshold: -393291312 + - name: "242" + value: "243" + path: "240" + port: -1654678802 + scheme: 毋 + initialDelaySeconds: -775511009 + periodSeconds: -228822833 + successThreshold: -970312425 tcpSocket: - host: "240" - port: "239" - timeoutSeconds: -148216266 - name: "208" + host: "244" + port: 391562775 + timeoutSeconds: -832805508 + name: "213" ports: - - containerPort: 1923334396 - hostIP: "214" - hostPort: 474119379 - name: "213" - protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ + - containerPort: -775325416 + hostIP: "219" + hostPort: 62799871 + name: "218" + protocol: t莭琽§ć\ ïì readinessProbe: exec: command: - - "241" - failureThreshold: 267768240 + - "245" + failureThreshold: 571739592 httpGet: - host: "244" - httpHeaders: - - name: "245" - value: "246" - path: "242" - port: "243" - scheme: 3!Zɾģ毋Ó6 - initialDelaySeconds: -228822833 - periodSeconds: -1213051101 - successThreshold: 1451056156 - tcpSocket: host: "247" - port: -832805508 - timeoutSeconds: -970312425 + httpHeaders: + - name: "248" + value: "249" + path: "246" + port: -1905643191 + scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕 + initialDelaySeconds: 852780575 + periodSeconds: 893823156 + successThreshold: -1980314709 + tcpSocket: + host: "251" + port: "250" + timeoutSeconds: -1252938503 resources: limits: - 吐: "777" + N粕擓ƖHVe熼: "334" requests: - rʤî萨zvt莭琽§ć\ ïì: "80" + 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388" securityContext: - allowPrivilegeEscalation: false + allowPrivilegeEscalation: true capabilities: add: - - 昕Ĭ + - E埄Ȁ朦 wƯ貾坢' drop: - - ó藢xɮĵȑ6L* + - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l privileged: false - procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' - readOnlyRootFilesystem: false - runAsGroup: 2540215688947167763 - runAsNonRoot: false - runAsUser: -5835415947553716289 + procMount: "" + readOnlyRootFilesystem: true + runAsGroup: -2408264753085021035 + runAsNonRoot: true + runAsUser: -2270595441829602368 seLinuxOptions: - level: "264" - role: "262" - type: "263" - user: "261" + level: "276" + role: "274" + type: "275" + user: "273" windowsOptions: - gmsaCredentialSpec: "266" - gmsaCredentialSpecName: "265" - runAsUserName: "267" - terminationMessagePath: "260" - terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ - tty: true + gmsaCredentialSpec: "278" + gmsaCredentialSpecName: "277" + runAsUserName: "279" + startupProbe: + exec: + command: + - "252" + failureThreshold: -1008070934 + httpGet: + host: "254" + httpHeaders: + - name: "255" + value: "256" + path: "253" + port: -1334110502 + scheme: ȓ蹣ɐǛv+8Ƥ熪军 + initialDelaySeconds: 410611837 + periodSeconds: 972978563 + successThreshold: 17771103 + tcpSocket: + host: "257" + port: 622267234 + timeoutSeconds: 809006670 + terminationMessagePath: "272" + terminationMessagePolicy: T 苧yñKJɐ扵G volumeDevices: - - devicePath: "233" - name: "232" + - devicePath: "238" + name: "237" volumeMounts: - - mountPath: "229" - mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S - name: "228" + - mountPath: "234" + mountPropagation: 癃8鸖 + name: "233" readOnly: true - subPath: "230" - subPathExpr: "231" - workingDir: "212" + subPath: "235" + subPathExpr: "236" + workingDir: "217" dnsConfig: nameservers: - - "394" + - "414" options: - - name: "396" - value: "397" + - name: "416" + value: "417" searches: - - "395" - dnsPolicy: 晲T[irȎ3Ĕ\ - enableServiceLinks: false + - "415" + dnsPolicy: Ƶf + enableServiceLinks: true ephemeralContainers: - args: - - "271" + - "283" command: - - "270" + - "282" env: - - name: "278" - value: "279" + - name: "290" + value: "291" valueFrom: configMapKeyRef: - key: "285" - name: "284" + key: "297" + name: "296" optional: true fieldRef: - apiVersion: "280" - fieldPath: "281" + apiVersion: "292" + fieldPath: "293" resourceFieldRef: - containerName: "282" - divisor: "185" - resource: "283" + containerName: "294" + divisor: "381" + resource: "295" secretKeyRef: - key: "287" - name: "286" + key: "299" + name: "298" optional: false envFrom: - configMapRef: - name: "276" + name: "288" optional: false - prefix: "275" + prefix: "287" secretRef: - name: "277" - optional: false - image: "269" - imagePullPolicy: 騎C"6x$1sȣ±p鋄 + name: "289" + optional: true + image: "281" + imagePullPolicy: ņ lifecycle: postStart: exec: command: - - "309" + - "326" httpGet: - host: "311" + host: "329" httpHeaders: - - name: "312" - value: "313" - path: "310" - port: -934378634 - scheme: ɐ鰥 + - name: "330" + value: "331" + path: "327" + port: "328" + scheme: 幩šeSvEȤƏ埮pɵ tcpSocket: - host: "314" - port: 630140708 + host: "333" + port: "332" preStop: exec: command: - - "315" + - "334" httpGet: - host: "318" + host: "337" httpHeaders: - - name: "319" - value: "320" - path: "316" - port: "317" - scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² + - name: "338" + value: "339" + path: "335" + port: "336" + scheme: ş tcpSocket: - host: "321" - port: 2080874371 + host: "341" + port: "340" livenessProbe: exec: command: - - "294" - failureThreshold: 1993268896 + - "306" + failureThreshold: -300247800 httpGet: - host: "297" + host: "308" httpHeaders: - - name: "298" - value: "299" - path: "295" - port: "296" - scheme: 頸 - initialDelaySeconds: 711020087 - periodSeconds: -1965247100 - successThreshold: 218453478 + - name: "309" + value: "310" + path: "307" + port: 865289071 + scheme: iɥ嵐sC8 + initialDelaySeconds: -1513284745 + periodSeconds: -414121491 + successThreshold: -1862764022 tcpSocket: - host: "300" - port: 1315054653 - timeoutSeconds: 1103049140 - name: "268" + host: "311" + port: -898536659 + timeoutSeconds: 1258370227 + name: "280" ports: - - containerPort: -677617960 - hostIP: "274" - hostPort: -552281772 - name: "273" - protocol: ŕ翑0展} + - containerPort: -1137436579 + hostIP: "286" + hostPort: 1868683352 + name: "285" + protocol: 颶妧Ö闊 readinessProbe: exec: command: - - "301" - failureThreshold: -1250314365 + - "312" + failureThreshold: 215186711 httpGet: - host: "304" + host: "314" httpHeaders: - - name: "305" - value: "306" - path: "302" - port: "303" - scheme: 'ƿ頀"冓鍓贯澔 ' - initialDelaySeconds: 1058960779 - periodSeconds: 472742933 - successThreshold: 50696420 + - name: "315" + value: "316" + path: "313" + port: 323903711 + scheme: J + initialDelaySeconds: 657418949 + periodSeconds: 287654902 + successThreshold: -2062708879 tcpSocket: - host: "308" - port: "307" - timeoutSeconds: -2133441986 + host: "318" + port: "317" + timeoutSeconds: -992558278 resources: limits: - 鬶l獕;跣Hǝcw: "242" + ²sNƗ¸g: "50" requests: - $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" + 酊龨δ摖ȱğ_<: "118" securityContext: allowPrivilegeEscalation: false capabilities: add: - - ȹ均i绝5哇芆斩ìh4Ɋ + - DŽ髐njʉBn(fǂǢ曣 drop: - - Ȗ|ʐşƧ諔迮ƙIJ嘢4 + - ay privileged: false - procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW - readOnlyRootFilesystem: false - runAsGroup: 6618112330449141397 + procMount: 嗆u + readOnlyRootFilesystem: true + runAsGroup: -5996624450771474158 runAsNonRoot: false - runAsUser: 4288903380102217677 + runAsUser: 1958157659034146020 seLinuxOptions: - level: "326" - role: "324" - type: "325" - user: "323" + level: "346" + role: "344" + type: "345" + user: "343" windowsOptions: - gmsaCredentialSpec: "328" - gmsaCredentialSpecName: "327" - runAsUserName: "329" - stdinOnce: true - targetContainerName: "330" - terminationMessagePath: "322" - terminationMessagePolicy: 灩聋3趐囨鏻砅邻 + gmsaCredentialSpec: "348" + gmsaCredentialSpecName: "347" + runAsUserName: "349" + startupProbe: + exec: + command: + - "319" + failureThreshold: 1502643091 + httpGet: + host: "321" + httpHeaders: + - name: "322" + value: "323" + path: "320" + port: -1117254382 + scheme: 趐囨鏻砅邻爥蹔ŧOǨ + initialDelaySeconds: 2129989022 + periodSeconds: 1311843384 + successThreshold: -1292310438 + tcpSocket: + host: "325" + port: "324" + timeoutSeconds: -1699531929 + targetContainerName: "350" + terminationMessagePath: "342" + terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ tty: true volumeDevices: - - devicePath: "293" - name: "292" + - devicePath: "305" + name: "304" volumeMounts: - - mountPath: "289" - mountPropagation: "" - name: "288" - subPath: "290" - subPathExpr: "291" - workingDir: "272" + - mountPath: "301" + mountPropagation: ƺ蛜6Ɖ飴ɎiǨź + name: "300" + readOnly: true + subPath: "302" + subPathExpr: "303" + workingDir: "284" hostAliases: - hostnames: - - "392" - ip: "391" - hostIPC: true - hostname: "346" + - "412" + ip: "411" + hostNetwork: true + hostname: "366" imagePullSecrets: - - name: "345" + - name: "365" initContainers: - args: - "150" @@ -514,37 +549,38 @@ spec: name: "156" optional: true image: "148" + imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩 lifecycle: postStart: exec: command: - - "186" + - "192" httpGet: - host: "189" + host: "194" httpHeaders: - - name: "190" - value: "191" - path: "187" - port: "188" - scheme: £ȹ嫰ƹǔw÷nI粛E煹 + - name: "195" + value: "196" + path: "193" + port: -2015604435 + scheme: jƯĖ漘Z剚敍0) tcpSocket: - host: "192" - port: 135036402 + host: "197" + port: 424236719 preStop: exec: command: - - "193" + - "198" httpGet: - host: "195" + host: "200" httpHeaders: - - name: "196" - value: "197" - path: "194" - port: -1188430996 - scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 + - name: "201" + value: "202" + path: "199" + port: -1131820775 + scheme: Ƿ裚瓶釆Ɗ+j忊 tcpSocket: - host: "199" - port: "198" + host: "204" + port: "203" livenessProbe: exec: command: @@ -601,28 +637,47 @@ spec: allowPrivilegeEscalation: false capabilities: add: - - ȫ焗捏ĨFħ籘Àǒɿʒ刽 + - "" drop: - - 掏1ſ - privileged: true - procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 + - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ + privileged: false + procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫 readOnlyRootFilesystem: true - runAsGroup: 3747003978559617838 + runAsGroup: -8419423421380299597 runAsNonRoot: false - runAsUser: 7739117973959656085 + runAsUser: -6576869501326512452 seLinuxOptions: - level: "204" - role: "202" - type: "203" - user: "201" + level: "209" + role: "207" + type: "208" + user: "206" windowsOptions: - gmsaCredentialSpec: "206" - gmsaCredentialSpecName: "205" - runAsUserName: "207" - stdin: true - stdinOnce: true - terminationMessagePath: "200" - terminationMessagePolicy: ɩC + gmsaCredentialSpec: "211" + gmsaCredentialSpecName: "210" + runAsUserName: "212" + startupProbe: + exec: + command: + - "186" + failureThreshold: 208045354 + httpGet: + host: "188" + httpHeaders: + - name: "189" + value: "190" + path: "187" + port: 804417065 + scheme: Ŵ廷s{Ⱦdz@ + initialDelaySeconds: 632397602 + periodSeconds: -730174220 + successThreshold: 433084615 + tcpSocket: + host: "191" + port: 406308963 + timeoutSeconds: 2026784878 + terminationMessagePath: "205" + terminationMessagePolicy: 焗捏 + tty: true volumeDevices: - devicePath: "172" name: "171" @@ -634,60 +689,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "335" + nodeName: "355" nodeSelector: - "331": "332" + "351": "352" overhead: - tHǽ÷閂抰^窄CǙķȈ: "97" - preemptionPolicy: ý筞X - priority: -1331113536 - priorityClassName: "393" + 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" + preemptionPolicy: eáNRNJ丧鴻Ŀ + priority: 1690570439 + priorityClassName: "413" readinessGates: - - conditionType: mō6µɑ`ȗ<8^翜 - restartPolicy: w妕眵笭/9崍h趭(娕 - runtimeClassName: "398" - schedulerName: "388" + - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 + restartPolicy: T[ + runtimeClassName: "418" + schedulerName: "408" securityContext: - fsGroup: 7747616967629081728 - runAsGroup: 7461098988156705429 - runAsNonRoot: false - runAsUser: 4430285638700927057 + fsGroup: 760480547754807445 + runAsGroup: -801152248124332545 + runAsNonRoot: true + runAsUser: -2781126825051715248 seLinuxOptions: - level: "339" - role: "337" - type: "338" - user: "336" + level: "359" + role: "357" + type: "358" + user: "356" supplementalGroups: - - 7866826580662861268 + - 5255171395073905944 sysctls: - - name: "343" - value: "344" + - name: "363" + value: "364" windowsOptions: - gmsaCredentialSpec: "341" - gmsaCredentialSpecName: "340" - runAsUserName: "342" - serviceAccount: "334" - serviceAccountName: "333" - shareProcessNamespace: true - subdomain: "347" - terminationGracePeriodSeconds: 6245571390016329382 + gmsaCredentialSpec: "361" + gmsaCredentialSpecName: "360" + runAsUserName: "362" + serviceAccount: "354" + serviceAccountName: "353" + shareProcessNamespace: false + subdomain: "367" + terminationGracePeriodSeconds: -2738603156841903595 tolerations: - - effect: 緍k¢茤 - key: "389" - operator: 抄3昞财Î嘝zʄ!ć - tolerationSeconds: 4096844323391966153 - value: "390" + - effect: 料ȭzV镜籬ƽ + key: "409" + operator: ƹ| + tolerationSeconds: 935587338391120947 + value: "410" topologySpreadConstraints: - labelSelector: matchExpressions: - - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz - operator: DoesNotExist + - key: qW + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5 - : x_.4dwFbuvEf55Y2k.F-4 - maxSkew: 1956797678 - topologyKey: "399" - whenUnsatisfiable: ƀ+瑏eCmAȥ睙 + E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X + maxSkew: -137402083 + topologyKey: "419" + whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 volumes: - awsElasticBlockStore: fsType: "47" @@ -888,17 +944,17 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: -1521312599 - collisionCount: -612321491 + availableReplicas: 740158871 + collisionCount: 571778293 conditions: - - lastTransitionTime: "2615-10-02T05:14:27Z" - lastUpdateTime: "2733-02-09T15:36:31Z" - message: "407" - reason: "406" - status: 2ț - type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö' - observedGeneration: -4950488263500864484 - readyReplicas: -1121580186 - replicas: 67329694 - unavailableReplicas: 129237050 - updatedReplicas: 1689648303 + - lastTransitionTime: "1970-05-16T01:44:00Z" + lastUpdateTime: "2469-07-10T03:20:34Z" + message: "427" + reason: "426" + status: '''ƈoIǢ龞瞯å' + type: "" + observedGeneration: 1751238822830387407 + readyReplicas: -1450995995 + replicas: -106050665 + unavailableReplicas: -449319810 + updatedReplicas: -929473748 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 12c744f9a53..c89820874f3 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 @@ -511,364 +511,418 @@ "successThreshold": 290736426, "failureThreshold": -57352147 }, + "startupProbe": { + "exec": { + "command": [ + "188" + ] + }, + "httpGet": { + "path": "189", + "port": "190", + "host": "191", + "scheme": "閝ȝ", + "httpHeaders": [ + { + "name": "192", + "value": "193" + } + ] + }, + "tcpSocket": { + "port": "194", + "host": "195" + }, + "initialDelaySeconds": -2142865739, + "timeoutSeconds": -1179067190, + "periodSeconds": 1434408532, + "successThreshold": -566408554, + "failureThreshold": 1133369651 + }, "lifecycle": { "postStart": { "exec": { "command": [ - "188" + "196" ] }, "httpGet": { - "path": "189", - "port": "190", - "host": "191", - "scheme": "w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ", + "path": "197", + "port": -1327537699, + "host": "198", "httpHeaders": [ { - "name": "192", - "value": "193" + "name": "199", + "value": "200" } ] }, "tcpSocket": { - "port": -337353552, - "host": "194" + "port": "201", + "host": "202" } }, "preStop": { "exec": { "command": [ - "195" + "203" ] }, "httpGet": { - "path": "196", - "port": -374922344, - "host": "197", - "scheme": "緄Ú|dk_瀹鞎sn芞", + "path": "204", + "port": "205", + "host": "206", + "scheme": "ĉş蝿ɖȃ賲鐅臬", "httpHeaders": [ { - "name": "198", - "value": "199" + "name": "207", + "value": "208" } ] }, "tcpSocket": { - "port": 912103005, - "host": "200" + "port": "209", + "host": "210" } } }, - "terminationMessagePath": "201", - "terminationMessagePolicy": "Ȋ+?ƭ峧Y栲茇竛吲蚛", - "imagePullPolicy": "\u003cé瞾", + "terminationMessagePath": "211", + "imagePullPolicy": "k_瀹鞎sn芞QÄȻ", "securityContext": { "capabilities": { "add": [ - "Ŭ" + "?" ], "drop": [ - "ǙÄr蛏豈" + "峧Y栲茇竛吲蚛隖" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "202", - "role": "203", - "type": "204", - "level": "205" + "user": "212", + "role": "213", + "type": "214", + "level": "215" }, "windowsOptions": { - "gmsaCredentialSpecName": "206", - "gmsaCredentialSpec": "207", - "runAsUserName": "208" + "gmsaCredentialSpecName": "216", + "gmsaCredentialSpec": "217", + "runAsUserName": "218" }, - "runAsUser": -3447077152667955293, - "runAsGroup": -6457174729896610090, + "runAsUser": 7312518131318481396, + "runAsGroup": -7286288718856494813, "runAsNonRoot": true, - "readOnlyRootFilesystem": true, - "allowPrivilegeEscalation": true, - "procMount": "ȉ彂" + "readOnlyRootFilesystem": false, + "allowPrivilegeEscalation": false, + "procMount": "ʙ嫙\u0026" }, + "stdin": true, "stdinOnce": true } ], "containers": [ { - "name": "209", - "image": "210", + "name": "219", + "image": "220", "command": [ - "211" + "221" ], "args": [ - "212" + "222" ], - "workingDir": "213", + "workingDir": "223", "ports": [ { - "name": "214", - "hostPort": 1065976533, - "containerPort": -820119398, - "protocol": "@ùƸʋŀ樺ȃv", - "hostIP": "215" + "name": "224", + "hostPort": 1944205014, + "containerPort": -2079582559, + "protocol": "K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ", + "hostIP": "225" } ], "envFrom": [ { - "prefix": "216", + "prefix": "226", "configMapRef": { - "name": "217", + "name": "227", "optional": true }, "secretRef": { - "name": "218", - "optional": true + "name": "228", + "optional": false } } ], "env": [ { - "name": "219", - "value": "220", + "name": "229", + "value": "230", "valueFrom": { "fieldRef": { - "apiVersion": "221", - "fieldPath": "222" + "apiVersion": "231", + "fieldPath": "232" }, "resourceFieldRef": { - "containerName": "223", - "resource": "224", - "divisor": "508" + "containerName": "233", + "resource": "234", + "divisor": "901" }, "configMapKeyRef": { - "name": "225", - "key": "226", + "name": "235", + "key": "236", "optional": false }, "secretKeyRef": { - "name": "227", - "key": "228", - "optional": true + "name": "237", + "key": "238", + "optional": false } } } ], "resources": { "limits": { - "剚敍0)鈼¬麄p呝TG": "305" + "羭,铻OŤǢʭ嵔": "340" }, "requests": { - "瓶": "806" + "TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜": "755" } }, "volumeMounts": [ { - "name": "229", - "readOnly": true, - "mountPath": "230", - "subPath": "231", - "mountPropagation": "", - "subPathExpr": "232" + "name": "239", + "mountPath": "240", + "subPath": "241", + "mountPropagation": "ʒ刽ʼn掏1ſ盷褎weLJèux榜", + "subPathExpr": "242" } ], "volumeDevices": [ { - "name": "233", - "devicePath": "234" + "name": "243", + "devicePath": "244" } ], "livenessProbe": { "exec": { "command": [ - "235" + "245" ] }, "httpGet": { - "path": "236", - "port": "237", - "host": "238", - "scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽", + "path": "246", + "port": "247", + "host": "248", + "scheme": "賃ɪ鐊瀑Ź9ǕLLȊ", "httpHeaders": [ { - "name": "239", - "value": "240" + "name": "249", + "value": "250" } ] }, "tcpSocket": { - "port": 1096174794, - "host": "241" + "port": -26910286, + "host": "251" }, - "initialDelaySeconds": 1591029717, - "timeoutSeconds": 1255169591, - "periodSeconds": 622473257, - "successThreshold": -966649167, - "failureThreshold": 817152661 + "initialDelaySeconds": 1214895765, + "timeoutSeconds": 1181519543, + "periodSeconds": 282592353, + "successThreshold": 377225334, + "failureThreshold": -1191434089 }, "readinessProbe": { "exec": { "command": [ - "242" + "252" ] }, "httpGet": { - "path": "243", - "port": "244", - "host": "245", - "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ", + "path": "253", + "port": "254", + "host": "255", "httpHeaders": [ { - "name": "246", - "value": "247" + "name": "256", + "value": "257" } ] }, "tcpSocket": { - "port": "248", - "host": "249" + "port": "258", + "host": "259" }, - "initialDelaySeconds": -394397948, - "timeoutSeconds": 2040455355, - "periodSeconds": 1505972335, - "successThreshold": -26910286, - "failureThreshold": 1214895765 + "initialDelaySeconds": -839281354, + "timeoutSeconds": 2035347577, + "periodSeconds": -819723498, + "successThreshold": -150133456, + "failureThreshold": 1507815593 + }, + "startupProbe": { + "exec": { + "command": [ + "260" + ] + }, + "httpGet": { + "path": "261", + "port": 1684643131, + "host": "262", + "scheme": "飣奺Ȋ礶惇¸", + "httpHeaders": [ + { + "name": "263", + "value": "264" + } + ] + }, + "tcpSocket": { + "port": "265", + "host": "266" + }, + "initialDelaySeconds": -161753937, + "timeoutSeconds": -1578746609, + "periodSeconds": 1428207963, + "successThreshold": 790462391, + "failureThreshold": -822090785 }, "lifecycle": { "postStart": { "exec": { "command": [ - "250" + "267" ] }, "httpGet": { - "path": "251", - "port": "252", - "host": "253", - "scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7", + "path": "268", + "port": -421846800, + "host": "269", + "scheme": "zvt莭琽§", "httpHeaders": [ { - "name": "254", - "value": "255" + "name": "270", + "value": "271" } ] }, "tcpSocket": { - "port": "256", - "host": "257" + "port": -763687725, + "host": "272" } }, "preStop": { "exec": { "command": [ - "258" + "273" ] }, "httpGet": { - "path": "259", - "port": -1675041613, - "host": "260", - "scheme": "揆ɘȌ脾嚏吐", + "path": "274", + "port": -1452676801, + "host": "275", + "scheme": "ȿ0矀Kʝ", "httpHeaders": [ { - "name": "261", - "value": "262" + "name": "276", + "value": "277" } ] }, "tcpSocket": { - "port": -194343002, - "host": "263" + "port": "278", + "host": "279" } } }, - "terminationMessagePath": "264", - "terminationMessagePolicy": "Ȥ藠3.", - "imagePullPolicy": "t莭琽§ć\\ ïì", + "terminationMessagePath": "280", + "terminationMessagePolicy": "\\p[", + "imagePullPolicy": "擓ƖHVe熼'FD剂讼ɓȌʟni酛", "securityContext": { "capabilities": { "add": [ - "Ƙ枛牐ɺ皚|懥ƖN" + "À*f\u003c鴒翁杙Ŧ癃8" ], "drop": [ - "擓ƖHVe熼'FD剂讼ɓȌʟni酛" + "ɱJȉ罴" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "265", - "role": "266", - "type": "267", - "level": "268" + "user": "281", + "role": "282", + "type": "283", + "level": "284" }, "windowsOptions": { - "gmsaCredentialSpecName": "269", - "gmsaCredentialSpec": "270", - "runAsUserName": "271" + "gmsaCredentialSpecName": "285", + "gmsaCredentialSpec": "286", + "runAsUserName": "287" }, - "runAsUser": -2142888785755371163, - "runAsGroup": -2879304435996142911, + "runAsUser": -2706913289057230267, + "runAsGroup": -3689959065086680033, "runAsNonRoot": false, "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": false, - "procMount": "Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?" + "allowPrivilegeEscalation": true, + "procMount": "棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅" }, - "stdin": true + "stdinOnce": true } ], "ephemeralContainers": [ { - "name": "272", - "image": "273", + "name": "288", + "image": "289", "command": [ - "274" + "290" ], "args": [ - "275" + "291" ], - "workingDir": "276", + "workingDir": "292", "ports": [ { - "name": "277", - "hostPort": -1740959124, - "containerPort": 158280212, - "hostIP": "278" + "name": "293", + "hostPort": 1853396726, + "containerPort": 1330271338, + "protocol": "逴", + "hostIP": "294" } ], "envFrom": [ { - "prefix": "279", + "prefix": "295", "configMapRef": { - "name": "280", + "name": "296", "optional": true }, "secretRef": { - "name": "281", + "name": "297", "optional": true } } ], "env": [ { - "name": "282", - "value": "283", + "name": "298", + "value": "299", "valueFrom": { "fieldRef": { - "apiVersion": "284", - "fieldPath": "285" + "apiVersion": "300", + "fieldPath": "301" }, "resourceFieldRef": { - "containerName": "286", - "resource": "287", - "divisor": "985" + "containerName": "302", + "resource": "303", + "divisor": "709" }, "configMapKeyRef": { - "name": "288", - "key": "289", + "name": "304", + "key": "305", "optional": false }, "secretKeyRef": { - "name": "290", - "key": "291", + "name": "306", + "key": "307", "optional": false } } @@ -876,215 +930,240 @@ ], "resources": { "limits": { - "ɖ緕ȚÍ勅跦Opwǩ": "957" + "颐o": "230" }, "requests": { - "Ɔȓ蹣ɐǛv+8Ƥ熪": "951" + "[+扴ȨŮ+朷Ǝ膯ljV": "728" } }, "volumeMounts": [ { - "name": "292", - "mountPath": "293", - "subPath": "294", - "mountPropagation": "啛更", - "subPathExpr": "295" + "name": "308", + "mountPath": "309", + "subPath": "310", + "mountPropagation": "ŕ-Ɂ圯W:ĸ輦唊#v铿", + "subPathExpr": "311" } ], "volumeDevices": [ { - "name": "296", - "devicePath": "297" + "name": "312", + "devicePath": "313" } ], "livenessProbe": { "exec": { "command": [ - "298" + "314" ] }, "httpGet": { - "path": "299", - "port": "300", - "host": "301", - "scheme": "Ů+朷Ǝ膯ljVX1虊", + "path": "315", + "port": "316", + "host": "317", + "scheme": "屡ʁ", "httpHeaders": [ { - "name": "302", - "value": "303" + "name": "318", + "value": "319" } ] }, "tcpSocket": { - "port": -979584143, - "host": "304" + "port": -1554559634, + "host": "320" }, - "initialDelaySeconds": -1748648882, - "timeoutSeconds": -239843014, - "periodSeconds": 1381579966, - "successThreshold": -1418092595, - "failureThreshold": -1538905728 + "initialDelaySeconds": 1718241831, + "timeoutSeconds": 550615941, + "periodSeconds": 1180971695, + "successThreshold": -1971944908, + "failureThreshold": 1742259603 }, "readinessProbe": { "exec": { "command": [ - "305" + "321" ] }, "httpGet": { - "path": "306", - "port": "307", - "host": "308", - "scheme": "铿ʩȂ4ē鐭#嬀ơŸ8T", + "path": "322", + "port": -1620315711, + "host": "323", + "scheme": "ɐ扵", "httpHeaders": [ { - "name": "309", - "value": "310" + "name": "324", + "value": "325" } ] }, "tcpSocket": { - "port": "311", - "host": "312" + "port": "326", + "host": "327" }, - "initialDelaySeconds": 37514563, - "timeoutSeconds": -1871050070, - "periodSeconds": 474715842, - "successThreshold": -1620315711, - "failureThreshold": 522560228 + "initialDelaySeconds": -1358663652, + "timeoutSeconds": 1543146222, + "periodSeconds": -527306221, + "successThreshold": 2098694289, + "failureThreshold": 1150925735 + }, + "startupProbe": { + "exec": { + "command": [ + "328" + ] + }, + "httpGet": { + "path": "329", + "port": "330", + "host": "331", + "scheme": "榝$î.Ȏ蝪ʜ5遰", + "httpHeaders": [ + { + "name": "332", + "value": "333" + } + ] + }, + "tcpSocket": { + "port": -1438286448, + "host": "334" + }, + "initialDelaySeconds": 834105836, + "timeoutSeconds": -1462219068, + "periodSeconds": -370386363, + "successThreshold": 1714588921, + "failureThreshold": -1246371817 }, "lifecycle": { "postStart": { "exec": { "command": [ - "313" + "335" ] }, "httpGet": { - "path": "314", - "port": "315", - "host": "316", - "scheme": "绤fʀļ腩墺Ò媁荭g", + "path": "336", + "port": "337", + "host": "338", + "scheme": "跩aŕ翑", "httpHeaders": [ { - "name": "317", - "value": "318" + "name": "339", + "value": "340" } ] }, "tcpSocket": { - "port": "319", - "host": "320" + "port": "341", + "host": "342" } }, "preStop": { "exec": { "command": [ - "321" + "343" ] }, "httpGet": { - "path": "322", - "port": -2133054549, - "host": "323", - "scheme": "遰=E", + "path": "344", + "port": 1017803158, + "host": "345", + "scheme": "碔", "httpHeaders": [ { - "name": "324", - "value": "325" + "name": "346", + "value": "347" } ] }, "tcpSocket": { - "port": "326", - "host": "327" + "port": "348", + "host": "349" } } }, - "terminationMessagePath": "328", - "terminationMessagePolicy": "朦 wƯ貾坢'跩", - "imagePullPolicy": "簳°Ļǟi\u0026皥贸", + "terminationMessagePath": "350", + "terminationMessagePolicy": "Kƙ順\\E¦队偯J僳徥淳4揻-$ɽ丟", + "imagePullPolicy": "拉Œɥ颶妧Ö闊 鰔澝qV訆", "securityContext": { "capabilities": { "add": [ - "NKƙ順\\E¦队偯J僳徥淳4揻-$" + "ŧL²sNƗ¸gĩ餠籲磣Óƿ" ], "drop": [ - "丟×x锏ɟ4Ǒ" + "\"冓鍓贯澔 ƺ蛜6" ] }, - "privileged": true, + "privileged": false, "seLinuxOptions": { - "user": "329", - "role": "330", - "type": "331", - "level": "332" + "user": "351", + "role": "352", + "type": "353", + "level": "354" }, "windowsOptions": { - "gmsaCredentialSpecName": "333", - "gmsaCredentialSpec": "334", - "runAsUserName": "335" + "gmsaCredentialSpecName": "355", + "gmsaCredentialSpec": "356", + "runAsUserName": "357" }, - "runAsUser": 7933506142593743951, - "runAsGroup": -8521633679555431923, + "runAsUser": 4353696140684277635, + "runAsGroup": 6057650398488995896, "runAsNonRoot": true, - "readOnlyRootFilesystem": false, - "allowPrivilegeEscalation": true, - "procMount": "/»頸+SÄ蚃ɣľ)酊龨Î" + "readOnlyRootFilesystem": true, + "allowPrivilegeEscalation": false, + "procMount": "鰥Z龏´DÒȗ" }, - "stdin": true, - "stdinOnce": true, "tty": true, - "targetContainerName": "336" + "targetContainerName": "358" } ], - "restartPolicy": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə", - "terminationGracePeriodSeconds": 5620818514944490121, - "activeDeadlineSeconds": -499179336506637450, - "dnsPolicy": "ɐ鰥", + "restartPolicy": "ɘɢ鬍熖B芭花ª瘡", + "terminationGracePeriodSeconds": 2666412258966278206, + "activeDeadlineSeconds": -8715915045560617563, + "dnsPolicy": "丆", "nodeSelector": { - "337": "338" + "359": "360" }, - "serviceAccountName": "339", - "serviceAccount": "340", - "automountServiceAccountToken": true, - "nodeName": "341", - "hostNetwork": true, + "serviceAccountName": "361", + "serviceAccount": "362", + "automountServiceAccountToken": false, + "nodeName": "363", "hostPID": true, - "shareProcessNamespace": false, + "shareProcessNamespace": true, "securityContext": { "seLinuxOptions": { - "user": "342", - "role": "343", - "type": "344", - "level": "345" + "user": "364", + "role": "365", + "type": "366", + "level": "367" }, "windowsOptions": { - "gmsaCredentialSpecName": "346", - "gmsaCredentialSpec": "347", - "runAsUserName": "348" + "gmsaCredentialSpecName": "368", + "gmsaCredentialSpec": "369", + "runAsUserName": "370" }, - "runAsUser": 3634773701753283428, - "runAsGroup": -3042614092601658792, + "runAsUser": 2179199799235189619, + "runAsGroup": -779972051078659613, "runAsNonRoot": false, "supplementalGroups": [ - -2125560879532395341 + -7127205672279904050 ], - "fsGroup": -1778638259613624198, + "fsGroup": 7124276984274024394, "sysctls": [ { - "name": "349", - "value": "350" + "name": "371", + "value": "372" } ] }, "imagePullSecrets": [ { - "name": "351" + "name": "373" } ], - "hostname": "352", - "subdomain": "353", + "hostname": "374", + "subdomain": "375", "affinity": { "nodeAffinity": { "requiredDuringSchedulingIgnoredDuringExecution": { @@ -1092,19 +1171,19 @@ { "matchExpressions": [ { - "key": "354", - "operator": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻", + "key": "376", + "operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "values": [ - "355" + "377" ] } ], "matchFields": [ { - "key": "356", - "operator": "C\"6x$1s", + "key": "378", + "operator": "埮pɵ{WOŭW灬p", "values": [ - "357" + "379" ] } ] @@ -1113,23 +1192,23 @@ }, "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1292310438, + "weight": 199049889, "preference": { "matchExpressions": [ { - "key": "358", - "operator": "鋄5弢ȹ均", + "key": "380", + "operator": "擭銆jʒǚ鍰\\縑", "values": [ - "359" + "381" ] } ], "matchFields": [ { - "key": "360", - "operator": "SvEȤƏ埮p", + "key": "382", + "operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "values": [ - "361" + "383" ] } ] @@ -1142,43 +1221,43 @@ { "labelSelector": { "matchLabels": { - "o.6GA2C": "s.Nj-s" + "4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" }, "matchExpressions": [ { - "key": "A3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-p", - "operator": "DoesNotExist" + "key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", + "operator": "NotIn", + "values": [ + "z" + ] } ] }, "namespaces": [ - "368" + "390" ], - "topologyKey": "369" + "topologyKey": "391" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -531787516, + "weight": -217760519, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "1/dCv3j._.-_pP__up.2L_s-o7": "k-5___-Qq..csh-3--Z1Tvw3F" + "4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" }, "matchExpressions": [ { - "key": "0--z-o-3bz6-2/6Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.B", - "operator": "In", - "values": [ - "U1_-__.71-_-9_._X-D---k..1Q7.l" - ] + "key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "376" + "398" ], - "topologyKey": "377" + "topologyKey": "399" } } ] @@ -1188,106 +1267,109 @@ { "labelSelector": { "matchLabels": { - "4.B.__6m": "J1-1.9_.-.Ms7_tP" + "7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" }, "matchExpressions": [ { - "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v", - "operator": "NotIn", - "values": [ - "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc" - ] + "key": "QZ9p_6.C.e", + "operator": "DoesNotExist" } ] }, "namespaces": [ - "384" + "406" ], - "topologyKey": "385" + "topologyKey": "407" } ], "preferredDuringSchedulingIgnoredDuringExecution": [ { - "weight": -1139477828, + "weight": -1851436166, "podAffinityTerm": { "labelSelector": { "matchLabels": { - "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6" + "6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" }, "matchExpressions": [ { - "key": "0l_.23--_6l.-5_BZk5v3U", - "operator": "DoesNotExist" + "key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", + "operator": "NotIn", + "values": [ + "txb__-ex-_1_-ODgC_1-_V" + ] } ] }, "namespaces": [ - "392" + "414" ], - "topologyKey": "393" + "topologyKey": "415" } } ] } }, - "schedulerName": "394", + "schedulerName": "416", "tolerations": [ { - "key": "395", - "operator": "[L", - "value": "396", - "effect": "Ġ滔xvŗÑ\"虆k遚釾ʼn{朣Jɩɼ", - "tolerationSeconds": 4456040724914385859 + "key": "417", + "operator": "堺ʣ", + "value": "418", + "effect": "ŽɣB矗E¸乾", + "tolerationSeconds": -3532804738923434397 } ], "hostAliases": [ { - "ip": "397", + "ip": "419", "hostnames": [ - "398" + "420" ] } ], - "priorityClassName": "399", - "priority": -1576968453, + "priorityClassName": "421", + "priority": -1852730577, "dnsConfig": { "nameservers": [ - "400" + "422" ], "searches": [ - "401" + "423" ], "options": [ { - "name": "402", - "value": "403" + "name": "424", + "value": "425" } ] }, "readinessGates": [ { - "conditionType": "v" + "conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" } ], - "runtimeClassName": "404", + "runtimeClassName": "426", "enableServiceLinks": false, - "preemptionPolicy": "忖p様", + "preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "overhead": { - "U凮": "684" + "4'ď曕椐敛n湙": "310" }, "topologySpreadConstraints": [ { - "maxSkew": -782776982, - "topologyKey": "405", - "whenUnsatisfiable": "鈀", + "maxSkew": -150478704, + "topologyKey": "427", + "whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "labelSelector": { "matchLabels": { - "nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A": "BM.6-.Y_72-_--p7" + "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" }, "matchExpressions": [ { - "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" + "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", + "operator": "In", + "values": [ + "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" + ] } ] } @@ -1297,18 +1379,18 @@ } }, "status": { - "replicas": -106050665, - "fullyLabeledReplicas": -929473748, - "readyReplicas": -1450995995, - "availableReplicas": 740158871, - "observedGeneration": -5350227579821888386, + "replicas": -330302940, + "fullyLabeledReplicas": 138911331, + "readyReplicas": 1613009760, + "availableReplicas": -1469601144, + "observedGeneration": 6703635170896137755, "conditions": [ { - "type": "", - "status": "'ƈoIǢ龞瞯å", + "type": "ɡj瓇ɽ丿YƄZZ塖bʘ", + "status": "ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å", "lastTransitionTime": "2469-07-10T03:20:34Z", - "reason": "412", - "message": "413" + "reason": "434", + "message": "435" } ] } 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 2425604a1bc..404ea71e29a 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 e1a2bc45469..8f773b21c33 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,411 +71,447 @@ spec: selfLink: "28" uid: ʬ spec: - activeDeadlineSeconds: -499179336506637450 + activeDeadlineSeconds: -8715915045560617563 affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - preference: matchExpressions: - - key: "358" - operator: 鋄5弢ȹ均 + - key: "380" + operator: 擭銆jʒǚ鍰\縑 values: - - "359" + - "381" matchFields: - - key: "360" - operator: SvEȤƏ埮p + - key: "382" + operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ values: - - "361" - weight: -1292310438 + - "383" + weight: 199049889 requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - - key: "354" - operator: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻 + - key: "376" + operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 values: - - "355" + - "377" matchFields: - - key: "356" - operator: C"6x$1s + - key: "378" + operator: 埮pɵ{WOŭW灬p values: - - "357" + - "379" podAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0--z-o-3bz6-2/6Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.B - operator: In - values: - - U1_-__.71-_-9_._X-D---k..1Q7.l + - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 + operator: DoesNotExist matchLabels: - 1/dCv3j._.-_pP__up.2L_s-o7: k-5___-Qq..csh-3--Z1Tvw3F + 4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP namespaces: - - "376" - topologyKey: "377" - weight: -531787516 + - "398" + topologyKey: "399" + weight: -217760519 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: A3HVG93_._.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-p - operator: DoesNotExist + - key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 + operator: NotIn + values: + - z matchLabels: - o.6GA2C: s.Nj-s + 4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r namespaces: - - "368" - topologyKey: "369" + - "390" + topologyKey: "391" podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - podAffinityTerm: labelSelector: matchExpressions: - - key: 0l_.23--_6l.-5_BZk5v3U - operator: DoesNotExist + - key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D + operator: NotIn + values: + - txb__-ex-_1_-ODgC_1-_V matchLabels: - t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6 + 6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT namespaces: - - "392" - topologyKey: "393" - weight: -1139477828 + - "414" + topologyKey: "415" + weight: -1851436166 requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchExpressions: - - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v - operator: NotIn - values: - - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc + - key: QZ9p_6.C.e + operator: DoesNotExist matchLabels: - 4.B.__6m: J1-1.9_.-.Ms7_tP + 7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n namespaces: - - "384" - topologyKey: "385" - automountServiceAccountToken: true + - "406" + topologyKey: "407" + automountServiceAccountToken: false containers: - args: - - "212" + - "222" command: - - "211" + - "221" env: - - name: "219" - value: "220" + - name: "229" + value: "230" valueFrom: configMapKeyRef: - key: "226" - name: "225" + key: "236" + name: "235" optional: false fieldRef: - apiVersion: "221" - fieldPath: "222" + apiVersion: "231" + fieldPath: "232" resourceFieldRef: - containerName: "223" - divisor: "508" - resource: "224" + containerName: "233" + divisor: "901" + resource: "234" secretKeyRef: - key: "228" - name: "227" - optional: true + key: "238" + name: "237" + optional: false envFrom: - configMapRef: - name: "217" + name: "227" optional: true - prefix: "216" + prefix: "226" secretRef: - name: "218" - optional: true - image: "210" - imagePullPolicy: t莭琽§ć\ ïì + name: "228" + optional: false + image: "220" + imagePullPolicy: 擓ƖHVe熼'FD剂讼ɓȌʟni酛 lifecycle: postStart: exec: command: - - "250" + - "267" httpGet: - host: "253" + host: "269" httpHeaders: - - name: "254" - value: "255" - path: "251" - port: "252" - scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7 + - name: "270" + value: "271" + path: "268" + port: -421846800 + scheme: zvt莭琽§ tcpSocket: - host: "257" - port: "256" + host: "272" + port: -763687725 preStop: exec: command: - - "258" + - "273" httpGet: - host: "260" + host: "275" httpHeaders: - - name: "261" - value: "262" - path: "259" - port: -1675041613 - scheme: 揆ɘȌ脾嚏吐 + - name: "276" + value: "277" + path: "274" + port: -1452676801 + scheme: ȿ0矀Kʝ tcpSocket: - host: "263" - port: -194343002 + host: "279" + port: "278" livenessProbe: exec: command: - - "235" - failureThreshold: 817152661 + - "245" + failureThreshold: -1191434089 httpGet: - host: "238" + host: "248" httpHeaders: - - name: "239" - value: "240" - path: "236" - port: "237" - scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽 - initialDelaySeconds: 1591029717 - periodSeconds: 622473257 - successThreshold: -966649167 + - name: "249" + value: "250" + path: "246" + port: "247" + scheme: 賃ɪ鐊瀑Ź9ǕLLȊ + initialDelaySeconds: 1214895765 + periodSeconds: 282592353 + successThreshold: 377225334 tcpSocket: - host: "241" - port: 1096174794 - timeoutSeconds: 1255169591 - name: "209" + host: "251" + port: -26910286 + timeoutSeconds: 1181519543 + name: "219" ports: - - containerPort: -820119398 - hostIP: "215" - hostPort: 1065976533 - name: "214" - protocol: '@ùƸʋŀ樺ȃv' + - containerPort: -2079582559 + hostIP: "225" + hostPort: 1944205014 + name: "224" + protocol: K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ readinessProbe: exec: command: - - "242" - failureThreshold: 1214895765 + - "252" + failureThreshold: 1507815593 httpGet: - host: "245" + host: "255" httpHeaders: - - name: "246" - value: "247" - path: "243" - port: "244" - scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ - initialDelaySeconds: -394397948 - periodSeconds: 1505972335 - successThreshold: -26910286 + - name: "256" + value: "257" + path: "253" + port: "254" + initialDelaySeconds: -839281354 + periodSeconds: -819723498 + successThreshold: -150133456 tcpSocket: - host: "249" - port: "248" - timeoutSeconds: 2040455355 + host: "259" + port: "258" + timeoutSeconds: 2035347577 resources: limits: - 剚敍0)鈼¬麄p呝TG: "305" + 羭,铻OŤǢʭ嵔: "340" requests: - 瓶: "806" - securityContext: - allowPrivilegeEscalation: false - capabilities: - add: - - Ƙ枛牐ɺ皚|懥ƖN - drop: - - 擓ƖHVe熼'FD剂讼ɓȌʟni酛 - privileged: true - procMount: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? - readOnlyRootFilesystem: false - runAsGroup: -2879304435996142911 - runAsNonRoot: false - runAsUser: -2142888785755371163 - seLinuxOptions: - level: "268" - role: "266" - type: "267" - user: "265" - windowsOptions: - gmsaCredentialSpec: "270" - gmsaCredentialSpecName: "269" - runAsUserName: "271" - stdin: true - terminationMessagePath: "264" - terminationMessagePolicy: Ȥ藠3. - volumeDevices: - - devicePath: "234" - name: "233" - volumeMounts: - - mountPath: "230" - mountPropagation: "" - name: "229" - readOnly: true - subPath: "231" - subPathExpr: "232" - workingDir: "213" - dnsConfig: - nameservers: - - "400" - options: - - name: "402" - value: "403" - searches: - - "401" - dnsPolicy: ɐ鰥 - enableServiceLinks: false - ephemeralContainers: - - args: - - "275" - command: - - "274" - env: - - name: "282" - value: "283" - valueFrom: - configMapKeyRef: - key: "289" - name: "288" - optional: false - fieldRef: - apiVersion: "284" - fieldPath: "285" - resourceFieldRef: - containerName: "286" - divisor: "985" - resource: "287" - secretKeyRef: - key: "291" - name: "290" - optional: false - envFrom: - - configMapRef: - name: "280" - optional: true - prefix: "279" - secretRef: - name: "281" - optional: true - image: "273" - imagePullPolicy: 簳°Ļǟi&皥贸 - lifecycle: - postStart: - exec: - command: - - "313" - httpGet: - host: "316" - httpHeaders: - - name: "317" - value: "318" - path: "314" - port: "315" - scheme: 绤fʀļ腩墺Ò媁荭g - tcpSocket: - host: "320" - port: "319" - preStop: - exec: - command: - - "321" - httpGet: - host: "323" - httpHeaders: - - name: "324" - value: "325" - path: "322" - port: -2133054549 - scheme: 遰=E - tcpSocket: - host: "327" - port: "326" - livenessProbe: - exec: - command: - - "298" - failureThreshold: -1538905728 - httpGet: - host: "301" - httpHeaders: - - name: "302" - value: "303" - path: "299" - port: "300" - scheme: Ů+朷Ǝ膯ljVX1虊 - initialDelaySeconds: -1748648882 - periodSeconds: 1381579966 - successThreshold: -1418092595 - tcpSocket: - host: "304" - port: -979584143 - timeoutSeconds: -239843014 - name: "272" - ports: - - containerPort: 158280212 - hostIP: "278" - hostPort: -1740959124 - name: "277" - readinessProbe: - exec: - command: - - "305" - failureThreshold: 522560228 - httpGet: - host: "308" - httpHeaders: - - name: "309" - value: "310" - path: "306" - port: "307" - scheme: 铿ʩȂ4ē鐭#嬀ơŸ8T - initialDelaySeconds: 37514563 - periodSeconds: 474715842 - successThreshold: -1620315711 - tcpSocket: - host: "312" - port: "311" - timeoutSeconds: -1871050070 - resources: - limits: - ɖ緕ȚÍ勅跦Opwǩ: "957" - requests: - Ɔȓ蹣ɐǛv+8Ƥ熪: "951" + TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜: "755" securityContext: allowPrivilegeEscalation: true capabilities: add: - - NKƙ順\E¦队偯J僳徥淳4揻-$ + - À*f<鴒翁杙Ŧ癃8 drop: - - 丟×x锏ɟ4Ǒ - privileged: true - procMount: /»頸+SÄ蚃ɣľ)酊龨Î + - ɱJȉ罴 + privileged: false + procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅 readOnlyRootFilesystem: false - runAsGroup: -8521633679555431923 - runAsNonRoot: true - runAsUser: 7933506142593743951 + runAsGroup: -3689959065086680033 + runAsNonRoot: false + runAsUser: -2706913289057230267 seLinuxOptions: - level: "332" - role: "330" - type: "331" - user: "329" + level: "284" + role: "282" + type: "283" + user: "281" windowsOptions: - gmsaCredentialSpec: "334" - gmsaCredentialSpecName: "333" - runAsUserName: "335" - stdin: true + gmsaCredentialSpec: "286" + gmsaCredentialSpecName: "285" + runAsUserName: "287" + startupProbe: + exec: + command: + - "260" + failureThreshold: -822090785 + httpGet: + host: "262" + httpHeaders: + - name: "263" + value: "264" + path: "261" + port: 1684643131 + scheme: 飣奺Ȋ礶惇¸ + initialDelaySeconds: -161753937 + periodSeconds: 1428207963 + successThreshold: 790462391 + tcpSocket: + host: "266" + port: "265" + timeoutSeconds: -1578746609 stdinOnce: true - targetContainerName: "336" - terminationMessagePath: "328" - terminationMessagePolicy: 朦 wƯ貾坢'跩 + terminationMessagePath: "280" + terminationMessagePolicy: \p[ + volumeDevices: + - devicePath: "244" + name: "243" + volumeMounts: + - mountPath: "240" + mountPropagation: ʒ刽ʼn掏1ſ盷褎weLJèux榜 + name: "239" + subPath: "241" + subPathExpr: "242" + workingDir: "223" + dnsConfig: + nameservers: + - "422" + options: + - name: "424" + value: "425" + searches: + - "423" + dnsPolicy: 丆 + enableServiceLinks: false + ephemeralContainers: + - args: + - "291" + command: + - "290" + env: + - name: "298" + value: "299" + valueFrom: + configMapKeyRef: + key: "305" + name: "304" + optional: false + fieldRef: + apiVersion: "300" + fieldPath: "301" + resourceFieldRef: + containerName: "302" + divisor: "709" + resource: "303" + secretKeyRef: + key: "307" + name: "306" + optional: false + envFrom: + - configMapRef: + name: "296" + optional: true + prefix: "295" + secretRef: + name: "297" + optional: true + image: "289" + imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆 + lifecycle: + postStart: + exec: + command: + - "335" + httpGet: + host: "338" + httpHeaders: + - name: "339" + value: "340" + path: "336" + port: "337" + scheme: 跩aŕ翑 + tcpSocket: + host: "342" + port: "341" + preStop: + exec: + command: + - "343" + httpGet: + host: "345" + httpHeaders: + - name: "346" + value: "347" + path: "344" + port: 1017803158 + scheme: 碔 + tcpSocket: + host: "349" + port: "348" + livenessProbe: + exec: + command: + - "314" + failureThreshold: 1742259603 + httpGet: + host: "317" + httpHeaders: + - name: "318" + value: "319" + path: "315" + port: "316" + scheme: 屡ʁ + initialDelaySeconds: 1718241831 + periodSeconds: 1180971695 + successThreshold: -1971944908 + tcpSocket: + host: "320" + port: -1554559634 + timeoutSeconds: 550615941 + name: "288" + ports: + - containerPort: 1330271338 + hostIP: "294" + hostPort: 1853396726 + name: "293" + protocol: 逴 + readinessProbe: + exec: + command: + - "321" + failureThreshold: 1150925735 + httpGet: + host: "323" + httpHeaders: + - name: "324" + value: "325" + path: "322" + port: -1620315711 + scheme: ɐ扵 + initialDelaySeconds: -1358663652 + periodSeconds: -527306221 + successThreshold: 2098694289 + tcpSocket: + host: "327" + port: "326" + timeoutSeconds: 1543146222 + resources: + limits: + 颐o: "230" + requests: + '[+扴ȨŮ+朷Ǝ膯ljV': "728" + securityContext: + allowPrivilegeEscalation: false + capabilities: + add: + - ŧL²sNƗ¸gĩ餠籲磣Óƿ + drop: + - '"冓鍓贯澔 ƺ蛜6' + privileged: false + procMount: 鰥Z龏´DÒȗ + readOnlyRootFilesystem: true + runAsGroup: 6057650398488995896 + runAsNonRoot: true + runAsUser: 4353696140684277635 + seLinuxOptions: + level: "354" + role: "352" + type: "353" + user: "351" + windowsOptions: + gmsaCredentialSpec: "356" + gmsaCredentialSpecName: "355" + runAsUserName: "357" + startupProbe: + exec: + command: + - "328" + failureThreshold: -1246371817 + httpGet: + host: "331" + httpHeaders: + - name: "332" + value: "333" + path: "329" + port: "330" + scheme: 榝$î.Ȏ蝪ʜ5遰 + initialDelaySeconds: 834105836 + periodSeconds: -370386363 + successThreshold: 1714588921 + tcpSocket: + host: "334" + port: -1438286448 + timeoutSeconds: -1462219068 + targetContainerName: "358" + terminationMessagePath: "350" + terminationMessagePolicy: Kƙ順\E¦队偯J僳徥淳4揻-$ɽ丟 tty: true volumeDevices: - - devicePath: "297" - name: "296" + - devicePath: "313" + name: "312" volumeMounts: - - mountPath: "293" - mountPropagation: 啛更 - name: "292" - subPath: "294" - subPathExpr: "295" - workingDir: "276" + - mountPath: "309" + mountPropagation: ŕ-Ɂ圯W:ĸ輦唊#v铿 + name: "308" + subPath: "310" + subPathExpr: "311" + workingDir: "292" hostAliases: - hostnames: - - "398" - ip: "397" - hostNetwork: true + - "420" + ip: "419" hostPID: true - hostname: "352" + hostname: "374" imagePullSecrets: - - name: "351" + - name: "373" initContainers: - args: - "150" @@ -509,38 +545,37 @@ spec: name: "156" optional: false image: "148" - imagePullPolicy: <é瞾 + imagePullPolicy: k_瀹鞎sn芞QÄȻ lifecycle: postStart: exec: command: - - "188" + - "196" httpGet: - host: "191" + host: "198" httpHeaders: - - name: "192" - value: "193" - path: "189" - port: "190" - scheme: w垁鷌辪虽U珝Żwʮ馜üNșƶ4ĩ + - name: "199" + value: "200" + path: "197" + port: -1327537699 tcpSocket: - host: "194" - port: -337353552 + host: "202" + port: "201" preStop: exec: command: - - "195" + - "203" httpGet: - host: "197" + host: "206" httpHeaders: - - name: "198" - value: "199" - path: "196" - port: -374922344 - scheme: 緄Ú|dk_瀹鞎sn芞 + - name: "207" + value: "208" + path: "204" + port: "205" + scheme: ĉş蝿ɖȃ賲鐅臬 tcpSocket: - host: "200" - port: 912103005 + host: "210" + port: "209" livenessProbe: exec: command: @@ -594,30 +629,50 @@ spec: requests: á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ: "372" securityContext: - allowPrivilegeEscalation: true + allowPrivilegeEscalation: false capabilities: add: - - Ŭ + - '?' drop: - - ǙÄr蛏豈 - privileged: true - procMount: ȉ彂 - readOnlyRootFilesystem: true - runAsGroup: -6457174729896610090 + - 峧Y栲茇竛吲蚛隖 + privileged: false + procMount: ʙ嫙& + readOnlyRootFilesystem: false + runAsGroup: -7286288718856494813 runAsNonRoot: true - runAsUser: -3447077152667955293 + runAsUser: 7312518131318481396 seLinuxOptions: - level: "205" - role: "203" - type: "204" - user: "202" + level: "215" + role: "213" + type: "214" + user: "212" windowsOptions: - gmsaCredentialSpec: "207" - gmsaCredentialSpecName: "206" - runAsUserName: "208" + gmsaCredentialSpec: "217" + gmsaCredentialSpecName: "216" + runAsUserName: "218" + startupProbe: + exec: + command: + - "188" + failureThreshold: 1133369651 + httpGet: + host: "191" + httpHeaders: + - name: "192" + value: "193" + path: "189" + port: "190" + scheme: 閝ȝ + initialDelaySeconds: -2142865739 + periodSeconds: 1434408532 + successThreshold: -566408554 + tcpSocket: + host: "195" + port: "194" + timeoutSeconds: -1179067190 + stdin: true stdinOnce: true - terminationMessagePath: "201" - terminationMessagePolicy: Ȋ+?ƭ峧Y栲茇竛吲蚛 + terminationMessagePath: "211" volumeDevices: - devicePath: "172" name: "171" @@ -629,60 +684,61 @@ spec: subPath: "169" subPathExpr: "170" workingDir: "151" - nodeName: "341" + nodeName: "363" nodeSelector: - "337": "338" + "359": "360" overhead: - U凮: "684" - preemptionPolicy: 忖p様 - priority: -1576968453 - priorityClassName: "399" + 4'ď曕椐敛n湙: "310" + preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' + priority: -1852730577 + priorityClassName: "421" readinessGates: - - conditionType: v - restartPolicy: ȱğ_<ǬëJ橈'琕鶫:顇ə - runtimeClassName: "404" - schedulerName: "394" + - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 + restartPolicy: ɘɢ鬍熖B芭花ª瘡 + runtimeClassName: "426" + schedulerName: "416" securityContext: - fsGroup: -1778638259613624198 - runAsGroup: -3042614092601658792 + fsGroup: 7124276984274024394 + runAsGroup: -779972051078659613 runAsNonRoot: false - runAsUser: 3634773701753283428 + runAsUser: 2179199799235189619 seLinuxOptions: - level: "345" - role: "343" - type: "344" - user: "342" + level: "367" + role: "365" + type: "366" + user: "364" supplementalGroups: - - -2125560879532395341 + - -7127205672279904050 sysctls: - - name: "349" - value: "350" + - name: "371" + value: "372" windowsOptions: - gmsaCredentialSpec: "347" - gmsaCredentialSpecName: "346" - runAsUserName: "348" - serviceAccount: "340" - serviceAccountName: "339" - shareProcessNamespace: false - subdomain: "353" - terminationGracePeriodSeconds: 5620818514944490121 + gmsaCredentialSpec: "369" + gmsaCredentialSpecName: "368" + runAsUserName: "370" + serviceAccount: "362" + serviceAccountName: "361" + shareProcessNamespace: true + subdomain: "375" + terminationGracePeriodSeconds: 2666412258966278206 tolerations: - - effect: Ġ滔xvŗÑ"虆k遚釾ʼn{朣Jɩɼ - key: "395" - operator: '[L' - tolerationSeconds: 4456040724914385859 - value: "396" + - effect: ŽɣB矗E¸乾 + key: "417" + operator: 堺ʣ + tolerationSeconds: -3532804738923434397 + value: "418" topologySpreadConstraints: - labelSelector: matchExpressions: - - 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 + - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W + operator: In + values: + - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ matchLabels: - ? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/kCpS__.39g_.--_-_ve5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A - : BM.6-.Y_72-_--p7 - maxSkew: -782776982 - topologyKey: "405" - whenUnsatisfiable: 鈀 + p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU + maxSkew: -150478704 + topologyKey: "427" + whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ volumes: - awsElasticBlockStore: fsType: "47" @@ -882,14 +938,14 @@ spec: storagePolicyName: "103" volumePath: "101" status: - availableReplicas: 740158871 + availableReplicas: -1469601144 conditions: - lastTransitionTime: "2469-07-10T03:20:34Z" - message: "413" - reason: "412" - status: '''ƈoIǢ龞瞯å' - type: "" - fullyLabeledReplicas: -929473748 - observedGeneration: -5350227579821888386 - readyReplicas: -1450995995 - replicas: -106050665 + message: "435" + reason: "434" + status: ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å + type: ɡj瓇ɽ丿YƄZZ塖bʘ + fullyLabeledReplicas: 138911331 + observedGeneration: 6703635170896137755 + readyReplicas: 1613009760 + replicas: -330302940 diff --git a/test/e2e_node/BUILD b/test/e2e_node/BUILD index fe04b3a16cd..902d1de35fe 100644 --- a/test/e2e_node/BUILD +++ b/test/e2e_node/BUILD @@ -115,6 +115,7 @@ go_test( "restart_test.go", "runtime_conformance_test.go", "security_context_test.go", + "startup_probe_test.go", "summary_test.go", "system_node_critical_test.go", "volume_manager_test.go",