startupProbe: make update

This commit is contained in:
Matthias Bertschy
2019-08-29 10:33:48 +02:00
parent 1a08ea5984
commit a042a4b0ee
87 changed files with 21240 additions and 17658 deletions

View File

@@ -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"
},

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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)

View File

@@ -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 {

View File

@@ -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)

View File

@@ -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 {

View File

@@ -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",
],

File diff suppressed because it is too large Load Diff

View File

@@ -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://<container_id>'.
// +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;

View File

@@ -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://<container_id>'.",
"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.",
}

View File

@@ -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)

File diff suppressed because it is too large Load Diff

View File

@@ -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: "345"
httpHeaders:
- name: "346"
value: "347"
path: "344"
port: -518160270
scheme: ɔ幩še
tcpSocket:
host: "348"
port: 1956567721
livenessProbe:
exec:
command:
- "313"
failureThreshold: 472742933
httpGet:
host: "316"
httpHeaders:
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: 冓鍓贯
initialDelaySeconds: 1290950685
periodSeconds: 1058960779
successThreshold: -2133441986
tcpSocket:
host: "320"
port: "319"
timeoutSeconds: 12533543
name: "287"
ports:
- containerPort: -1296830577
hostIP: "293"
hostPort: 1313273370
name: "292"
readinessProbe:
exec:
command:
- "321"
failureThreshold: 620822482
httpGet:
host: "323"
httpHeaders:
- name: "324"
value: "325"
path: "321"
port: "322"
scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²
path: "322"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
tcpSocket:
host: "326"
port: -1187301925
livenessProbe:
exec:
command:
- "297"
failureThreshold: 2030115750
httpGet:
host: "300"
httpHeaders:
- name: "301"
value: "302"
path: "298"
port: "299"
scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉
initialDelaySeconds: 2066735093
periodSeconds: -940334911
successThreshold: -341287812
tcpSocket:
host: "304"
port: "303"
timeoutSeconds: -190183379
name: "271"
ports:
- containerPort: -379385405
hostIP: "277"
hostPort: 2058122084
name: "276"
protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f'
readinessProbe:
exec:
command:
- "305"
failureThreshold: -385597677
httpGet:
host: "308"
httpHeaders:
- name: "309"
value: "310"
path: "306"
port: "307"
scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
initialDelaySeconds: -1971421078
periodSeconds: -1730959016
successThreshold: 1272940694
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

File diff suppressed because it is too large Load Diff

View File

@@ -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"
ports:
- containerPort: 1923334396
hostIP: "214"
hostPort: 474119379
host: "244"
port: 391562775
timeoutSeconds: -832805508
name: "213"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ
ports:
- 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

File diff suppressed because it is too large Load Diff

View File

@@ -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"
TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜: "755"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- Ƙ枛牐ɺ皚|懥ƖN
- À*f<鴒翁杙Ŧ癃8
drop:
- 擓ƖHVe熼'FD剂讼ɓȌʟni酛
privileged: true
procMount: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?
- ɱJȉ罴
privileged: false
procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅
readOnlyRootFilesystem: false
runAsGroup: -2879304435996142911
runAsGroup: -3689959065086680033
runAsNonRoot: false
runAsUser: -2142888785755371163
runAsUser: -2706913289057230267
seLinuxOptions:
level: "268"
role: "266"
type: "267"
user: "265"
level: "284"
role: "282"
type: "283"
user: "281"
windowsOptions:
gmsaCredentialSpec: "270"
gmsaCredentialSpecName: "269"
runAsUserName: "271"
stdin: true
terminationMessagePath: "264"
terminationMessagePolicy: Ȥ藠3.
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
terminationMessagePath: "280"
terminationMessagePolicy: \p[
volumeDevices:
- devicePath: "234"
name: "233"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "230"
mountPropagation: ""
name: "229"
readOnly: true
subPath: "231"
subPathExpr: "232"
workingDir: "213"
- mountPath: "240"
mountPropagation: ʒ刽ʼn掏1ſ盷褎weLJèux榜
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "400"
- "422"
options:
- name: "402"
value: "403"
- name: "424"
value: "425"
searches:
- "401"
dnsPolicy: ɐ鰥
- "423"
dnsPolicy:
enableServiceLinks: false
ephemeralContainers:
- args:
- "275"
- "291"
command:
- "274"
- "290"
env:
- name: "282"
value: "283"
- name: "298"
value: "299"
valueFrom:
configMapKeyRef:
key: "289"
name: "288"
key: "305"
name: "304"
optional: false
fieldRef:
apiVersion: "284"
fieldPath: "285"
apiVersion: "300"
fieldPath: "301"
resourceFieldRef:
containerName: "286"
divisor: "985"
resource: "287"
containerName: "302"
divisor: "709"
resource: "303"
secretKeyRef:
key: "291"
name: "290"
key: "307"
name: "306"
optional: false
envFrom:
- configMapRef:
name: "280"
name: "296"
optional: true
prefix: "279"
prefix: "295"
secretRef:
name: "281"
name: "297"
optional: true
image: "273"
imagePullPolicy: 簳°Ļǟi&皥贸
image: "289"
imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆
lifecycle:
postStart:
exec:
command:
- "313"
- "335"
httpGet:
host: "316"
host: "338"
httpHeaders:
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: 绤fʀļ腩墺Ò媁荭g
- name: "339"
value: "340"
path: "336"
port: "337"
scheme: 跩aŕ翑
tcpSocket:
host: "320"
port: "319"
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: -2133054549
scheme: 遰=E
port: -1620315711
scheme: ɐ扵
initialDelaySeconds: -1358663652
periodSeconds: -527306221
successThreshold: 2098694289
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
timeoutSeconds: 1543146222
resources:
limits:
ɖ緕ȚÍ勅跦Opwǩ: "957"
颐o: "230"
requests:
Ɔȓ蹣ɐǛv+8Ƥ熪: "951"
'[+扴ȨŮ+朷Ǝ膯ljV': "728"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- NKƙ順\E¦队偯J僳徥淳4揻-$
- ŧL²sNƗ¸gĩ餠籲磣Óƿ
drop:
- ×x锏ɟ4Ǒ
privileged: true
procMount: /»頸+SÄ蚃ɣľ)酊龨Î
readOnlyRootFilesystem: false
runAsGroup: -8521633679555431923
- '"冓鍓贯澔 ƺ蛜6'
privileged: false
procMount: 鰥Z龏´DÒȗ
readOnlyRootFilesystem: true
runAsGroup: 6057650398488995896
runAsNonRoot: true
runAsUser: 7933506142593743951
runAsUser: 4353696140684277635
seLinuxOptions:
level: "332"
role: "330"
type: "331"
user: "329"
level: "354"
role: "352"
type: "353"
user: "351"
windowsOptions:
gmsaCredentialSpec: "334"
gmsaCredentialSpecName: "333"
runAsUserName: "335"
stdin: true
stdinOnce: true
targetContainerName: "336"
terminationMessagePath: "328"
terminationMessagePolicy: 朦 wƯ貾坢'跩
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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -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"
ports:
- containerPort: 1923334396
hostIP: "214"
hostPort: 474119379
host: "244"
port: 391562775
timeoutSeconds: -832805508
name: "213"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ
ports:
- 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:
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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -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: "345"
httpHeaders:
- name: "346"
value: "347"
path: "344"
port: -518160270
scheme: ɔ幩še
tcpSocket:
host: "348"
port: 1956567721
livenessProbe:
exec:
command:
- "313"
failureThreshold: 472742933
httpGet:
host: "316"
httpHeaders:
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: 冓鍓贯
initialDelaySeconds: 1290950685
periodSeconds: 1058960779
successThreshold: -2133441986
tcpSocket:
host: "320"
port: "319"
timeoutSeconds: 12533543
name: "287"
ports:
- containerPort: -1296830577
hostIP: "293"
hostPort: 1313273370
name: "292"
readinessProbe:
exec:
command:
- "321"
failureThreshold: 620822482
httpGet:
host: "323"
httpHeaders:
- name: "324"
value: "325"
path: "321"
port: "322"
scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²
path: "322"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
tcpSocket:
host: "326"
port: -1187301925
livenessProbe:
exec:
command:
- "297"
failureThreshold: 2030115750
httpGet:
host: "300"
httpHeaders:
- name: "301"
value: "302"
path: "298"
port: "299"
scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉
initialDelaySeconds: 2066735093
periodSeconds: -940334911
successThreshold: -341287812
tcpSocket:
host: "304"
port: "303"
timeoutSeconds: -190183379
name: "271"
ports:
- containerPort: -379385405
hostIP: "277"
hostPort: 2058122084
name: "276"
protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f'
readinessProbe:
exec:
command:
- "305"
failureThreshold: -385597677
httpGet:
host: "308"
httpHeaders:
- name: "309"
value: "310"
path: "306"
port: "307"
scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
initialDelaySeconds: -1971421078
periodSeconds: -1730959016
successThreshold: 1272940694
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

File diff suppressed because it is too large Load Diff

View File

@@ -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"
ports:
- containerPort: 1923334396
hostIP: "214"
hostPort: 474119379
host: "244"
port: 391562775
timeoutSeconds: -832805508
name: "213"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ
ports:
- 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

File diff suppressed because it is too large Load Diff

View File

@@ -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"
TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜: "755"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- Ƙ枛牐ɺ皚|懥ƖN
- À*f<鴒翁杙Ŧ癃8
drop:
- 擓ƖHVe熼'FD剂讼ɓȌʟni酛
privileged: true
procMount: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?
- ɱJȉ罴
privileged: false
procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅
readOnlyRootFilesystem: false
runAsGroup: -2879304435996142911
runAsGroup: -3689959065086680033
runAsNonRoot: false
runAsUser: -2142888785755371163
runAsUser: -2706913289057230267
seLinuxOptions:
level: "268"
role: "266"
type: "267"
user: "265"
level: "284"
role: "282"
type: "283"
user: "281"
windowsOptions:
gmsaCredentialSpec: "270"
gmsaCredentialSpecName: "269"
runAsUserName: "271"
stdin: true
terminationMessagePath: "264"
terminationMessagePolicy: Ȥ藠3.
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
terminationMessagePath: "280"
terminationMessagePolicy: \p[
volumeDevices:
- devicePath: "234"
name: "233"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "230"
mountPropagation: ""
name: "229"
readOnly: true
subPath: "231"
subPathExpr: "232"
workingDir: "213"
- mountPath: "240"
mountPropagation: ʒ刽ʼn掏1ſ盷褎weLJèux榜
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "400"
- "422"
options:
- name: "402"
value: "403"
- name: "424"
value: "425"
searches:
- "401"
dnsPolicy: ɐ鰥
- "423"
dnsPolicy:
enableServiceLinks: false
ephemeralContainers:
- args:
- "275"
- "291"
command:
- "274"
- "290"
env:
- name: "282"
value: "283"
- name: "298"
value: "299"
valueFrom:
configMapKeyRef:
key: "289"
name: "288"
key: "305"
name: "304"
optional: false
fieldRef:
apiVersion: "284"
fieldPath: "285"
apiVersion: "300"
fieldPath: "301"
resourceFieldRef:
containerName: "286"
divisor: "985"
resource: "287"
containerName: "302"
divisor: "709"
resource: "303"
secretKeyRef:
key: "291"
name: "290"
key: "307"
name: "306"
optional: false
envFrom:
- configMapRef:
name: "280"
name: "296"
optional: true
prefix: "279"
prefix: "295"
secretRef:
name: "281"
name: "297"
optional: true
image: "273"
imagePullPolicy: 簳°Ļǟi&皥贸
image: "289"
imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆
lifecycle:
postStart:
exec:
command:
- "313"
- "335"
httpGet:
host: "316"
host: "338"
httpHeaders:
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: 绤fʀļ腩墺Ò媁荭g
- name: "339"
value: "340"
path: "336"
port: "337"
scheme: 跩aŕ翑
tcpSocket:
host: "320"
port: "319"
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: -2133054549
scheme: 遰=E
port: -1620315711
scheme: ɐ扵
initialDelaySeconds: -1358663652
periodSeconds: -527306221
successThreshold: 2098694289
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
timeoutSeconds: 1543146222
resources:
limits:
ɖ緕ȚÍ勅跦Opwǩ: "957"
颐o: "230"
requests:
Ɔȓ蹣ɐǛv+8Ƥ熪: "951"
'[+扴ȨŮ+朷Ǝ膯ljV': "728"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- NKƙ順\E¦队偯J僳徥淳4揻-$
- ŧL²sNƗ¸gĩ餠籲磣Óƿ
drop:
- ×x锏ɟ4Ǒ
privileged: true
procMount: /»頸+SÄ蚃ɣľ)酊龨Î
readOnlyRootFilesystem: false
runAsGroup: -8521633679555431923
- '"冓鍓贯澔 ƺ蛜6'
privileged: false
procMount: 鰥Z龏´DÒȗ
readOnlyRootFilesystem: true
runAsGroup: 6057650398488995896
runAsNonRoot: true
runAsUser: 7933506142593743951
runAsUser: 4353696140684277635
seLinuxOptions:
level: "332"
role: "330"
type: "331"
user: "329"
level: "354"
role: "352"
type: "353"
user: "351"
windowsOptions:
gmsaCredentialSpec: "334"
gmsaCredentialSpecName: "333"
runAsUserName: "335"
stdin: true
stdinOnce: true
targetContainerName: "336"
terminationMessagePath: "328"
terminationMessagePolicy: 朦 wƯ貾坢'跩
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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -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
envFrom:
- configMapRef:
name: "220"
optional: false
prefix: "219"
secretRef:
name: "221"
optional: true
image: "213"
imagePullPolicy: 捏ĨF
lifecycle:
postStart:
exec:
command:
- "253"
httpGet:
host: "256"
httpHeaders:
- name: "257"
value: "258"
path: "254"
port: "255"
scheme: 嫙&蒒5靇C'ɵK.Q貇
tcpSocket:
host: "259"
port: 1428858742
preStop:
exec:
command:
- "260"
httpGet:
host: "263"
httpHeaders:
- name: "264"
value: "265"
path: "261"
port: "262"
scheme: dz@ùƸʋŀ樺ȃv渟7¤7djƯĖ漘Z
tcpSocket:
host: "267"
port: "266"
livenessProbe:
exec:
command:
- "238"
failureThreshold: 571942197
httpGet:
host: "241"
httpHeaders:
- name: "242"
value: "243"
path: "239"
port: "240"
scheme: 賲鐅臬dH巧
initialDelaySeconds: -1703360754
periodSeconds: -1053603859
successThreshold: 1471432155
tcpSocket:
host: "244"
port: 559781916
timeoutSeconds: -1569009987
name: "212"
ports:
- containerPort: 1569606284
hostIP: "218"
hostPort: -766145437
name: "217"
protocol: ƞ究:hoĂɋ瀐<ɉ
readinessProbe:
exec:
command:
- "245"
failureThreshold: -2093767566
httpGet:
host: "248"
httpHeaders:
- name: "249"
value: "250"
path: "246"
port: "247"
scheme: +?ƭ峧Y栲茇竛吲蚛隖
initialDelaySeconds: -1839582103
periodSeconds: -1696471293
successThreshold: 1545364977
tcpSocket:
host: "252"
port: "251"
timeoutSeconds: 1054302708
resources:
limits:
苆ǮńMǰ溟ɴ扵閝ȝ鐵儣廡: "281"
requests:
珝Żwʮ馜ü: "513"
securityContext:
allowPrivilegeEscalation: true
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"
key: "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"
name: "226"
optional: false
prefix: "283"
prefix: "225"
secretRef:
name: "285"
name: "227"
optional: false
image: "277"
imagePullPolicy: 岼昕ĬÇó藢xɮĵȑ6L*Z
image: "219"
imagePullPolicy: Ƿ裚瓶釆Ɗ+j忊
lifecycle:
postStart:
exec:
command:
- "314"
- "264"
httpGet:
host: "316"
host: "266"
httpHeaders:
- name: "317"
value: "318"
path: "315"
port: 1791615594
scheme: Ƥ熪军g>郵[+扴
- name: "267"
value: "268"
path: "265"
port: 1923650413
scheme: I粛E煹ǐƲE'iþŹʣy
tcpSocket:
host: "320"
port: "319"
host: "270"
port: "269"
preStop:
exec:
command:
- "321"
- "271"
httpGet:
host: "324"
host: "274"
httpHeaders:
- name: "325"
value: "326"
path: "322"
port: "323"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
- name: "275"
value: "276"
path: "272"
port: "273"
scheme: 敍0)鈼¬麄
tcpSocket:
host: "328"
port: "327"
host: "277"
port: -648954478
livenessProbe:
exec:
command:
- "302"
failureThreshold: -361442565
- "244"
failureThreshold: -522126070
httpGet:
host: "304"
host: "246"
httpHeaders:
- name: "305"
value: "306"
path: "303"
port: 896430536
scheme: 罴ņ螡źȰ
initialDelaySeconds: 627713162
periodSeconds: -1740959124
successThreshold: 158280212
- name: "247"
value: "248"
path: "245"
port: 1434408532
scheme: '`劳&¼傭Ȟ1酃=6}ɡŇƉ立h'
initialDelaySeconds: -1628697284
periodSeconds: 354496320
successThreshold: -418887496
tcpSocket:
host: "307"
port: 513341278
timeoutSeconds: 1255312175
name: "276"
host: "250"
port: "249"
timeoutSeconds: 843845736
name: "218"
ports:
- containerPort: -819723498
hostIP: "282"
hostPort: 2035347577
name: "281"
protocol: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐'
- containerPort: -1373541406
hostIP: "224"
hostPort: -1477511050
name: "223"
protocol: 栍dʪīT捘ɍi縱ù墴1Rƥ贫d飼
readinessProbe:
exec:
command:
- "308"
failureThreshold: -36782737
- "251"
failureThreshold: -636855511
httpGet:
host: "310"
host: "253"
httpHeaders:
- name: "311"
value: "312"
path: "309"
port: -2013568185
scheme: '#yV''WKw(ğ儴Ůĺ}'
initialDelaySeconds: -1244623134
periodSeconds: -398297599
successThreshold: 873056500
- name: "254"
value: "255"
path: "252"
port: -1569009987
scheme: ɢǵʭd鲡:贅wE@Ȗs«öʮĀ<
initialDelaySeconds: -1565157256
periodSeconds: -1385586997
successThreshold: 460997133
tcpSocket:
host: "313"
port: -20130017
timeoutSeconds: -1334110502
host: "256"
port: 1702578303
timeoutSeconds: -1113628381
resources:
limits:
悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p: "604"
+ņ榱*Gưoɘ檲: "340"
requests:
擓ƖHVe熼'FD剂讼ɓȌʟni酛: "499"
ʔŊƞ究:hoĂɋ瀐<ɉ湨H=å睫}堇: "690"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
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

File diff suppressed because it is too large Load Diff

View File

@@ -31,7 +31,7 @@ metadata:
uid: "7"
spec:
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
failedJobsHistoryLimit: -1915115520
failedJobsHistoryLimit: 1560811691
jobTemplate:
metadata:
annotations:
@@ -105,412 +105,448 @@ spec:
selfLink: "46"
uid: A
spec:
activeDeadlineSeconds: 1968932441807931700
activeDeadlineSeconds: -8715915045560617563
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- 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"
weight: 902978249
- "396"
weight: 199049889
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- 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"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81
operator: NotIn
values:
- MXOnf_ZN.-_--r.E__-8
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2
operator: DoesNotExist
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
namespaces:
- "392"
topologyKey: "393"
weight: -3478003
- "411"
topologyKey: "412"
weight: -217760519
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
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
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
namespaces:
- "384"
topologyKey: "385"
- "403"
topologyKey: "404"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
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
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
namespaces:
- "408"
topologyKey: "409"
weight: -1078366610
- "427"
topologyKey: "428"
weight: -1851436166
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d
operator: In
values:
- dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX
- key: QZ9p_6.C.e
operator: DoesNotExist
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
namespaces:
- "400"
topologyKey: "401"
- "419"
topologyKey: "420"
automountServiceAccountToken: false
containers:
- args:
- "231"
- "237"
command:
- "230"
- "236"
env:
- name: "238"
value: "239"
- name: "244"
value: "245"
valueFrom:
configMapKeyRef:
key: "245"
name: "244"
key: "251"
name: "250"
optional: false
fieldRef:
apiVersion: "240"
fieldPath: "241"
apiVersion: "246"
fieldPath: "247"
resourceFieldRef:
containerName: "242"
divisor: "405"
resource: "243"
containerName: "248"
divisor: "109"
resource: "249"
secretKeyRef:
key: "247"
name: "246"
optional: false
envFrom:
- configMapRef:
name: "236"
optional: true
prefix: "235"
secretRef:
name: "237"
optional: false
image: "229"
lifecycle:
postStart:
exec:
command:
- "268"
httpGet:
host: "270"
httpHeaders:
- name: "271"
value: "272"
path: "269"
port: 1385030458
scheme: Ao/樝fw[Řż丩ŽoǠŻ
tcpSocket:
host: "274"
port: "273"
preStop:
exec:
command:
- "275"
httpGet:
host: "277"
httpHeaders:
- name: "278"
value: "279"
path: "276"
port: -1589303862
scheme: ľǎɳ,ǿ飏騀呣ǎ
tcpSocket:
host: "281"
port: "280"
livenessProbe:
exec:
command:
- "254"
failureThreshold: -1131820775
httpGet:
host: "257"
httpHeaders:
- name: "258"
value: "259"
path: "255"
port: "256"
scheme: Źʣy豎@ɀ羭,铻O
initialDelaySeconds: 1424053148
periodSeconds: 859639931
successThreshold: -1663149700
tcpSocket:
host: "261"
port: "260"
timeoutSeconds: 747521320
name: "228"
ports:
- containerPort: -1569009987
hostIP: "234"
hostPort: -1703360754
name: "233"
protocol: ɢǵʭd鲡:贅wE@Ȗs«öʮĀ<
readinessProbe:
exec:
command:
- "262"
failureThreshold: -233378149
httpGet:
host: "264"
httpHeaders:
- name: "265"
value: "266"
path: "263"
port: -1710454086
scheme: mɩC[ó瓧
initialDelaySeconds: 915577348
periodSeconds: -1386967282
successThreshold: -2030286732
tcpSocket:
host: "267"
port: -122979840
timeoutSeconds: -590798124
resources:
limits:
豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷: "948"
requests:
"": "83"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄
drop:
- rʤî萨zvt莭琽§ć\ ïì
privileged: false
procMount: ƖN粕擓Ɩ
readOnlyRootFilesystem: false
runAsGroup: 3195567116206635190
runAsNonRoot: true
runAsUser: -5738810661106213940
seLinuxOptions:
level: "286"
role: "284"
type: "285"
user: "283"
windowsOptions:
gmsaCredentialSpec: "288"
gmsaCredentialSpecName: "287"
runAsUserName: "289"
stdin: true
terminationMessagePath: "282"
terminationMessagePolicy: 萭旿@掇lNdǂ>5姣
tty: true
volumeDevices:
- devicePath: "253"
key: "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"
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: ¿
- 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"
subPath: "312"
subPathExpr: "313"
workingDir: "294"
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

File diff suppressed because it is too large Load Diff

View File

@@ -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
key: "248"
name: "247"
optional: true
envFrom:
- configMapRef:
name: "232"
name: "237"
optional: true
prefix: "231"
prefix: "236"
secretRef:
name: "233"
optional: true
image: "225"
imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}'
name: "238"
optional: false
image: "230"
imagePullPolicy: Ǜv+8Ƥ熪军g>郵[+扴ȨŮ+
lifecycle:
postStart:
exec:
command:
- "264"
- "275"
httpGet:
host: "266"
host: "277"
httpHeaders:
- name: "267"
value: "268"
path: "265"
port: -498930176
scheme: ' R§耶Ff'
- name: "278"
value: "279"
path: "276"
port: 630004123
scheme: ɾģ毋Ó6dz娝嘚
tcpSocket:
host: "270"
port: "269"
host: "280"
port: -1213051101
preStop:
exec:
command:
- "271"
- "281"
httpGet:
host: "273"
host: "283"
httpHeaders:
- name: "274"
value: "275"
path: "272"
port: -331283026
scheme: ȉ
- name: "284"
value: "285"
path: "282"
port: -1905643191
scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
tcpSocket:
host: "276"
port: 714088955
host: "287"
port: "286"
livenessProbe:
exec:
command:
- "250"
failureThreshold: 10098903
- "255"
failureThreshold: -1171167638
httpGet:
host: "252"
host: "257"
httpHeaders:
- name: "253"
value: "254"
path: "251"
port: -1821078703
scheme: 萨zvt
initialDelaySeconds: -503805926
periodSeconds: -763687725
successThreshold: -246563990
- name: "258"
value: "259"
path: "256"
port: -1180080716
scheme: Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮
initialDelaySeconds: 1524276356
periodSeconds: -1561418761
successThreshold: -1452676801
tcpSocket:
host: "255"
port: 1182477686
timeoutSeconds: 77312514
name: "224"
ports:
- containerPort: 1024248645
hostIP: "230"
hostPort: -321513994
host: "260"
port: -161485752
timeoutSeconds: -521487971
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"
optional: true
envFrom:
- configMapRef:
name: "293"
optional: true
prefix: "292"
secretRef:
name: "294"
optional: true
image: "286"
imagePullPolicy: 冓鍓贯
lifecycle:
postStart:
exec:
command:
- "325"
httpGet:
host: "328"
httpHeaders:
- name: "329"
value: "330"
path: "326"
port: "327"
scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄'
tcpSocket:
host: "332"
port: "331"
preStop:
exec:
command:
- "333"
httpGet:
host: "336"
httpHeaders:
- name: "337"
value: "338"
path: "334"
port: "335"
scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸
tcpSocket:
host: "339"
port: 1315054653
livenessProbe:
exec:
command:
- "311"
failureThreshold: 1941923625
httpGet:
host: "314"
httpHeaders:
- name: "315"
value: "316"
path: "312"
port: "313"
scheme: 忊|E剒
initialDelaySeconds: -1313320434
periodSeconds: 465972736
successThreshold: -1784617397
tcpSocket:
host: "317"
port: 1004325340
timeoutSeconds: 14304392
name: "285"
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:
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

File diff suppressed because it is too large Load Diff

View File

@@ -31,7 +31,7 @@ metadata:
uid: "7"
spec:
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
failedJobsHistoryLimit: -1915115520
failedJobsHistoryLimit: 1560811691
jobTemplate:
metadata:
annotations:
@@ -105,412 +105,448 @@ spec:
selfLink: "46"
uid: A
spec:
activeDeadlineSeconds: 1968932441807931700
activeDeadlineSeconds: -8715915045560617563
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- 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"
weight: 902978249
- "396"
weight: 199049889
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- 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"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: d.Ms7_t.P_3..H..k9M86.9a_-0R_.Z__Lv8_.O_..81
operator: NotIn
values:
- MXOnf_ZN.-_--r.E__-8
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2
operator: DoesNotExist
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
namespaces:
- "392"
topologyKey: "393"
weight: -3478003
- "411"
topologyKey: "412"
weight: -217760519
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
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
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
namespaces:
- "384"
topologyKey: "385"
- "403"
topologyKey: "404"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
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
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
namespaces:
- "408"
topologyKey: "409"
weight: -1078366610
- "427"
topologyKey: "428"
weight: -1851436166
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d
operator: In
values:
- dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX
- key: QZ9p_6.C.e
operator: DoesNotExist
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
namespaces:
- "400"
topologyKey: "401"
- "419"
topologyKey: "420"
automountServiceAccountToken: false
containers:
- args:
- "231"
- "237"
command:
- "230"
- "236"
env:
- name: "238"
value: "239"
- name: "244"
value: "245"
valueFrom:
configMapKeyRef:
key: "245"
name: "244"
key: "251"
name: "250"
optional: false
fieldRef:
apiVersion: "240"
fieldPath: "241"
apiVersion: "246"
fieldPath: "247"
resourceFieldRef:
containerName: "242"
divisor: "405"
resource: "243"
containerName: "248"
divisor: "109"
resource: "249"
secretKeyRef:
key: "247"
name: "246"
optional: false
envFrom:
- configMapRef:
name: "236"
optional: true
prefix: "235"
secretRef:
name: "237"
optional: false
image: "229"
lifecycle:
postStart:
exec:
command:
- "268"
httpGet:
host: "270"
httpHeaders:
- name: "271"
value: "272"
path: "269"
port: 1385030458
scheme: Ao/樝fw[Řż丩ŽoǠŻ
tcpSocket:
host: "274"
port: "273"
preStop:
exec:
command:
- "275"
httpGet:
host: "277"
httpHeaders:
- name: "278"
value: "279"
path: "276"
port: -1589303862
scheme: ľǎɳ,ǿ飏騀呣ǎ
tcpSocket:
host: "281"
port: "280"
livenessProbe:
exec:
command:
- "254"
failureThreshold: -1131820775
httpGet:
host: "257"
httpHeaders:
- name: "258"
value: "259"
path: "255"
port: "256"
scheme: Źʣy豎@ɀ羭,铻O
initialDelaySeconds: 1424053148
periodSeconds: 859639931
successThreshold: -1663149700
tcpSocket:
host: "261"
port: "260"
timeoutSeconds: 747521320
name: "228"
ports:
- containerPort: -1569009987
hostIP: "234"
hostPort: -1703360754
name: "233"
protocol: ɢǵʭd鲡:贅wE@Ȗs«öʮĀ<
readinessProbe:
exec:
command:
- "262"
failureThreshold: -233378149
httpGet:
host: "264"
httpHeaders:
- name: "265"
value: "266"
path: "263"
port: -1710454086
scheme: mɩC[ó瓧
initialDelaySeconds: 915577348
periodSeconds: -1386967282
successThreshold: -2030286732
tcpSocket:
host: "267"
port: -122979840
timeoutSeconds: -590798124
resources:
limits:
豈ɃHŠơŴĿǹ_Áȉ彂Ŵ廷: "948"
requests:
"": "83"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄
drop:
- rʤî萨zvt莭琽§ć\ ïì
privileged: false
procMount: ƖN粕擓Ɩ
readOnlyRootFilesystem: false
runAsGroup: 3195567116206635190
runAsNonRoot: true
runAsUser: -5738810661106213940
seLinuxOptions:
level: "286"
role: "284"
type: "285"
user: "283"
windowsOptions:
gmsaCredentialSpec: "288"
gmsaCredentialSpecName: "287"
runAsUserName: "289"
stdin: true
terminationMessagePath: "282"
terminationMessagePolicy: 萭旿@掇lNdǂ>5姣
tty: true
volumeDevices:
- devicePath: "253"
key: "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"
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: ¿
- 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"
subPath: "312"
subPathExpr: "313"
workingDir: "294"
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

File diff suppressed because it is too large Load Diff

View File

@@ -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
key: "248"
name: "247"
optional: true
envFrom:
- configMapRef:
name: "232"
name: "237"
optional: true
prefix: "231"
prefix: "236"
secretRef:
name: "233"
optional: true
image: "225"
imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}'
name: "238"
optional: false
image: "230"
imagePullPolicy: Ǜv+8Ƥ熪军g>郵[+扴ȨŮ+
lifecycle:
postStart:
exec:
command:
- "264"
- "275"
httpGet:
host: "266"
host: "277"
httpHeaders:
- name: "267"
value: "268"
path: "265"
port: -498930176
scheme: ' R§耶Ff'
- name: "278"
value: "279"
path: "276"
port: 630004123
scheme: ɾģ毋Ó6dz娝嘚
tcpSocket:
host: "270"
port: "269"
host: "280"
port: -1213051101
preStop:
exec:
command:
- "271"
- "281"
httpGet:
host: "273"
host: "283"
httpHeaders:
- name: "274"
value: "275"
path: "272"
port: -331283026
scheme: ȉ
- name: "284"
value: "285"
path: "282"
port: -1905643191
scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
tcpSocket:
host: "276"
port: 714088955
host: "287"
port: "286"
livenessProbe:
exec:
command:
- "250"
failureThreshold: 10098903
- "255"
failureThreshold: -1171167638
httpGet:
host: "252"
host: "257"
httpHeaders:
- name: "253"
value: "254"
path: "251"
port: -1821078703
scheme: 萨zvt
initialDelaySeconds: -503805926
periodSeconds: -763687725
successThreshold: -246563990
- name: "258"
value: "259"
path: "256"
port: -1180080716
scheme: Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮
initialDelaySeconds: 1524276356
periodSeconds: -1561418761
successThreshold: -1452676801
tcpSocket:
host: "255"
port: 1182477686
timeoutSeconds: 77312514
name: "224"
ports:
- containerPort: 1024248645
hostIP: "230"
hostPort: -321513994
host: "260"
port: -161485752
timeoutSeconds: -521487971
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"
optional: true
envFrom:
- configMapRef:
name: "293"
optional: true
prefix: "292"
secretRef:
name: "294"
optional: true
image: "286"
imagePullPolicy: 冓鍓贯
lifecycle:
postStart:
exec:
command:
- "325"
httpGet:
host: "328"
httpHeaders:
- name: "329"
value: "330"
path: "326"
port: "327"
scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄'
tcpSocket:
host: "332"
port: "331"
preStop:
exec:
command:
- "333"
httpGet:
host: "336"
httpHeaders:
- name: "337"
value: "338"
path: "334"
port: "335"
scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸
tcpSocket:
host: "339"
port: 1315054653
livenessProbe:
exec:
command:
- "311"
failureThreshold: 1941923625
httpGet:
host: "314"
httpHeaders:
- name: "315"
value: "316"
path: "312"
port: "313"
scheme: 忊|E剒
initialDelaySeconds: -1313320434
periodSeconds: 465972736
successThreshold: -1784617397
tcpSocket:
host: "317"
port: 1004325340
timeoutSeconds: 14304392
name: "285"
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:
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

View File

@@ -178,8 +178,7 @@
"successThreshold": 552512122,
"failureThreshold": -833209928
},
"lifecycle": {
"postStart": {
"startupProbe": {
"exec": {
"command": [
"59"
@@ -187,8 +186,9 @@
},
"httpGet": {
"path": "60",
"port": 1114837452,
"port": 180803110,
"host": "61",
"scheme": "ņ錕?øēƺ",
"httpHeaders": [
{
"name": "62",
@@ -197,21 +197,27 @@
]
},
"tcpSocket": {
"port": 672648281,
"host": "64"
}
"port": "64",
"host": "65"
},
"preStop": {
"initialDelaySeconds": -816398166,
"timeoutSeconds": 1229400382,
"periodSeconds": -1583208879,
"successThreshold": 1088264954,
"failureThreshold": 13573196
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"65"
"66"
]
},
"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"
}
]
}

View File

@@ -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"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -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
}
]
}

View File

@@ -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"

File diff suppressed because it is too large Load Diff

View File

@@ -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:
- "254"
httpGet:
host: "256"
httpHeaders:
- name: "257"
value: "258"
path: "255"
port: 200992434
scheme: ņ榱*Gưoɘ檲ɨ銦妰黖ȓ
tcpSocket:
host: "260"
port: "259"
preStop:
exec:
command:
- "261"
httpGet:
host: "264"
httpHeaders:
- name: "265"
value: "266"
path: "262"
port: "263"
scheme: ɋ瀐<ɉ
tcpSocket:
host: "267"
port: -1334904807
livenessProbe:
exec:
command:
- "235"
failureThreshold: -547518679
httpGet:
host: "238"
httpHeaders:
- name: "239"
value: "240"
path: "236"
port: "237"
scheme: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈
initialDelaySeconds: -1940723300
periodSeconds: 496226800
successThreshold: 84444678
tcpSocket:
host: "241"
port: 2064656704
timeoutSeconds: 749147575
name: "209"
ports:
- containerPort: 1083816849
hostIP: "215"
hostPort: 744106683
name: "214"
protocol: 議Ǹ轺@)蓳嗘
readinessProbe:
exec:
command:
- "242"
failureThreshold: 1569992019
httpGet:
host: "245"
host: "244"
httpHeaders:
- name: "246"
value: "247"
- name: "245"
value: "246"
path: "243"
port: "244"
scheme: ƶRquA?瞲Ť倱<įXŋ朘
port: 1322581021
scheme: 坩O`涁İ而踪鄌eÞ
initialDelaySeconds: 565789036
periodSeconds: -582473401
successThreshold: -1252931244
tcpSocket:
host: "249"
port: "248"
preStop:
exec:
command:
- "250"
httpGet:
host: "252"
httpHeaders:
- name: "253"
value: "254"
path: "251"
port: 2147073181
scheme: 0åȂ町恰nj揠8lj
tcpSocket:
host: "255"
port: -2049272966
livenessProbe:
exec:
command:
- "227"
failureThreshold: 437263194
httpGet:
host: "230"
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
tcpSocket:
host: "241"
port: "240"
timeoutSeconds: 1701891633
host: "247"
port: -1319491110
timeoutSeconds: -1572269414
resources:
limits:
ɥ踓Ǻǧ湬淊kŪ睴鸏:ɥ: "206"
o_鹈ɹ坼É/pȿŘ阌Ŗ怳冘HǺƶ: "364"
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"
ports:
- containerPort: -50623103
hostIP: "270"
hostPort: -1266125247
name: "269"
protocol: 獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬娬ï瓼
readinessProbe:
exec:
command:
- "298"
failureThreshold: 804417065
httpGet:
host: "301"
httpHeaders:
- name: "302"
value: "303"
path: "299"
port: "300"
scheme: r蛏豈ɃHŠ
initialDelaySeconds: -1765469779
periodSeconds: -1047607622
successThreshold: -725526817
tcpSocket:
host: "304"
port: 279808574
timeoutSeconds: 1525829664
resources:
limits:
辪虽U珝Żwʮ馜: "604"
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ɢ
- 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"
subPath: "286"
subPathExpr: "287"
workingDir: "268"
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"

File diff suppressed because it is too large Load Diff

View File

@@ -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<vĝ線Ưȫ喆5O2.
volumes:
- awsElasticBlockStore:
fsType: "43"
@@ -877,14 +931,14 @@ spec:
storagePolicyName: "99"
volumePath: "97"
status:
availableReplicas: 1309129044
availableReplicas: -578926701
conditions:
- lastTransitionTime: "2519-06-20T10:43:36Z"
message: "402"
reason: "401"
status: 璻攜
type: Ŭ尌eáNRNJ丧鴻ĿW癜鞤A馱z芀
fullyLabeledReplicas: 1648811301
observedGeneration: 1503865638277557961
readyReplicas: -2062497734
replicas: 1454867437
- lastTransitionTime: "2837-10-14T23:23:27Z"
message: "430"
reason: "429"
status: '>堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ'
type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲
fullyLabeledReplicas: -1698525469
observedGeneration: 8034206547748752944
readyReplicas: -525943726
replicas: -1530496417

File diff suppressed because it is too large Load Diff

View File

@@ -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: "345"
httpHeaders:
- name: "346"
value: "347"
path: "344"
port: -518160270
scheme: ɔ幩še
tcpSocket:
host: "348"
port: 1956567721
livenessProbe:
exec:
command:
- "313"
failureThreshold: 472742933
httpGet:
host: "316"
httpHeaders:
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: 冓鍓贯
initialDelaySeconds: 1290950685
periodSeconds: 1058960779
successThreshold: -2133441986
tcpSocket:
host: "320"
port: "319"
timeoutSeconds: 12533543
name: "287"
ports:
- containerPort: -1296830577
hostIP: "293"
hostPort: 1313273370
name: "292"
readinessProbe:
exec:
command:
- "321"
failureThreshold: 620822482
httpGet:
host: "323"
httpHeaders:
- name: "324"
value: "325"
path: "321"
port: "322"
scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂²
path: "322"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
tcpSocket:
host: "326"
port: -1187301925
livenessProbe:
exec:
command:
- "297"
failureThreshold: 2030115750
httpGet:
host: "300"
httpHeaders:
- name: "301"
value: "302"
path: "298"
port: "299"
scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉
initialDelaySeconds: 2066735093
periodSeconds: -940334911
successThreshold: -341287812
tcpSocket:
host: "304"
port: "303"
timeoutSeconds: -190183379
name: "271"
ports:
- containerPort: -379385405
hostIP: "277"
hostPort: 2058122084
name: "276"
protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f'
readinessProbe:
exec:
command:
- "305"
failureThreshold: -385597677
httpGet:
host: "308"
httpHeaders:
- name: "309"
value: "310"
path: "306"
port: "307"
scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
initialDelaySeconds: -1971421078
periodSeconds: -1730959016
successThreshold: 1272940694
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

File diff suppressed because it is too large Load Diff

View File

@@ -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"
ports:
- containerPort: 1923334396
hostIP: "214"
hostPort: 474119379
host: "244"
port: 391562775
timeoutSeconds: -832805508
name: "213"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ
ports:
- 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:
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

File diff suppressed because it is too large Load Diff

View File

@@ -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"
TG;邪匾mɩC[ó瓧嫭塓烀罁胾^拜: "755"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- Ƙ枛牐ɺ皚|懥ƖN
- À*f<鴒翁杙Ŧ癃8
drop:
- 擓ƖHVe熼'FD剂讼ɓȌʟni酛
privileged: true
procMount: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?
- ɱJȉ罴
privileged: false
procMount: 棊ʢ=wǕɳɷ9Ì崟¿瘦ɖ緕ȚÍ勅
readOnlyRootFilesystem: false
runAsGroup: -2879304435996142911
runAsGroup: -3689959065086680033
runAsNonRoot: false
runAsUser: -2142888785755371163
runAsUser: -2706913289057230267
seLinuxOptions:
level: "268"
role: "266"
type: "267"
user: "265"
level: "284"
role: "282"
type: "283"
user: "281"
windowsOptions:
gmsaCredentialSpec: "270"
gmsaCredentialSpecName: "269"
runAsUserName: "271"
stdin: true
terminationMessagePath: "264"
terminationMessagePolicy: Ȥ藠3.
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
terminationMessagePath: "280"
terminationMessagePolicy: \p[
volumeDevices:
- devicePath: "234"
name: "233"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "230"
mountPropagation: ""
name: "229"
readOnly: true
subPath: "231"
subPathExpr: "232"
workingDir: "213"
- mountPath: "240"
mountPropagation: ʒ刽ʼn掏1ſ盷褎weLJèux榜
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "400"
- "422"
options:
- name: "402"
value: "403"
- name: "424"
value: "425"
searches:
- "401"
dnsPolicy: ɐ鰥
- "423"
dnsPolicy:
enableServiceLinks: false
ephemeralContainers:
- args:
- "275"
- "291"
command:
- "274"
- "290"
env:
- name: "282"
value: "283"
- name: "298"
value: "299"
valueFrom:
configMapKeyRef:
key: "289"
name: "288"
key: "305"
name: "304"
optional: false
fieldRef:
apiVersion: "284"
fieldPath: "285"
apiVersion: "300"
fieldPath: "301"
resourceFieldRef:
containerName: "286"
divisor: "985"
resource: "287"
containerName: "302"
divisor: "709"
resource: "303"
secretKeyRef:
key: "291"
name: "290"
key: "307"
name: "306"
optional: false
envFrom:
- configMapRef:
name: "280"
name: "296"
optional: true
prefix: "279"
prefix: "295"
secretRef:
name: "281"
name: "297"
optional: true
image: "273"
imagePullPolicy: 簳°Ļǟi&皥贸
image: "289"
imagePullPolicy: 拉Œɥ颶妧Ö闊 鰔澝qV訆
lifecycle:
postStart:
exec:
command:
- "313"
- "335"
httpGet:
host: "316"
host: "338"
httpHeaders:
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: 绤fʀļ腩墺Ò媁荭g
- name: "339"
value: "340"
path: "336"
port: "337"
scheme: 跩aŕ翑
tcpSocket:
host: "320"
port: "319"
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: -2133054549
scheme: 遰=E
port: -1620315711
scheme: ɐ扵
initialDelaySeconds: -1358663652
periodSeconds: -527306221
successThreshold: 2098694289
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
timeoutSeconds: 1543146222
resources:
limits:
ɖ緕ȚÍ勅跦Opwǩ: "957"
颐o: "230"
requests:
Ɔȓ蹣ɐǛv+8Ƥ熪: "951"
'[+扴ȨŮ+朷Ǝ膯ljV': "728"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- NKƙ順\E¦队偯J僳徥淳4揻-$
- ŧL²sNƗ¸gĩ餠籲磣Óƿ
drop:
- ×x锏ɟ4Ǒ
privileged: true
procMount: /»頸+SÄ蚃ɣľ)酊龨Î
readOnlyRootFilesystem: false
runAsGroup: -8521633679555431923
- '"冓鍓贯澔 ƺ蛜6'
privileged: false
procMount: 鰥Z龏´DÒȗ
readOnlyRootFilesystem: true
runAsGroup: 6057650398488995896
runAsNonRoot: true
runAsUser: 7933506142593743951
runAsUser: 4353696140684277635
seLinuxOptions:
level: "332"
role: "330"
type: "331"
user: "329"
level: "354"
role: "352"
type: "353"
user: "351"
windowsOptions:
gmsaCredentialSpec: "334"
gmsaCredentialSpecName: "333"
runAsUserName: "335"
stdin: true
stdinOnce: true
targetContainerName: "336"
terminationMessagePath: "328"
terminationMessagePolicy: 朦 wƯ貾坢'跩
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

View File

@@ -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",