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", "$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/" "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": { "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.", "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" "type": "boolean"
@@ -7372,6 +7376,10 @@
"format": "int32", "format": "int32",
"type": "integer" "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": { "state": {
"$ref": "#/definitions/io.k8s.api.core.v1.ContainerState", "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
"description": "Details about the container's current condition." "description": "Details about the container's current condition."
@@ -7745,6 +7753,10 @@
"$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext", "$ref": "#/definitions/io.k8s.api.core.v1.SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers." "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": { "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.", "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" "type": "boolean"
@@ -8422,7 +8434,7 @@
}, },
"preStop": { "preStop": {
"$ref": "#/definitions/io.k8s.api.core.v1.Handler", "$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" "type": "object"
@@ -10003,7 +10015,7 @@
"x-kubernetes-patch-strategy": "merge" "x-kubernetes-patch-strategy": "merge"
}, },
"initContainers": { "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": { "items": {
"$ref": "#/definitions/io.k8s.api.core.v1.Container" "$ref": "#/definitions/io.k8s.api.core.v1.Container"
}, },
@@ -10344,7 +10356,7 @@
"type": "integer" "type": "integer"
}, },
"successThreshold": { "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", "format": "int32",
"type": "integer" "type": "integer"
}, },

View File

@@ -124,6 +124,12 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -166,6 +172,12 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -355,6 +379,12 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -544,6 +586,12 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -733,6 +793,12 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -162,6 +168,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -351,6 +375,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -166,6 +172,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -355,6 +379,12 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -544,6 +586,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -733,6 +793,12 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -160,6 +166,12 @@ func SetObjectDefaults_Job(in *v1.Job) {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -161,6 +167,12 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -349,6 +373,12 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -161,6 +167,12 @@ func SetObjectDefaults_CronJob(in *v2alpha1.CronJob) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -349,6 +373,12 @@ func SetObjectDefaults_JobTemplate(in *v2alpha1.JobTemplate) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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.VolumeDevices = *(*[]core.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices))
out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe)) out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe))
out.ReadinessProbe = (*core.Probe)(unsafe.Pointer(in.ReadinessProbe)) 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.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle))
out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePath = in.TerminationMessagePath
out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy) 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.VolumeDevices = *(*[]v1.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices))
out.LivenessProbe = (*v1.Probe)(unsafe.Pointer(in.LivenessProbe)) out.LivenessProbe = (*v1.Probe)(unsafe.Pointer(in.LivenessProbe))
out.ReadinessProbe = (*v1.Probe)(unsafe.Pointer(in.ReadinessProbe)) 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.Lifecycle = (*v1.Lifecycle)(unsafe.Pointer(in.Lifecycle))
out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePath = in.TerminationMessagePath
out.TerminationMessagePolicy = v1.TerminationMessagePolicy(in.TerminationMessagePolicy) 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.Image = in.Image
out.ImageID = in.ImageID out.ImageID = in.ImageID
out.ContainerID = in.ContainerID out.ContainerID = in.ContainerID
out.Started = (*bool)(unsafe.Pointer(in.Started))
return nil return nil
} }
@@ -3111,6 +3114,7 @@ func autoConvert_core_ContainerStatus_To_v1_ContainerStatus(in *core.ContainerSt
out.Image = in.Image out.Image = in.Image
out.ImageID = in.ImageID out.ImageID = in.ImageID
out.ContainerID = in.ContainerID out.ContainerID = in.ContainerID
out.Started = (*bool)(unsafe.Pointer(in.Started))
return nil return nil
} }
@@ -3463,6 +3467,7 @@ func autoConvert_v1_EphemeralContainerCommon_To_core_EphemeralContainerCommon(in
out.VolumeDevices = *(*[]core.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices)) out.VolumeDevices = *(*[]core.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices))
out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe)) out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe))
out.ReadinessProbe = (*core.Probe)(unsafe.Pointer(in.ReadinessProbe)) 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.Lifecycle = (*core.Lifecycle)(unsafe.Pointer(in.Lifecycle))
out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePath = in.TerminationMessagePath
out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy) 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.VolumeDevices = *(*[]v1.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices))
out.LivenessProbe = (*v1.Probe)(unsafe.Pointer(in.LivenessProbe)) out.LivenessProbe = (*v1.Probe)(unsafe.Pointer(in.LivenessProbe))
out.ReadinessProbe = (*v1.Probe)(unsafe.Pointer(in.ReadinessProbe)) 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.Lifecycle = (*v1.Lifecycle)(unsafe.Pointer(in.Lifecycle))
out.TerminationMessagePath = in.TerminationMessagePath out.TerminationMessagePath = in.TerminationMessagePath
out.TerminationMessagePolicy = v1.TerminationMessagePolicy(in.TerminationMessagePolicy) 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {
@@ -296,6 +302,12 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -338,6 +350,12 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -379,6 +397,12 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {
@@ -484,6 +508,12 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -526,6 +556,12 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -567,6 +603,12 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {
@@ -674,6 +716,12 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -716,6 +764,12 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -757,6 +811,12 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {

View File

@@ -773,6 +773,11 @@ func (in *Container) DeepCopyInto(out *Container) {
*out = new(Probe) *out = new(Probe)
(*in).DeepCopyInto(*out) (*in).DeepCopyInto(*out)
} }
if in.StartupProbe != nil {
in, out := &in.StartupProbe, &out.StartupProbe
*out = new(Probe)
(*in).DeepCopyInto(*out)
}
if in.Lifecycle != nil { if in.Lifecycle != nil {
in, out := &in.Lifecycle, &out.Lifecycle in, out := &in.Lifecycle, &out.Lifecycle
*out = new(Lifecycle) *out = new(Lifecycle)
@@ -920,6 +925,11 @@ func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus) {
*out = *in *out = *in
in.State.DeepCopyInto(&out.State) in.State.DeepCopyInto(&out.State)
in.LastTerminationState.DeepCopyInto(&out.LastTerminationState) in.LastTerminationState.DeepCopyInto(&out.LastTerminationState)
if in.Started != nil {
in, out := &in.Started, &out.Started
*out = new(bool)
**out = **in
}
return return
} }
@@ -1350,6 +1360,11 @@ func (in *EphemeralContainerCommon) DeepCopyInto(out *EphemeralContainerCommon)
*out = new(Probe) *out = new(Probe)
(*in).DeepCopyInto(*out) (*in).DeepCopyInto(*out)
} }
if in.StartupProbe != nil {
in, out := &in.StartupProbe, &out.StartupProbe
*out = new(Probe)
(*in).DeepCopyInto(*out)
}
if in.Lifecycle != nil { if in.Lifecycle != nil {
in, out := &in.Lifecycle, &out.Lifecycle in, out := &in.Lifecycle, &out.Lifecycle
*out = new(Lifecycle) *out = new(Lifecycle)

View File

@@ -126,6 +126,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -168,6 +174,12 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -357,6 +381,12 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != nil { if a.Lifecycle.PostStart.HTTPGet != nil {
@@ -568,6 +610,12 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.Handler.HTTPGet) 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 != nil {
if a.Lifecycle.PostStart != nil { if a.Lifecycle.PostStart != nil {
if a.Lifecycle.PostStart.HTTPGet != 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) 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 != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil { if a.EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet != nil {

View File

@@ -599,6 +599,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
// features that enable backwards compatibility but are scheduled to be removed // features that enable backwards compatibility but are scheduled to be removed
// ... // ...
HPAScaleToZero: {Default: false, PreRelease: featuregate.Alpha}, HPAScaleToZero: {Default: false, PreRelease: featuregate.Alpha},
LegacyNodeRoleBehavior: {Default: true, PreRelease: featuregate.Alpha}, LegacyNodeRoleBehavior: {Default: true, PreRelease: featuregate.Alpha},
} }

View File

@@ -16,6 +16,7 @@ go_library(
importpath = "k8s.io/kubernetes/pkg/kubelet/prober", importpath = "k8s.io/kubernetes/pkg/kubelet/prober",
deps = [ deps = [
"//pkg/api/v1/pod:go_default_library", "//pkg/api/v1/pod:go_default_library",
"//pkg/features:go_default_library",
"//pkg/kubelet/container:go_default_library", "//pkg/kubelet/container:go_default_library",
"//pkg/kubelet/events:go_default_library", "//pkg/kubelet/events:go_default_library",
"//pkg/kubelet/prober/results: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/runtime:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/util/sets: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/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/client-go/tools/record:go_default_library",
"//staging/src/k8s.io/component-base/metrics:go_default_library", "//staging/src/k8s.io/component-base/metrics:go_default_library",
"//vendor/github.com/prometheus/client_golang/prometheus:go_default_library", "//vendor/github.com/prometheus/client_golang/prometheus:go_default_library",
@@ -49,6 +51,7 @@ go_test(
], ],
embed = [":go_default_library"], embed = [":go_default_library"],
deps = [ deps = [
"//pkg/features:go_default_library",
"//pkg/kubelet/container:go_default_library", "//pkg/kubelet/container:go_default_library",
"//pkg/kubelet/container/testing:go_default_library", "//pkg/kubelet/container/testing:go_default_library",
"//pkg/kubelet/pod: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/runtime:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/util/sets: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/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/kubernetes/fake:go_default_library",
"//staging/src/k8s.io/client-go/tools/record: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/klog:go_default_library",
"//vendor/k8s.io/utils/exec: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
optional Probe readinessProbe = 11; 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. // Actions that the management system should take in response to container lifecycle events.
// Cannot be updated. // Cannot be updated.
// +optional // +optional
@@ -901,6 +912,13 @@ message ContainerStatus {
// Container's ID in the format 'docker://<container_id>'. // Container's ID in the format 'docker://<container_id>'.
// +optional // +optional
optional string containerID = 8; 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. // DaemonEndpoint contains information about a single Daemon endpoint.
@@ -1254,6 +1272,10 @@ message EphemeralContainerCommon {
// +optional // +optional
optional Probe readinessProbe = 11; optional Probe readinessProbe = 11;
// Probes are not allowed for ephemeral containers.
// +optional
optional Probe startupProbe = 22;
// Lifecycle is not allowed for ephemeral containers. // Lifecycle is not allowed for ephemeral containers.
// +optional // +optional
optional Lifecycle lifecycle = 12; optional Lifecycle lifecycle = 12;
@@ -1862,7 +1884,7 @@ message Lifecycle {
optional Handler postStart = 1; optional Handler postStart = 1;
// PreStop is called immediately before a container is terminated due to an // 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 // preemption, resource contention, etc. The handler is not called if the
// container crashes or exits. The reason for termination is passed to the // container crashes or exits. The reason for termination is passed to the
// handler. The Pod's termination grace period countdown begins before 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 // 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 // to its restartPolicy. The name for an init container or normal container must be
// unique among all containers. // 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 // 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 // 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 // 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; optional int32 periodSeconds = 4;
// Minimum consecutive successes for the probe to be considered successful after having failed. // 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
optional int32 successThreshold = 5; 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.", "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", "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", "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.", "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.", "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.", "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", "image": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images",
"imageID": "ImageID of the container's image.", "imageID": "ImageID of the container's image.",
"containerID": "Container's ID in the format 'docker://<container_id>'.", "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 { 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.", "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.", "livenessProbe": "Probes are not allowed for ephemeral containers.",
"readinessProbe": "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.", "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.", "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.", "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{ 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.", "": "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", "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 { func (Lifecycle) SwaggerDoc() map[string]string {
@@ -1595,7 +1598,7 @@ func (PodSignature) SwaggerDoc() map[string]string {
var map_PodSpec = map[string]string{ var map_PodSpec = map[string]string{
"": "PodSpec is a description of a pod.", "": "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", "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.", "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.", "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", "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", "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", "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.", "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.", "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) *out = new(Probe)
(*in).DeepCopyInto(*out) (*in).DeepCopyInto(*out)
} }
if in.StartupProbe != nil {
in, out := &in.StartupProbe, &out.StartupProbe
*out = new(Probe)
(*in).DeepCopyInto(*out)
}
if in.Lifecycle != nil { if in.Lifecycle != nil {
in, out := &in.Lifecycle, &out.Lifecycle in, out := &in.Lifecycle, &out.Lifecycle
*out = new(Lifecycle) *out = new(Lifecycle)
@@ -920,6 +925,11 @@ func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus) {
*out = *in *out = *in
in.State.DeepCopyInto(&out.State) in.State.DeepCopyInto(&out.State)
in.LastTerminationState.DeepCopyInto(&out.LastTerminationState) in.LastTerminationState.DeepCopyInto(&out.LastTerminationState)
if in.Started != nil {
in, out := &in.Started, &out.Started
*out = new(bool)
**out = **in
}
return return
} }
@@ -1350,6 +1360,11 @@ func (in *EphemeralContainerCommon) DeepCopyInto(out *EphemeralContainerCommon)
*out = new(Probe) *out = new(Probe)
(*in).DeepCopyInto(*out) (*in).DeepCopyInto(*out)
} }
if in.StartupProbe != nil {
in, out := &in.StartupProbe, &out.StartupProbe
*out = new(Probe)
(*in).DeepCopyInto(*out)
}
if in.Lifecycle != nil { if in.Lifecycle != nil {
in, out := &in.Lifecycle, &out.Lifecycle in, out := &in.Lifecycle, &out.Lifecycle
*out = new(Lifecycle) *out = new(Lifecycle)

File diff suppressed because it is too large Load Diff

View File

@@ -71,409 +71,447 @@ spec:
selfLink: "28" selfLink: "28"
uid: TʡȂŏ{sǡƟ uid: TʡȂŏ{sǡƟ
spec: spec:
activeDeadlineSeconds: 9212087462729867542 activeDeadlineSeconds: 7270263763744228913
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "357" - key: "379"
operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' operator: Ǹ|蕎'佉賞ǧĒz
values: values:
- "358" - "380"
matchFields: matchFields:
- key: "359" - key: "381"
operator: ʨIk(dŊiɢzĮ蛋I滞 operator: ùfŭƽ
values: values:
- "360" - "382"
weight: 646133945 weight: -767058113
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "353" - key: "375"
operator: Ã茓pȓɻ
values:
- "376"
matchFields:
- key: "377"
operator: "" operator: ""
values: values:
- "354" - "378"
matchFields:
- key: "355"
operator: ƽ眝{æ盪泙
values:
- "356"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8.--w0_1V7 - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2
operator: In operator: DoesNotExist
values:
- 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "375" - "397"
topologyKey: "376" topologyKey: "398"
weight: -855547676 weight: 801902541
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd - key: K_A-_9_Z_C..7o_x3..-.8-Jp-94
operator: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "367" - "389"
topologyKey: "368" topologyKey: "390"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf - 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: DoesNotExist operator: NotIn
values:
- txb__-ex-_1_-ODgC_1-_V
matchLabels: 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: namespaces:
- "391" - "413"
topologyKey: "392" topologyKey: "414"
weight: 808399187 weight: -1851436166
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "383" - "405"
topologyKey: "384" topologyKey: "406"
automountServiceAccountToken: false automountServiceAccountToken: true
containers: containers:
- args: - args:
- "212" - "221"
command: command:
- "211" - "220"
env: env:
- name: "219" - name: "228"
value: "220" value: "229"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "226" key: "235"
name: "225" name: "234"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "221" apiVersion: "230"
fieldPath: "222" fieldPath: "231"
resourceFieldRef: resourceFieldRef:
containerName: "223" containerName: "232"
divisor: "932" divisor: "357"
resource: "224" resource: "233"
secretKeyRef: secretKeyRef:
key: "228" key: "237"
name: "227" name: "236"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "217" name: "226"
optional: false optional: false
prefix: "216" prefix: "225"
secretRef: secretRef:
name: "218" name: "227"
optional: true optional: false
image: "210" image: "219"
imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 imagePullPolicy: T 苧yñKJɐ扵G
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "250" - "264"
httpGet: httpGet:
host: "253" host: "267"
httpHeaders: httpHeaders:
- name: "254" - name: "268"
value: "255" value: "269"
path: "251" path: "265"
port: "252" port: "266"
scheme: '''' scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
tcpSocket: tcpSocket:
host: "256" host: "271"
port: -801430937 port: "270"
preStop: preStop:
exec: exec:
command: command:
- "257" - "272"
httpGet: httpGet:
host: "259" host: "274"
httpHeaders: httpHeaders:
- name: "260" - name: "275"
value: "261" value: "276"
path: "258" path: "273"
port: 1810980158 port: -1161649101
scheme: _ƮA攤/ɸɎ R§耶FfBl scheme: 嚧ʣq埄
tcpSocket: tcpSocket:
host: "262" host: "278"
port: 1074486306 port: "277"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "235" - "244"
failureThreshold: -161485752 failureThreshold: -361442565
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
httpGet: httpGet:
host: "246" host: "246"
httpHeaders: httpHeaders:
- name: "247" - name: "247"
value: "248" value: "248"
path: "244" path: "245"
port: "245" port: -393291312
scheme: «丯Ƙ枛牐ɺ皚 scheme: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?
initialDelaySeconds: 766864314 initialDelaySeconds: 627713162
periodSeconds: 1495880465 periodSeconds: -1740959124
successThreshold: -1032967081 successThreshold: 158280212
tcpSocket: tcpSocket:
host: "249" host: "250"
port: -1934111455 port: "249"
timeoutSeconds: 1146016612 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: resources:
limits: limits:
9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0: "175"
requests: requests:
ǂ>5姣>懔%熷: "440" ɺ皚|懥ƖN粕擓ƖHV: "962"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- 勅跦Opwǩ曬逴褜1Ø - fʀļ腩墺Ò媁荭gw忊
drop: drop:
- ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] - E剒蔞
privileged: true privileged: false
procMount: W:ĸ輦唊#v procMount: Ȩ<6鄰簳°Ļǟi&
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 1373384864388370080 runAsGroup: 2001337664780390084
runAsNonRoot: false runAsNonRoot: true
runAsUser: -6470941481344047265 runAsUser: -6177393256425700216
seLinuxOptions: seLinuxOptions:
level: "267" level: "283"
role: "265" role: "281"
type: "266" type: "282"
user: "264" user: "280"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "269" gmsaCredentialSpec: "285"
gmsaCredentialSpecName: "268" gmsaCredentialSpecName: "284"
runAsUserName: "270" runAsUserName: "286"
terminationMessagePath: "263" startupProbe:
terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ exec:
tty: true 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: volumeDevices:
- devicePath: "234" - devicePath: "243"
name: "233" name: "242"
volumeMounts: volumeMounts:
- mountPath: "230" - mountPath: "239"
mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ mountPropagation: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ '
name: "229" name: "238"
readOnly: true subPath: "240"
subPath: "231" subPathExpr: "241"
subPathExpr: "232" workingDir: "222"
workingDir: "213"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "399" - "421"
options: options:
- name: "401" - name: "423"
value: "402" value: "424"
searches: searches:
- "400" - "422"
dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ dnsPolicy: n(fǂǢ曣ŋayåe躒訙Ǫ
enableServiceLinks: true enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "274" - "290"
command: command:
- "273" - "289"
env: env:
- name: "281" - name: "297"
value: "282" value: "298"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "288" key: "304"
name: "287" name: "303"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "283" apiVersion: "299"
fieldPath: "284" fieldPath: "300"
resourceFieldRef: resourceFieldRef:
containerName: "285" containerName: "301"
divisor: "355" divisor: "3"
resource: "286" resource: "302"
secretKeyRef: secretKeyRef:
key: "290" key: "306"
name: "289" name: "305"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "279" name: "295"
optional: true optional: true
prefix: "278" prefix: "294"
secretRef: secretRef:
name: "280" name: "296"
optional: false optional: false
image: "272" image: "288"
imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "312" - "335"
httpGet: httpGet:
host: "315" host: "338"
httpHeaders: httpHeaders:
- name: "316" - name: "339"
value: "317" value: "340"
path: "313" path: "336"
port: "314" port: "337"
scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC scheme: C"6x$1s
tcpSocket: tcpSocket:
host: "319" host: "342"
port: "318" port: "341"
preStop: preStop:
exec: exec:
command: command:
- "320" - "343"
httpGet: httpGet:
host: "323" host: "345"
httpHeaders: httpHeaders:
- name: "324" - name: "346"
value: "325" value: "347"
path: "321" path: "344"
port: "322" port: -518160270
scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² scheme: ɔ幩še
tcpSocket: tcpSocket:
host: "326" host: "348"
port: -1187301925 port: 1956567721
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "297" - "313"
failureThreshold: 2030115750 failureThreshold: 472742933
httpGet: httpGet:
host: "300" host: "316"
httpHeaders: httpHeaders:
- name: "301" - name: "317"
value: "302" value: "318"
path: "298" path: "314"
port: "299" port: "315"
scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 scheme: 冓鍓贯
initialDelaySeconds: 2066735093 initialDelaySeconds: 1290950685
periodSeconds: -940334911 periodSeconds: 1058960779
successThreshold: -341287812 successThreshold: -2133441986
tcpSocket: tcpSocket:
host: "304" host: "320"
port: "303" port: "319"
timeoutSeconds: -190183379 timeoutSeconds: 12533543
name: "271" name: "287"
ports: ports:
- containerPort: -379385405 - containerPort: -1296830577
hostIP: "277" hostIP: "293"
hostPort: 2058122084 hostPort: 1313273370
name: "276" name: "292"
protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f'
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "305" - "321"
failureThreshold: -385597677 failureThreshold: 620822482
httpGet: httpGet:
host: "308" host: "323"
httpHeaders: httpHeaders:
- name: "309" - name: "324"
value: "310" value: "325"
path: "306" path: "322"
port: "307" port: 1332783160
scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -1971421078 initialDelaySeconds: -300247800
periodSeconds: -1730959016 periodSeconds: -126958936
successThreshold: 1272940694 successThreshold: 186945072
tcpSocket: tcpSocket:
host: "311" host: "327"
port: 458427807 port: "326"
timeoutSeconds: 1905181464 timeoutSeconds: 386804041
resources: resources:
limits: limits:
'|E剒蔞|表徶đ寳议Ƭƶ氩': "337" 淳4揻-$ɽ丟×x锏ɟ: "178"
requests: requests:
"": "124" Ö闊 鰔澝qV: "752"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- SvEȤƏ埮p - '|ʐşƧ諔迮ƙIJ嘢'
drop: drop:
- '{WOŭW灬pȭCV擭銆jʒǚ鍰' - ʗN
privileged: false privileged: false
procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 741362943076737213 runAsGroup: 6726836758549163621
runAsNonRoot: false runAsNonRoot: false
runAsUser: 6726836758549163621 runAsUser: -6048969174364431391
seLinuxOptions: seLinuxOptions:
level: "331" level: "353"
role: "329" role: "351"
type: "330" type: "352"
user: "328" user: "350"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "333" gmsaCredentialSpec: "355"
gmsaCredentialSpecName: "332" gmsaCredentialSpecName: "354"
runAsUserName: "334" 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 stdin: true
stdinOnce: true stdinOnce: true
targetContainerName: "335" targetContainerName: "357"
terminationMessagePath: "327" terminationMessagePath: "349"
terminationMessagePolicy: Őnj汰8ŕ terminationMessagePolicy: ȤƏ埮pɵ
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "296" - devicePath: "312"
name: "295" name: "311"
volumeMounts: volumeMounts:
- mountPath: "292" - mountPath: "308"
mountPropagation: 簳°Ļǟi&皥贸 mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "291" name: "307"
subPath: "293" readOnly: true
subPathExpr: "294" subPath: "309"
workingDir: "275" subPathExpr: "310"
workingDir: "291"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "397" - "419"
ip: "396" ip: "418"
hostPID: true hostNetwork: true
hostname: "351" hostname: "373"
imagePullSecrets: imagePullSecrets:
- name: "350" - name: "372"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -507,37 +545,38 @@ spec:
name: "156" name: "156"
optional: false optional: false
image: "148" image: "148"
imagePullPolicy: Ŵ廷s{Ⱦdz@ imagePullPolicy: ŤǢʭ嵔棂p儼Ƿ裚瓶
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "188" - "196"
httpGet: httpGet:
host: "191" host: "199"
httpHeaders: httpHeaders:
- name: "192" - name: "200"
value: "193" value: "201"
path: "189" path: "197"
port: "190" port: "198"
scheme: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C'
tcpSocket: tcpSocket:
host: "194" host: "202"
port: 559781916 port: 2126876305
preStop: preStop:
exec: exec:
command: command:
- "195" - "203"
httpGet: httpGet:
host: "197" host: "206"
httpHeaders: httpHeaders:
- name: "198" - name: "207"
value: "199" value: "208"
path: "196" path: "204"
port: 1150375229 port: "205"
scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ scheme: Ŵ廷s{Ⱦdz@
tcpSocket: tcpSocket:
host: "200" host: "209"
port: -1696471293 port: 406308963
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -593,28 +632,49 @@ spec:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- ʋŀ樺ȃv渟7¤7d - +j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn
drop: drop:
- ƯĖ漘Z剚敍0)鈼¬麄p呝T - 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
privileged: true privileged: true
procMount: 瓧嫭塓烀罁胾^拜 procMount: fǣ萭旿@
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 825262458636305509 runAsGroup: 6506922239346928579
runAsNonRoot: true runAsNonRoot: true
runAsUser: 4181787587415673530 runAsUser: 1563703589270296759
seLinuxOptions: seLinuxOptions:
level: "205" level: "214"
role: "203" role: "212"
type: "204" type: "213"
user: "202" user: "211"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "207" gmsaCredentialSpec: "216"
gmsaCredentialSpecName: "206" gmsaCredentialSpecName: "215"
runAsUserName: "208" 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 stdin: true
stdinOnce: true stdinOnce: true
terminationMessagePath: "201" terminationMessagePath: "210"
terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 terminationMessagePolicy: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0
tty: true
volumeDevices: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -626,61 +686,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "340" nodeName: "362"
nodeSelector: nodeSelector:
"336": "337" "358": "359"
overhead: overhead:
癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" 4'ď曕椐敛n湙: "310"
preemptionPolicy: eáNRNJ丧鴻Ŀ preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐'
priority: 1690570439 priority: -1852730577
priorityClassName: "398" priorityClassName: "420"
readinessGates: readinessGates:
- conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅
restartPolicy: åe躒訙 restartPolicy: ɭɪǹ0衷,
runtimeClassName: "403" runtimeClassName: "425"
schedulerName: "393" schedulerName: "415"
securityContext: securityContext:
fsGroup: -7117039988160665426 fsGroup: 2585323675983182372
runAsGroup: 2548453080315983269 runAsGroup: 6386250802140824739
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7747616967629081728 runAsUser: -5315960194881172085
seLinuxOptions: seLinuxOptions:
level: "344" level: "366"
role: "342" role: "364"
type: "343" type: "365"
user: "341" user: "363"
supplementalGroups: supplementalGroups:
- -1193643752264108019 - -4480129203693517072
sysctls: sysctls:
- name: "348" - name: "370"
value: "349" value: "371"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "346" gmsaCredentialSpec: "368"
gmsaCredentialSpecName: "345" gmsaCredentialSpecName: "367"
runAsUserName: "347" runAsUserName: "369"
serviceAccount: "339" serviceAccount: "361"
serviceAccountName: "338" serviceAccountName: "360"
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "352" subdomain: "374"
terminationGracePeriodSeconds: 6942343986058351509 terminationGracePeriodSeconds: -3039830979334099524
tolerations: tolerations:
- effect: 料ȭzV镜籬ƽ - effect: ŽɣB矗E¸
key: "394" key: "416"
operator: ƹ| operator: 堺ʣ
tolerationSeconds: 935587338391120947 tolerationSeconds: -3532804738923434397
value: "395" value: "417"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: qW - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU
maxSkew: -137402083 maxSkew: -150478704
topologyKey: "404" topologyKey: "426"
whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -887,8 +947,8 @@ status:
collisionCount: -449319810 collisionCount: -449319810
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2469-07-10T03:20:34Z"
message: "412" message: "434"
reason: "411" reason: "433"
status: '''ƈoIǢ龞瞯å' status: '''ƈoIǢ龞瞯å'
type: "" type: ""
currentNumberScheduled: -1979737528 currentNumberScheduled: -1979737528

File diff suppressed because it is too large Load Diff

View File

@@ -30,10 +30,10 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 997447044 minReadySeconds: 212061711
progressDeadlineSeconds: 1791868025 progressDeadlineSeconds: -1707056814
replicas: 896585016 replicas: 896585016
revisionHistoryLimit: 989524452 revisionHistoryLimit: -1092090658
selector: selector:
matchExpressions: 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 - 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 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: strategy:
rollingUpdate: {} rollingUpdate: {}
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
template: template:
metadata: metadata:
annotations: annotations:
@@ -73,412 +74,446 @@ spec:
selfLink: "28" selfLink: "28"
uid: ?Qȫş uid: ?Qȫş
spec: spec:
activeDeadlineSeconds: -3214891994203952546 activeDeadlineSeconds: -8619192438821356882
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "352" - key: "372"
operator: n覦灲閈誹ʅ蕉 operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊'
values: values:
- "353" - "373"
matchFields: matchFields:
- key: "354" - key: "374"
operator: "" operator: ʨIk(dŊiɢzĮ蛋I滞
values: values:
- "355" - "375"
weight: 702968201 weight: 646133945
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "348" - key: "368"
operator: Ǚ( operator: ǧĒzŔ瘍N
values: values:
- "349" - "369"
matchFields: matchFields:
- key: "350" - key: "370"
operator: 瘍Nʊ輔3璾ėȜv1b繐汚 operator: ƽ眝{æ盪泙
values: values:
- "351" - "371"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - key: 8.--w0_1V7
operator: NotIn operator: In
values: values:
- 0..KpiS.oK-.O--5-yp8q_s-L - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "370" - "390"
topologyKey: "371" topologyKey: "391"
weight: 1195176401 weight: -855547676
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaces:
- "362" - "382"
topologyKey: "363" topologyKey: "383"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf
operator: In operator: DoesNotExist
values:
- ""
matchLabels: 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: namespaces:
- "386" - "406"
topologyKey: "387" topologyKey: "407"
weight: -1508769491 weight: 808399187
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - 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: NotIn operator: DoesNotExist
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: 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: namespaces:
- "378" - "398"
topologyKey: "379" topologyKey: "399"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "211" - "216"
command: command:
- "210" - "215"
env: env:
- name: "218" - name: "223"
value: "219" value: "224"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "225" key: "230"
name: "224" name: "229"
optional: false
fieldRef:
apiVersion: "220"
fieldPath: "221"
resourceFieldRef:
containerName: "222"
divisor: "771"
resource: "223"
secretKeyRef:
key: "227"
name: "226"
optional: true optional: true
fieldRef:
apiVersion: "225"
fieldPath: "226"
resourceFieldRef:
containerName: "227"
divisor: "595"
resource: "228"
secretKeyRef:
key: "232"
name: "231"
optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "216" name: "221"
optional: false optional: false
prefix: "215" prefix: "220"
secretRef: secretRef:
name: "217" name: "222"
optional: true optional: false
image: "209" image: "214"
imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "248" - "258"
httpGet: httpGet:
host: "250" host: "261"
httpHeaders: httpHeaders:
- name: "251" - name: "262"
value: "252" value: "263"
path: "249" path: "259"
port: -2013568185 port: "260"
scheme: '#yV''WKw(ğ儴Ůĺ}'
tcpSocket: tcpSocket:
host: "253" host: "264"
port: -20130017 port: 1943028037
preStop: preStop:
exec: exec:
command: command:
- "254" - "265"
httpGet: httpGet:
host: "256" host: "267"
httpHeaders: httpHeaders:
- name: "257" - name: "268"
value: "258" value: "269"
path: "255" path: "266"
port: -661937776 port: -1355476687
scheme: ØœȠƬQg鄠[颐o scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ
tcpSocket: tcpSocket:
host: "259" host: "271"
port: 461585849 port: "270"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "234" - "239"
failureThreshold: -93157681 failureThreshold: -1213051101
httpGet: httpGet:
host: "236" host: "241"
httpHeaders: httpHeaders:
- name: "237" - name: "242"
value: "238" value: "243"
path: "235" path: "240"
port: -1285424066 port: -1654678802
scheme: ni酛3ƁÀ scheme:
initialDelaySeconds: -2036074491 initialDelaySeconds: -775511009
periodSeconds: 165047920 periodSeconds: -228822833
successThreshold: -393291312 successThreshold: -970312425
tcpSocket: tcpSocket:
host: "240" host: "244"
port: "239" port: 391562775
timeoutSeconds: -148216266 timeoutSeconds: -832805508
name: "208" name: "213"
ports: ports:
- containerPort: 1923334396 - containerPort: -775325416
hostIP: "214" hostIP: "219"
hostPort: 474119379 hostPort: 62799871
name: "213" name: "218"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ protocol: t莭琽§ć\ ïì
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "241" - "245"
failureThreshold: 267768240 failureThreshold: 571739592
httpGet: 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" host: "247"
port: -832805508 httpHeaders:
timeoutSeconds: -970312425 - name: "248"
value: "249"
path: "246"
port: -1905643191
scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
initialDelaySeconds: 852780575
periodSeconds: 893823156
successThreshold: -1980314709
tcpSocket:
host: "251"
port: "250"
timeoutSeconds: -1252938503
resources: resources:
limits: limits:
: "777" N粕擓ƖHVe熼: "334"
requests: requests:
rʤî萨zvt莭琽§ć\ ïì: "80" 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- 昕Ĭ - E埄Ȁ朦 wƯ貾坢'
drop: drop:
- ó藢xɮĵȑ6L* - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
privileged: false privileged: false
procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 2540215688947167763 runAsGroup: -2408264753085021035
runAsNonRoot: false runAsNonRoot: true
runAsUser: -5835415947553716289 runAsUser: -2270595441829602368
seLinuxOptions: seLinuxOptions:
level: "264" level: "276"
role: "262" role: "274"
type: "263" type: "275"
user: "261" user: "273"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "266" gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "265" gmsaCredentialSpecName: "277"
runAsUserName: "267" runAsUserName: "279"
terminationMessagePath: "260" startupProbe:
terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ exec:
tty: true 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: volumeDevices:
- devicePath: "233" - devicePath: "238"
name: "232" name: "237"
volumeMounts: volumeMounts:
- mountPath: "229" - mountPath: "234"
mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S mountPropagation: 癃8鸖
name: "228" name: "233"
readOnly: true readOnly: true
subPath: "230" subPath: "235"
subPathExpr: "231" subPathExpr: "236"
workingDir: "212" workingDir: "217"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "394" - "414"
options: options:
- name: "396" - name: "416"
value: "397" value: "417"
searches: searches:
- "395" - "415"
dnsPolicy: 晲T[irȎ3Ĕ\ dnsPolicy: Ƶf
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "271" - "283"
command: command:
- "270" - "282"
env: env:
- name: "278" - name: "290"
value: "279" value: "291"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "285" key: "297"
name: "284" name: "296"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "280" apiVersion: "292"
fieldPath: "281" fieldPath: "293"
resourceFieldRef: resourceFieldRef:
containerName: "282" containerName: "294"
divisor: "185" divisor: "381"
resource: "283" resource: "295"
secretKeyRef: secretKeyRef:
key: "287" key: "299"
name: "286" name: "298"
optional: false optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "276" name: "288"
optional: false optional: false
prefix: "275" prefix: "287"
secretRef: secretRef:
name: "277" name: "289"
optional: false optional: true
image: "269" image: "281"
imagePullPolicy: 騎C"6x$1sȣ±p鋄 imagePullPolicy: ņ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "309" - "326"
httpGet: httpGet:
host: "311" host: "329"
httpHeaders: httpHeaders:
- name: "312" - name: "330"
value: "313" value: "331"
path: "310" path: "327"
port: -934378634 port: "328"
scheme: ɐ鰥 scheme: 幩šeSvEȤƏ埮pɵ
tcpSocket: tcpSocket:
host: "314" host: "333"
port: 630140708 port: "332"
preStop: preStop:
exec: exec:
command: command:
- "315" - "334"
httpGet: httpGet:
host: "318" host: "337"
httpHeaders: httpHeaders:
- name: "319" - name: "338"
value: "320" value: "339"
path: "316" path: "335"
port: "317" port: "336"
scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² scheme: ş
tcpSocket: tcpSocket:
host: "321" host: "341"
port: 2080874371 port: "340"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "294" - "306"
failureThreshold: 1993268896 failureThreshold: -300247800
httpGet: httpGet:
host: "297" host: "308"
httpHeaders: httpHeaders:
- name: "298" - name: "309"
value: "299" value: "310"
path: "295" path: "307"
port: "296" port: 865289071
scheme: scheme: iɥ嵐sC8
initialDelaySeconds: 711020087 initialDelaySeconds: -1513284745
periodSeconds: -1965247100 periodSeconds: -414121491
successThreshold: 218453478 successThreshold: -1862764022
tcpSocket: tcpSocket:
host: "300" host: "311"
port: 1315054653 port: -898536659
timeoutSeconds: 1103049140 timeoutSeconds: 1258370227
name: "268" name: "280"
ports: ports:
- containerPort: -677617960 - containerPort: -1137436579
hostIP: "274" hostIP: "286"
hostPort: -552281772 hostPort: 1868683352
name: "273" name: "285"
protocol: ŕ翑0展} protocol: 颶妧Ö闊
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "301" - "312"
failureThreshold: -1250314365 failureThreshold: 215186711
httpGet: httpGet:
host: "304" host: "314"
httpHeaders: httpHeaders:
- name: "305" - name: "315"
value: "306" value: "316"
path: "302" path: "313"
port: "303" port: 323903711
scheme: 'ƿ頀"冓鍓贯澔 ' scheme: J
initialDelaySeconds: 1058960779 initialDelaySeconds: 657418949
periodSeconds: 472742933 periodSeconds: 287654902
successThreshold: 50696420 successThreshold: -2062708879
tcpSocket: tcpSocket:
host: "308" host: "318"
port: "307" port: "317"
timeoutSeconds: -2133441986 timeoutSeconds: -992558278
resources: resources:
limits: limits:
鬶l獕;跣Hǝcw: "242" ²sNƗ¸g: "50"
requests: requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" 酊龨δ摖ȱğ_<: "118"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȹ均i绝5哇芆斩ìh4Ɋ - DŽ髐njʉBn(fǂǢ曣
drop: drop:
- Ȗ|ʐşƧ諔迮ƙIJ嘢4 - ay
privileged: false privileged: false
procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW procMount: 嗆u
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6618112330449141397 runAsGroup: -5996624450771474158
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4288903380102217677 runAsUser: 1958157659034146020
seLinuxOptions: seLinuxOptions:
level: "326" level: "346"
role: "324" role: "344"
type: "325" type: "345"
user: "323" user: "343"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "328" gmsaCredentialSpec: "348"
gmsaCredentialSpecName: "327" gmsaCredentialSpecName: "347"
runAsUserName: "329" runAsUserName: "349"
stdinOnce: true startupProbe:
targetContainerName: "330" exec:
terminationMessagePath: "322" command:
terminationMessagePolicy: 灩聋3趐囨鏻砅邻 - "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 tty: true
volumeDevices: volumeDevices:
- devicePath: "293" - devicePath: "305"
name: "292" name: "304"
volumeMounts: volumeMounts:
- mountPath: "289" - mountPath: "301"
mountPropagation: "" mountPropagation: ƺ蛜6Ɖ飴ɎiǨź
name: "288" name: "300"
subPath: "290" readOnly: true
subPathExpr: "291" subPath: "302"
workingDir: "272" subPathExpr: "303"
workingDir: "284"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "392" - "412"
ip: "391" ip: "411"
hostIPC: true hostNetwork: true
hostname: "346" hostname: "366"
imagePullSecrets: imagePullSecrets:
- name: "345" - name: "365"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -512,37 +547,38 @@ spec:
name: "156" name: "156"
optional: true optional: true
image: "148" image: "148"
imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "186" - "192"
httpGet: httpGet:
host: "189" host: "194"
httpHeaders: httpHeaders:
- name: "190" - name: "195"
value: "191" value: "196"
path: "187" path: "193"
port: "188" port: -2015604435
scheme: £ȹ嫰ƹǔw÷nI粛E煹 scheme: jƯĖ漘Z剚敍0)
tcpSocket: tcpSocket:
host: "192" host: "197"
port: 135036402 port: 424236719
preStop: preStop:
exec: exec:
command: command:
- "193" - "198"
httpGet: httpGet:
host: "195" host: "200"
httpHeaders: httpHeaders:
- name: "196" - name: "201"
value: "197" value: "202"
path: "194" path: "199"
port: -1188430996 port: -1131820775
scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 scheme: Ƿ裚瓶釆Ɗ+j忊
tcpSocket: tcpSocket:
host: "199" host: "204"
port: "198" port: "203"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -599,28 +635,47 @@ spec:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȫ焗捏ĨFħ籘Àǒɿʒ刽 - ""
drop: drop:
- 掏1ſ - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
privileged: true privileged: false
procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 3747003978559617838 runAsGroup: -8419423421380299597
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7739117973959656085 runAsUser: -6576869501326512452
seLinuxOptions: seLinuxOptions:
level: "204" level: "209"
role: "202" role: "207"
type: "203" type: "208"
user: "201" user: "206"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "206" gmsaCredentialSpec: "211"
gmsaCredentialSpecName: "205" gmsaCredentialSpecName: "210"
runAsUserName: "207" runAsUserName: "212"
stdin: true startupProbe:
stdinOnce: true exec:
terminationMessagePath: "200" command:
terminationMessagePolicy: ɩC - "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: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -632,60 +687,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "335" nodeName: "355"
nodeSelector: nodeSelector:
"331": "332" "351": "352"
overhead: overhead:
tHǽ÷閂抰^窄CǙķȈ: "97" 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607"
preemptionPolicy: ý筞X preemptionPolicy: eáNRNJ丧鴻Ŀ
priority: -1331113536 priority: 1690570439
priorityClassName: "393" priorityClassName: "413"
readinessGates: readinessGates:
- conditionType: mō6µɑ`ȗ<8^翜 - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳
restartPolicy: w妕眵笭/9崍h趭(娕 restartPolicy: T[
runtimeClassName: "398" runtimeClassName: "418"
schedulerName: "388" schedulerName: "408"
securityContext: securityContext:
fsGroup: 7747616967629081728 fsGroup: 760480547754807445
runAsGroup: 7461098988156705429 runAsGroup: -801152248124332545
runAsNonRoot: false runAsNonRoot: true
runAsUser: 4430285638700927057 runAsUser: -2781126825051715248
seLinuxOptions: seLinuxOptions:
level: "339" level: "359"
role: "337" role: "357"
type: "338" type: "358"
user: "336" user: "356"
supplementalGroups: supplementalGroups:
- 7866826580662861268 - 5255171395073905944
sysctls: sysctls:
- name: "343" - name: "363"
value: "344" value: "364"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "341" gmsaCredentialSpec: "361"
gmsaCredentialSpecName: "340" gmsaCredentialSpecName: "360"
runAsUserName: "342" runAsUserName: "362"
serviceAccount: "334" serviceAccount: "354"
serviceAccountName: "333" serviceAccountName: "353"
shareProcessNamespace: true shareProcessNamespace: false
subdomain: "347" subdomain: "367"
terminationGracePeriodSeconds: 6245571390016329382 terminationGracePeriodSeconds: -2738603156841903595
tolerations: tolerations:
- effect: 緍k¢茤 - effect: 料ȭzV镜籬ƽ
key: "389" key: "409"
operator: 抄3昞财Î嘝zʄ!ć operator: ƹ|
tolerationSeconds: 4096844323391966153 tolerationSeconds: 935587338391120947
value: "390" value: "410"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: qW
operator: DoesNotExist operator: In
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: 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 E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X
: x_.4dwFbuvEf55Y2k.F-4 maxSkew: -137402083
maxSkew: 1956797678 topologyKey: "419"
topologyKey: "399" whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥
whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -886,17 +942,17 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1734448297 availableReplicas: 1660081568
collisionCount: 1658632493 collisionCount: -1977467928
conditions: conditions:
- lastTransitionTime: "2674-07-14T13:22:49Z" - lastTransitionTime: "2146-08-16T07:05:27Z"
lastUpdateTime: "2674-04-10T12:16:26Z" lastUpdateTime: "2524-02-08T04:27:05Z"
message: "407" message: "427"
reason: "406" reason: "426"
status: ZÕW肤  status: Ƅ抄3昞财Î嘝zʄ
type: ȷ滣ƆƾȊ(XEfê澙凋B/ü type: 洅啶
observedGeneration: -1249679108465412698 observedGeneration: 2992108727478230062
readyReplicas: -1292943463 readyReplicas: 902022378
replicas: -1152625369 replicas: 407742062
unavailableReplicas: -1757575936 unavailableReplicas: 904244563
updatedReplicas: -1832836223 updatedReplicas: 2115789304

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

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" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 997447044 minReadySeconds: 212061711
progressDeadlineSeconds: 1774123594 progressDeadlineSeconds: 1109758199
replicas: 896585016 replicas: 896585016
revisionHistoryLimit: 989524452 revisionHistoryLimit: -1092090658
rollbackTo: rollbackTo:
revision: -7811637368862163847 revision: -318895959020904110
selector: selector:
matchExpressions: 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 - 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 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: strategy:
rollingUpdate: {} rollingUpdate: {}
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
template: template:
metadata: metadata:
annotations: annotations:
@@ -75,412 +76,446 @@ spec:
selfLink: "28" selfLink: "28"
uid: ?Qȫş uid: ?Qȫş
spec: spec:
activeDeadlineSeconds: -3214891994203952546 activeDeadlineSeconds: -8619192438821356882
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "352" - key: "372"
operator: n覦灲閈誹ʅ蕉 operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊'
values: values:
- "353" - "373"
matchFields: matchFields:
- key: "354" - key: "374"
operator: "" operator: ʨIk(dŊiɢzĮ蛋I滞
values: values:
- "355" - "375"
weight: 702968201 weight: 646133945
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "348" - key: "368"
operator: Ǚ( operator: ǧĒzŔ瘍N
values: values:
- "349" - "369"
matchFields: matchFields:
- key: "350" - key: "370"
operator: 瘍Nʊ輔3璾ėȜv1b繐汚 operator: ƽ眝{æ盪泙
values: values:
- "351" - "371"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - key: 8.--w0_1V7
operator: NotIn operator: In
values: values:
- 0..KpiS.oK-.O--5-yp8q_s-L - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "370" - "390"
topologyKey: "371" topologyKey: "391"
weight: 1195176401 weight: -855547676
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaces:
- "362" - "382"
topologyKey: "363" topologyKey: "383"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf
operator: In operator: DoesNotExist
values:
- ""
matchLabels: 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: namespaces:
- "386" - "406"
topologyKey: "387" topologyKey: "407"
weight: -1508769491 weight: 808399187
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - 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: NotIn operator: DoesNotExist
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: 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: namespaces:
- "378" - "398"
topologyKey: "379" topologyKey: "399"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "211" - "216"
command: command:
- "210" - "215"
env: env:
- name: "218" - name: "223"
value: "219" value: "224"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "225" key: "230"
name: "224" name: "229"
optional: false
fieldRef:
apiVersion: "220"
fieldPath: "221"
resourceFieldRef:
containerName: "222"
divisor: "771"
resource: "223"
secretKeyRef:
key: "227"
name: "226"
optional: true optional: true
fieldRef:
apiVersion: "225"
fieldPath: "226"
resourceFieldRef:
containerName: "227"
divisor: "595"
resource: "228"
secretKeyRef:
key: "232"
name: "231"
optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "216" name: "221"
optional: false optional: false
prefix: "215" prefix: "220"
secretRef: secretRef:
name: "217" name: "222"
optional: true optional: false
image: "209" image: "214"
imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "248" - "258"
httpGet: httpGet:
host: "250" host: "261"
httpHeaders: httpHeaders:
- name: "251" - name: "262"
value: "252" value: "263"
path: "249" path: "259"
port: -2013568185 port: "260"
scheme: '#yV''WKw(ğ儴Ůĺ}'
tcpSocket: tcpSocket:
host: "253" host: "264"
port: -20130017 port: 1943028037
preStop: preStop:
exec: exec:
command: command:
- "254" - "265"
httpGet: httpGet:
host: "256" host: "267"
httpHeaders: httpHeaders:
- name: "257" - name: "268"
value: "258" value: "269"
path: "255" path: "266"
port: -661937776 port: -1355476687
scheme: ØœȠƬQg鄠[颐o scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ
tcpSocket: tcpSocket:
host: "259" host: "271"
port: 461585849 port: "270"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "234" - "239"
failureThreshold: -93157681 failureThreshold: -1213051101
httpGet: httpGet:
host: "236" host: "241"
httpHeaders: httpHeaders:
- name: "237" - name: "242"
value: "238" value: "243"
path: "235" path: "240"
port: -1285424066 port: -1654678802
scheme: ni酛3ƁÀ scheme:
initialDelaySeconds: -2036074491 initialDelaySeconds: -775511009
periodSeconds: 165047920 periodSeconds: -228822833
successThreshold: -393291312 successThreshold: -970312425
tcpSocket: tcpSocket:
host: "240" host: "244"
port: "239" port: 391562775
timeoutSeconds: -148216266 timeoutSeconds: -832805508
name: "208" name: "213"
ports: ports:
- containerPort: 1923334396 - containerPort: -775325416
hostIP: "214" hostIP: "219"
hostPort: 474119379 hostPort: 62799871
name: "213" name: "218"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ protocol: t莭琽§ć\ ïì
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "241" - "245"
failureThreshold: 267768240 failureThreshold: 571739592
httpGet: 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" host: "247"
port: -832805508 httpHeaders:
timeoutSeconds: -970312425 - name: "248"
value: "249"
path: "246"
port: -1905643191
scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
initialDelaySeconds: 852780575
periodSeconds: 893823156
successThreshold: -1980314709
tcpSocket:
host: "251"
port: "250"
timeoutSeconds: -1252938503
resources: resources:
limits: limits:
: "777" N粕擓ƖHVe熼: "334"
requests: requests:
rʤî萨zvt莭琽§ć\ ïì: "80" 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- 昕Ĭ - E埄Ȁ朦 wƯ貾坢'
drop: drop:
- ó藢xɮĵȑ6L* - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
privileged: false privileged: false
procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 2540215688947167763 runAsGroup: -2408264753085021035
runAsNonRoot: false runAsNonRoot: true
runAsUser: -5835415947553716289 runAsUser: -2270595441829602368
seLinuxOptions: seLinuxOptions:
level: "264" level: "276"
role: "262" role: "274"
type: "263" type: "275"
user: "261" user: "273"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "266" gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "265" gmsaCredentialSpecName: "277"
runAsUserName: "267" runAsUserName: "279"
terminationMessagePath: "260" startupProbe:
terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ exec:
tty: true 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: volumeDevices:
- devicePath: "233" - devicePath: "238"
name: "232" name: "237"
volumeMounts: volumeMounts:
- mountPath: "229" - mountPath: "234"
mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S mountPropagation: 癃8鸖
name: "228" name: "233"
readOnly: true readOnly: true
subPath: "230" subPath: "235"
subPathExpr: "231" subPathExpr: "236"
workingDir: "212" workingDir: "217"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "394" - "414"
options: options:
- name: "396" - name: "416"
value: "397" value: "417"
searches: searches:
- "395" - "415"
dnsPolicy: 晲T[irȎ3Ĕ\ dnsPolicy: Ƶf
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "271" - "283"
command: command:
- "270" - "282"
env: env:
- name: "278" - name: "290"
value: "279" value: "291"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "285" key: "297"
name: "284" name: "296"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "280" apiVersion: "292"
fieldPath: "281" fieldPath: "293"
resourceFieldRef: resourceFieldRef:
containerName: "282" containerName: "294"
divisor: "185" divisor: "381"
resource: "283" resource: "295"
secretKeyRef: secretKeyRef:
key: "287" key: "299"
name: "286" name: "298"
optional: false optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "276" name: "288"
optional: false optional: false
prefix: "275" prefix: "287"
secretRef: secretRef:
name: "277" name: "289"
optional: false optional: true
image: "269" image: "281"
imagePullPolicy: 騎C"6x$1sȣ±p鋄 imagePullPolicy: ņ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "309" - "326"
httpGet: httpGet:
host: "311" host: "329"
httpHeaders: httpHeaders:
- name: "312" - name: "330"
value: "313" value: "331"
path: "310" path: "327"
port: -934378634 port: "328"
scheme: ɐ鰥 scheme: 幩šeSvEȤƏ埮pɵ
tcpSocket: tcpSocket:
host: "314" host: "333"
port: 630140708 port: "332"
preStop: preStop:
exec: exec:
command: command:
- "315" - "334"
httpGet: httpGet:
host: "318" host: "337"
httpHeaders: httpHeaders:
- name: "319" - name: "338"
value: "320" value: "339"
path: "316" path: "335"
port: "317" port: "336"
scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² scheme: ş
tcpSocket: tcpSocket:
host: "321" host: "341"
port: 2080874371 port: "340"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "294" - "306"
failureThreshold: 1993268896 failureThreshold: -300247800
httpGet: httpGet:
host: "297" host: "308"
httpHeaders: httpHeaders:
- name: "298" - name: "309"
value: "299" value: "310"
path: "295" path: "307"
port: "296" port: 865289071
scheme: scheme: iɥ嵐sC8
initialDelaySeconds: 711020087 initialDelaySeconds: -1513284745
periodSeconds: -1965247100 periodSeconds: -414121491
successThreshold: 218453478 successThreshold: -1862764022
tcpSocket: tcpSocket:
host: "300" host: "311"
port: 1315054653 port: -898536659
timeoutSeconds: 1103049140 timeoutSeconds: 1258370227
name: "268" name: "280"
ports: ports:
- containerPort: -677617960 - containerPort: -1137436579
hostIP: "274" hostIP: "286"
hostPort: -552281772 hostPort: 1868683352
name: "273" name: "285"
protocol: ŕ翑0展} protocol: 颶妧Ö闊
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "301" - "312"
failureThreshold: -1250314365 failureThreshold: 215186711
httpGet: httpGet:
host: "304" host: "314"
httpHeaders: httpHeaders:
- name: "305" - name: "315"
value: "306" value: "316"
path: "302" path: "313"
port: "303" port: 323903711
scheme: 'ƿ頀"冓鍓贯澔 ' scheme: J
initialDelaySeconds: 1058960779 initialDelaySeconds: 657418949
periodSeconds: 472742933 periodSeconds: 287654902
successThreshold: 50696420 successThreshold: -2062708879
tcpSocket: tcpSocket:
host: "308" host: "318"
port: "307" port: "317"
timeoutSeconds: -2133441986 timeoutSeconds: -992558278
resources: resources:
limits: limits:
鬶l獕;跣Hǝcw: "242" ²sNƗ¸g: "50"
requests: requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" 酊龨δ摖ȱğ_<: "118"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȹ均i绝5哇芆斩ìh4Ɋ - DŽ髐njʉBn(fǂǢ曣
drop: drop:
- Ȗ|ʐşƧ諔迮ƙIJ嘢4 - ay
privileged: false privileged: false
procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW procMount: 嗆u
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6618112330449141397 runAsGroup: -5996624450771474158
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4288903380102217677 runAsUser: 1958157659034146020
seLinuxOptions: seLinuxOptions:
level: "326" level: "346"
role: "324" role: "344"
type: "325" type: "345"
user: "323" user: "343"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "328" gmsaCredentialSpec: "348"
gmsaCredentialSpecName: "327" gmsaCredentialSpecName: "347"
runAsUserName: "329" runAsUserName: "349"
stdinOnce: true startupProbe:
targetContainerName: "330" exec:
terminationMessagePath: "322" command:
terminationMessagePolicy: 灩聋3趐囨鏻砅邻 - "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 tty: true
volumeDevices: volumeDevices:
- devicePath: "293" - devicePath: "305"
name: "292" name: "304"
volumeMounts: volumeMounts:
- mountPath: "289" - mountPath: "301"
mountPropagation: "" mountPropagation: ƺ蛜6Ɖ飴ɎiǨź
name: "288" name: "300"
subPath: "290" readOnly: true
subPathExpr: "291" subPath: "302"
workingDir: "272" subPathExpr: "303"
workingDir: "284"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "392" - "412"
ip: "391" ip: "411"
hostIPC: true hostNetwork: true
hostname: "346" hostname: "366"
imagePullSecrets: imagePullSecrets:
- name: "345" - name: "365"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -514,37 +549,38 @@ spec:
name: "156" name: "156"
optional: true optional: true
image: "148" image: "148"
imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "186" - "192"
httpGet: httpGet:
host: "189" host: "194"
httpHeaders: httpHeaders:
- name: "190" - name: "195"
value: "191" value: "196"
path: "187" path: "193"
port: "188" port: -2015604435
scheme: £ȹ嫰ƹǔw÷nI粛E煹 scheme: jƯĖ漘Z剚敍0)
tcpSocket: tcpSocket:
host: "192" host: "197"
port: 135036402 port: 424236719
preStop: preStop:
exec: exec:
command: command:
- "193" - "198"
httpGet: httpGet:
host: "195" host: "200"
httpHeaders: httpHeaders:
- name: "196" - name: "201"
value: "197" value: "202"
path: "194" path: "199"
port: -1188430996 port: -1131820775
scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 scheme: Ƿ裚瓶釆Ɗ+j忊
tcpSocket: tcpSocket:
host: "199" host: "204"
port: "198" port: "203"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -601,28 +637,47 @@ spec:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȫ焗捏ĨFħ籘Àǒɿʒ刽 - ""
drop: drop:
- 掏1ſ - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
privileged: true privileged: false
procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 3747003978559617838 runAsGroup: -8419423421380299597
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7739117973959656085 runAsUser: -6576869501326512452
seLinuxOptions: seLinuxOptions:
level: "204" level: "209"
role: "202" role: "207"
type: "203" type: "208"
user: "201" user: "206"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "206" gmsaCredentialSpec: "211"
gmsaCredentialSpecName: "205" gmsaCredentialSpecName: "210"
runAsUserName: "207" runAsUserName: "212"
stdin: true startupProbe:
stdinOnce: true exec:
terminationMessagePath: "200" command:
terminationMessagePolicy: ɩC - "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: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -634,60 +689,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "335" nodeName: "355"
nodeSelector: nodeSelector:
"331": "332" "351": "352"
overhead: overhead:
tHǽ÷閂抰^窄CǙķȈ: "97" 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607"
preemptionPolicy: ý筞X preemptionPolicy: eáNRNJ丧鴻Ŀ
priority: -1331113536 priority: 1690570439
priorityClassName: "393" priorityClassName: "413"
readinessGates: readinessGates:
- conditionType: mō6µɑ`ȗ<8^翜 - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳
restartPolicy: w妕眵笭/9崍h趭(娕 restartPolicy: T[
runtimeClassName: "398" runtimeClassName: "418"
schedulerName: "388" schedulerName: "408"
securityContext: securityContext:
fsGroup: 7747616967629081728 fsGroup: 760480547754807445
runAsGroup: 7461098988156705429 runAsGroup: -801152248124332545
runAsNonRoot: false runAsNonRoot: true
runAsUser: 4430285638700927057 runAsUser: -2781126825051715248
seLinuxOptions: seLinuxOptions:
level: "339" level: "359"
role: "337" role: "357"
type: "338" type: "358"
user: "336" user: "356"
supplementalGroups: supplementalGroups:
- 7866826580662861268 - 5255171395073905944
sysctls: sysctls:
- name: "343" - name: "363"
value: "344" value: "364"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "341" gmsaCredentialSpec: "361"
gmsaCredentialSpecName: "340" gmsaCredentialSpecName: "360"
runAsUserName: "342" runAsUserName: "362"
serviceAccount: "334" serviceAccount: "354"
serviceAccountName: "333" serviceAccountName: "353"
shareProcessNamespace: true shareProcessNamespace: false
subdomain: "347" subdomain: "367"
terminationGracePeriodSeconds: 6245571390016329382 terminationGracePeriodSeconds: -2738603156841903595
tolerations: tolerations:
- effect: 緍k¢茤 - effect: 料ȭzV镜籬ƽ
key: "389" key: "409"
operator: 抄3昞财Î嘝zʄ!ć operator: ƹ|
tolerationSeconds: 4096844323391966153 tolerationSeconds: 935587338391120947
value: "390" value: "410"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: qW
operator: DoesNotExist operator: In
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: 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 E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X
: x_.4dwFbuvEf55Y2k.F-4 maxSkew: -137402083
maxSkew: 1956797678 topologyKey: "419"
topologyKey: "399" whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥
whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -888,17 +944,17 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1521312599 availableReplicas: 740158871
collisionCount: -612321491 collisionCount: 571778293
conditions: conditions:
- lastTransitionTime: "2615-10-02T05:14:27Z" - lastTransitionTime: "1970-05-16T01:44:00Z"
lastUpdateTime: "2733-02-09T15:36:31Z" lastUpdateTime: "2469-07-10T03:20:34Z"
message: "407" message: "427"
reason: "406" reason: "426"
status: status: '''ƈoIǢ龞瞯å'
type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö' type: ""
observedGeneration: -4950488263500864484 observedGeneration: 1751238822830387407
readyReplicas: -1121580186 readyReplicas: -1450995995
replicas: 67329694 replicas: -106050665
unavailableReplicas: 129237050 unavailableReplicas: -449319810
updatedReplicas: 1689648303 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" selfLink: "28"
uid: TʡȂŏ{sǡƟ uid: TʡȂŏ{sǡƟ
spec: spec:
activeDeadlineSeconds: 9212087462729867542 activeDeadlineSeconds: 7270263763744228913
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "357" - key: "379"
operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' operator: Ǹ|蕎'佉賞ǧĒz
values: values:
- "358" - "380"
matchFields: matchFields:
- key: "359" - key: "381"
operator: ʨIk(dŊiɢzĮ蛋I滞 operator: ùfŭƽ
values: values:
- "360" - "382"
weight: 646133945 weight: -767058113
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "353" - key: "375"
operator: Ã茓pȓɻ
values:
- "376"
matchFields:
- key: "377"
operator: "" operator: ""
values: values:
- "354" - "378"
matchFields:
- key: "355"
operator: ƽ眝{æ盪泙
values:
- "356"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8.--w0_1V7 - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2
operator: In operator: DoesNotExist
values:
- 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "375" - "397"
topologyKey: "376" topologyKey: "398"
weight: -855547676 weight: 801902541
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd - key: K_A-_9_Z_C..7o_x3..-.8-Jp-94
operator: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "367" - "389"
topologyKey: "368" topologyKey: "390"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf - 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: DoesNotExist operator: NotIn
values:
- txb__-ex-_1_-ODgC_1-_V
matchLabels: 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: namespaces:
- "391" - "413"
topologyKey: "392" topologyKey: "414"
weight: 808399187 weight: -1851436166
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "383" - "405"
topologyKey: "384" topologyKey: "406"
automountServiceAccountToken: false automountServiceAccountToken: true
containers: containers:
- args: - args:
- "212" - "221"
command: command:
- "211" - "220"
env: env:
- name: "219" - name: "228"
value: "220" value: "229"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "226" key: "235"
name: "225" name: "234"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "221" apiVersion: "230"
fieldPath: "222" fieldPath: "231"
resourceFieldRef: resourceFieldRef:
containerName: "223" containerName: "232"
divisor: "932" divisor: "357"
resource: "224" resource: "233"
secretKeyRef: secretKeyRef:
key: "228" key: "237"
name: "227" name: "236"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "217" name: "226"
optional: false optional: false
prefix: "216" prefix: "225"
secretRef: secretRef:
name: "218" name: "227"
optional: true optional: false
image: "210" image: "219"
imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 imagePullPolicy: T 苧yñKJɐ扵G
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "250" - "264"
httpGet: httpGet:
host: "253" host: "267"
httpHeaders: httpHeaders:
- name: "254" - name: "268"
value: "255" value: "269"
path: "251" path: "265"
port: "252" port: "266"
scheme: '''' scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
tcpSocket: tcpSocket:
host: "256" host: "271"
port: -801430937 port: "270"
preStop: preStop:
exec: exec:
command: command:
- "257" - "272"
httpGet: httpGet:
host: "259" host: "274"
httpHeaders: httpHeaders:
- name: "260" - name: "275"
value: "261" value: "276"
path: "258" path: "273"
port: 1810980158 port: -1161649101
scheme: _ƮA攤/ɸɎ R§耶FfBl scheme: 嚧ʣq埄
tcpSocket: tcpSocket:
host: "262" host: "278"
port: 1074486306 port: "277"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "235" - "244"
failureThreshold: -161485752 failureThreshold: -361442565
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
httpGet: httpGet:
host: "246" host: "246"
httpHeaders: httpHeaders:
- name: "247" - name: "247"
value: "248" value: "248"
path: "244" path: "245"
port: "245" port: -393291312
scheme: «丯Ƙ枛牐ɺ皚 scheme: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?
initialDelaySeconds: 766864314 initialDelaySeconds: 627713162
periodSeconds: 1495880465 periodSeconds: -1740959124
successThreshold: -1032967081 successThreshold: 158280212
tcpSocket: tcpSocket:
host: "249" host: "250"
port: -1934111455 port: "249"
timeoutSeconds: 1146016612 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: resources:
limits: limits:
9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0: "175"
requests: requests:
ǂ>5姣>懔%熷: "440" ɺ皚|懥ƖN粕擓ƖHV: "962"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- 勅跦Opwǩ曬逴褜1Ø - fʀļ腩墺Ò媁荭gw忊
drop: drop:
- ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] - E剒蔞
privileged: true privileged: false
procMount: W:ĸ輦唊#v procMount: Ȩ<6鄰簳°Ļǟi&
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 1373384864388370080 runAsGroup: 2001337664780390084
runAsNonRoot: false runAsNonRoot: true
runAsUser: -6470941481344047265 runAsUser: -6177393256425700216
seLinuxOptions: seLinuxOptions:
level: "267" level: "283"
role: "265" role: "281"
type: "266" type: "282"
user: "264" user: "280"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "269" gmsaCredentialSpec: "285"
gmsaCredentialSpecName: "268" gmsaCredentialSpecName: "284"
runAsUserName: "270" runAsUserName: "286"
terminationMessagePath: "263" startupProbe:
terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ exec:
tty: true 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: volumeDevices:
- devicePath: "234" - devicePath: "243"
name: "233" name: "242"
volumeMounts: volumeMounts:
- mountPath: "230" - mountPath: "239"
mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ mountPropagation: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ '
name: "229" name: "238"
readOnly: true subPath: "240"
subPath: "231" subPathExpr: "241"
subPathExpr: "232" workingDir: "222"
workingDir: "213"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "399" - "421"
options: options:
- name: "401" - name: "423"
value: "402" value: "424"
searches: searches:
- "400" - "422"
dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ dnsPolicy: n(fǂǢ曣ŋayåe躒訙Ǫ
enableServiceLinks: true enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "274" - "290"
command: command:
- "273" - "289"
env: env:
- name: "281" - name: "297"
value: "282" value: "298"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "288" key: "304"
name: "287" name: "303"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "283" apiVersion: "299"
fieldPath: "284" fieldPath: "300"
resourceFieldRef: resourceFieldRef:
containerName: "285" containerName: "301"
divisor: "355" divisor: "3"
resource: "286" resource: "302"
secretKeyRef: secretKeyRef:
key: "290" key: "306"
name: "289" name: "305"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "279" name: "295"
optional: true optional: true
prefix: "278" prefix: "294"
secretRef: secretRef:
name: "280" name: "296"
optional: false optional: false
image: "272" image: "288"
imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "312" - "335"
httpGet: httpGet:
host: "315" host: "338"
httpHeaders: httpHeaders:
- name: "316" - name: "339"
value: "317" value: "340"
path: "313" path: "336"
port: "314" port: "337"
scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC scheme: C"6x$1s
tcpSocket: tcpSocket:
host: "319" host: "342"
port: "318" port: "341"
preStop: preStop:
exec: exec:
command: command:
- "320" - "343"
httpGet: httpGet:
host: "323" host: "345"
httpHeaders: httpHeaders:
- name: "324" - name: "346"
value: "325" value: "347"
path: "321" path: "344"
port: "322" port: -518160270
scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² scheme: ɔ幩še
tcpSocket: tcpSocket:
host: "326" host: "348"
port: -1187301925 port: 1956567721
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "297" - "313"
failureThreshold: 2030115750 failureThreshold: 472742933
httpGet: httpGet:
host: "300" host: "316"
httpHeaders: httpHeaders:
- name: "301" - name: "317"
value: "302" value: "318"
path: "298" path: "314"
port: "299" port: "315"
scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 scheme: 冓鍓贯
initialDelaySeconds: 2066735093 initialDelaySeconds: 1290950685
periodSeconds: -940334911 periodSeconds: 1058960779
successThreshold: -341287812 successThreshold: -2133441986
tcpSocket: tcpSocket:
host: "304" host: "320"
port: "303" port: "319"
timeoutSeconds: -190183379 timeoutSeconds: 12533543
name: "271" name: "287"
ports: ports:
- containerPort: -379385405 - containerPort: -1296830577
hostIP: "277" hostIP: "293"
hostPort: 2058122084 hostPort: 1313273370
name: "276" name: "292"
protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f'
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "305" - "321"
failureThreshold: -385597677 failureThreshold: 620822482
httpGet: httpGet:
host: "308" host: "323"
httpHeaders: httpHeaders:
- name: "309" - name: "324"
value: "310" value: "325"
path: "306" path: "322"
port: "307" port: 1332783160
scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -1971421078 initialDelaySeconds: -300247800
periodSeconds: -1730959016 periodSeconds: -126958936
successThreshold: 1272940694 successThreshold: 186945072
tcpSocket: tcpSocket:
host: "311" host: "327"
port: 458427807 port: "326"
timeoutSeconds: 1905181464 timeoutSeconds: 386804041
resources: resources:
limits: limits:
'|E剒蔞|表徶đ寳议Ƭƶ氩': "337" 淳4揻-$ɽ丟×x锏ɟ: "178"
requests: requests:
"": "124" Ö闊 鰔澝qV: "752"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- SvEȤƏ埮p - '|ʐşƧ諔迮ƙIJ嘢'
drop: drop:
- '{WOŭW灬pȭCV擭銆jʒǚ鍰' - ʗN
privileged: false privileged: false
procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 741362943076737213 runAsGroup: 6726836758549163621
runAsNonRoot: false runAsNonRoot: false
runAsUser: 6726836758549163621 runAsUser: -6048969174364431391
seLinuxOptions: seLinuxOptions:
level: "331" level: "353"
role: "329" role: "351"
type: "330" type: "352"
user: "328" user: "350"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "333" gmsaCredentialSpec: "355"
gmsaCredentialSpecName: "332" gmsaCredentialSpecName: "354"
runAsUserName: "334" 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 stdin: true
stdinOnce: true stdinOnce: true
targetContainerName: "335" targetContainerName: "357"
terminationMessagePath: "327" terminationMessagePath: "349"
terminationMessagePolicy: Őnj汰8ŕ terminationMessagePolicy: ȤƏ埮pɵ
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "296" - devicePath: "312"
name: "295" name: "311"
volumeMounts: volumeMounts:
- mountPath: "292" - mountPath: "308"
mountPropagation: 簳°Ļǟi&皥贸 mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "291" name: "307"
subPath: "293" readOnly: true
subPathExpr: "294" subPath: "309"
workingDir: "275" subPathExpr: "310"
workingDir: "291"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "397" - "419"
ip: "396" ip: "418"
hostPID: true hostNetwork: true
hostname: "351" hostname: "373"
imagePullSecrets: imagePullSecrets:
- name: "350" - name: "372"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -507,37 +545,38 @@ spec:
name: "156" name: "156"
optional: false optional: false
image: "148" image: "148"
imagePullPolicy: Ŵ廷s{Ⱦdz@ imagePullPolicy: ŤǢʭ嵔棂p儼Ƿ裚瓶
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "188" - "196"
httpGet: httpGet:
host: "191" host: "199"
httpHeaders: httpHeaders:
- name: "192" - name: "200"
value: "193" value: "201"
path: "189" path: "197"
port: "190" port: "198"
scheme: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C'
tcpSocket: tcpSocket:
host: "194" host: "202"
port: 559781916 port: 2126876305
preStop: preStop:
exec: exec:
command: command:
- "195" - "203"
httpGet: httpGet:
host: "197" host: "206"
httpHeaders: httpHeaders:
- name: "198" - name: "207"
value: "199" value: "208"
path: "196" path: "204"
port: 1150375229 port: "205"
scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ scheme: Ŵ廷s{Ⱦdz@
tcpSocket: tcpSocket:
host: "200" host: "209"
port: -1696471293 port: 406308963
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -593,28 +632,49 @@ spec:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- ʋŀ樺ȃv渟7¤7d - +j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn
drop: drop:
- ƯĖ漘Z剚敍0)鈼¬麄p呝T - 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
privileged: true privileged: true
procMount: 瓧嫭塓烀罁胾^拜 procMount: fǣ萭旿@
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 825262458636305509 runAsGroup: 6506922239346928579
runAsNonRoot: true runAsNonRoot: true
runAsUser: 4181787587415673530 runAsUser: 1563703589270296759
seLinuxOptions: seLinuxOptions:
level: "205" level: "214"
role: "203" role: "212"
type: "204" type: "213"
user: "202" user: "211"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "207" gmsaCredentialSpec: "216"
gmsaCredentialSpecName: "206" gmsaCredentialSpecName: "215"
runAsUserName: "208" 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 stdin: true
stdinOnce: true stdinOnce: true
terminationMessagePath: "201" terminationMessagePath: "210"
terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 terminationMessagePolicy: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0
tty: true
volumeDevices: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -626,61 +686,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "340" nodeName: "362"
nodeSelector: nodeSelector:
"336": "337" "358": "359"
overhead: overhead:
癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" 4'ď曕椐敛n湙: "310"
preemptionPolicy: eáNRNJ丧鴻Ŀ preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐'
priority: 1690570439 priority: -1852730577
priorityClassName: "398" priorityClassName: "420"
readinessGates: readinessGates:
- conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅
restartPolicy: åe躒訙 restartPolicy: ɭɪǹ0衷,
runtimeClassName: "403" runtimeClassName: "425"
schedulerName: "393" schedulerName: "415"
securityContext: securityContext:
fsGroup: -7117039988160665426 fsGroup: 2585323675983182372
runAsGroup: 2548453080315983269 runAsGroup: 6386250802140824739
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7747616967629081728 runAsUser: -5315960194881172085
seLinuxOptions: seLinuxOptions:
level: "344" level: "366"
role: "342" role: "364"
type: "343" type: "365"
user: "341" user: "363"
supplementalGroups: supplementalGroups:
- -1193643752264108019 - -4480129203693517072
sysctls: sysctls:
- name: "348" - name: "370"
value: "349" value: "371"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "346" gmsaCredentialSpec: "368"
gmsaCredentialSpecName: "345" gmsaCredentialSpecName: "367"
runAsUserName: "347" runAsUserName: "369"
serviceAccount: "339" serviceAccount: "361"
serviceAccountName: "338" serviceAccountName: "360"
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "352" subdomain: "374"
terminationGracePeriodSeconds: 6942343986058351509 terminationGracePeriodSeconds: -3039830979334099524
tolerations: tolerations:
- effect: 料ȭzV镜籬ƽ - effect: ŽɣB矗E¸
key: "394" key: "416"
operator: ƹ| operator: 堺ʣ
tolerationSeconds: 935587338391120947 tolerationSeconds: -3532804738923434397
value: "395" value: "417"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: qW - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU
maxSkew: -137402083 maxSkew: -150478704
topologyKey: "404" topologyKey: "426"
whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -887,8 +947,8 @@ status:
collisionCount: -449319810 collisionCount: -449319810
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2469-07-10T03:20:34Z"
message: "412" message: "434"
reason: "411" reason: "433"
status: '''ƈoIǢ龞瞯å' status: '''ƈoIǢ龞瞯å'
type: "" type: ""
currentNumberScheduled: -1979737528 currentNumberScheduled: -1979737528

File diff suppressed because it is too large Load Diff

View File

@@ -30,10 +30,10 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 997447044 minReadySeconds: 212061711
progressDeadlineSeconds: 1791868025 progressDeadlineSeconds: -1707056814
replicas: 896585016 replicas: 896585016
revisionHistoryLimit: 989524452 revisionHistoryLimit: -1092090658
selector: selector:
matchExpressions: 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 - 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 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: strategy:
rollingUpdate: {} rollingUpdate: {}
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
template: template:
metadata: metadata:
annotations: annotations:
@@ -73,412 +74,446 @@ spec:
selfLink: "28" selfLink: "28"
uid: ?Qȫş uid: ?Qȫş
spec: spec:
activeDeadlineSeconds: -3214891994203952546 activeDeadlineSeconds: -8619192438821356882
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "352" - key: "372"
operator: n覦灲閈誹ʅ蕉 operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊'
values: values:
- "353" - "373"
matchFields: matchFields:
- key: "354" - key: "374"
operator: "" operator: ʨIk(dŊiɢzĮ蛋I滞
values: values:
- "355" - "375"
weight: 702968201 weight: 646133945
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "348" - key: "368"
operator: Ǚ( operator: ǧĒzŔ瘍N
values: values:
- "349" - "369"
matchFields: matchFields:
- key: "350" - key: "370"
operator: 瘍Nʊ輔3璾ėȜv1b繐汚 operator: ƽ眝{æ盪泙
values: values:
- "351" - "371"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - key: 8.--w0_1V7
operator: NotIn operator: In
values: values:
- 0..KpiS.oK-.O--5-yp8q_s-L - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "370" - "390"
topologyKey: "371" topologyKey: "391"
weight: 1195176401 weight: -855547676
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaces:
- "362" - "382"
topologyKey: "363" topologyKey: "383"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf
operator: In operator: DoesNotExist
values:
- ""
matchLabels: 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: namespaces:
- "386" - "406"
topologyKey: "387" topologyKey: "407"
weight: -1508769491 weight: 808399187
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - 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: NotIn operator: DoesNotExist
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: 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: namespaces:
- "378" - "398"
topologyKey: "379" topologyKey: "399"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "211" - "216"
command: command:
- "210" - "215"
env: env:
- name: "218" - name: "223"
value: "219" value: "224"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "225" key: "230"
name: "224" name: "229"
optional: false
fieldRef:
apiVersion: "220"
fieldPath: "221"
resourceFieldRef:
containerName: "222"
divisor: "771"
resource: "223"
secretKeyRef:
key: "227"
name: "226"
optional: true optional: true
fieldRef:
apiVersion: "225"
fieldPath: "226"
resourceFieldRef:
containerName: "227"
divisor: "595"
resource: "228"
secretKeyRef:
key: "232"
name: "231"
optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "216" name: "221"
optional: false optional: false
prefix: "215" prefix: "220"
secretRef: secretRef:
name: "217" name: "222"
optional: true optional: false
image: "209" image: "214"
imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "248" - "258"
httpGet: httpGet:
host: "250" host: "261"
httpHeaders: httpHeaders:
- name: "251" - name: "262"
value: "252" value: "263"
path: "249" path: "259"
port: -2013568185 port: "260"
scheme: '#yV''WKw(ğ儴Ůĺ}'
tcpSocket: tcpSocket:
host: "253" host: "264"
port: -20130017 port: 1943028037
preStop: preStop:
exec: exec:
command: command:
- "254" - "265"
httpGet: httpGet:
host: "256" host: "267"
httpHeaders: httpHeaders:
- name: "257" - name: "268"
value: "258" value: "269"
path: "255" path: "266"
port: -661937776 port: -1355476687
scheme: ØœȠƬQg鄠[颐o scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ
tcpSocket: tcpSocket:
host: "259" host: "271"
port: 461585849 port: "270"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "234" - "239"
failureThreshold: -93157681 failureThreshold: -1213051101
httpGet: httpGet:
host: "236" host: "241"
httpHeaders: httpHeaders:
- name: "237" - name: "242"
value: "238" value: "243"
path: "235" path: "240"
port: -1285424066 port: -1654678802
scheme: ni酛3ƁÀ scheme:
initialDelaySeconds: -2036074491 initialDelaySeconds: -775511009
periodSeconds: 165047920 periodSeconds: -228822833
successThreshold: -393291312 successThreshold: -970312425
tcpSocket: tcpSocket:
host: "240" host: "244"
port: "239" port: 391562775
timeoutSeconds: -148216266 timeoutSeconds: -832805508
name: "208" name: "213"
ports: ports:
- containerPort: 1923334396 - containerPort: -775325416
hostIP: "214" hostIP: "219"
hostPort: 474119379 hostPort: 62799871
name: "213" name: "218"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ protocol: t莭琽§ć\ ïì
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "241" - "245"
failureThreshold: 267768240 failureThreshold: 571739592
httpGet: 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" host: "247"
port: -832805508 httpHeaders:
timeoutSeconds: -970312425 - name: "248"
value: "249"
path: "246"
port: -1905643191
scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
initialDelaySeconds: 852780575
periodSeconds: 893823156
successThreshold: -1980314709
tcpSocket:
host: "251"
port: "250"
timeoutSeconds: -1252938503
resources: resources:
limits: limits:
: "777" N粕擓ƖHVe熼: "334"
requests: requests:
rʤî萨zvt莭琽§ć\ ïì: "80" 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- 昕Ĭ - E埄Ȁ朦 wƯ貾坢'
drop: drop:
- ó藢xɮĵȑ6L* - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
privileged: false privileged: false
procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 2540215688947167763 runAsGroup: -2408264753085021035
runAsNonRoot: false runAsNonRoot: true
runAsUser: -5835415947553716289 runAsUser: -2270595441829602368
seLinuxOptions: seLinuxOptions:
level: "264" level: "276"
role: "262" role: "274"
type: "263" type: "275"
user: "261" user: "273"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "266" gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "265" gmsaCredentialSpecName: "277"
runAsUserName: "267" runAsUserName: "279"
terminationMessagePath: "260" startupProbe:
terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ exec:
tty: true 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: volumeDevices:
- devicePath: "233" - devicePath: "238"
name: "232" name: "237"
volumeMounts: volumeMounts:
- mountPath: "229" - mountPath: "234"
mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S mountPropagation: 癃8鸖
name: "228" name: "233"
readOnly: true readOnly: true
subPath: "230" subPath: "235"
subPathExpr: "231" subPathExpr: "236"
workingDir: "212" workingDir: "217"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "394" - "414"
options: options:
- name: "396" - name: "416"
value: "397" value: "417"
searches: searches:
- "395" - "415"
dnsPolicy: 晲T[irȎ3Ĕ\ dnsPolicy: Ƶf
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "271" - "283"
command: command:
- "270" - "282"
env: env:
- name: "278" - name: "290"
value: "279" value: "291"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "285" key: "297"
name: "284" name: "296"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "280" apiVersion: "292"
fieldPath: "281" fieldPath: "293"
resourceFieldRef: resourceFieldRef:
containerName: "282" containerName: "294"
divisor: "185" divisor: "381"
resource: "283" resource: "295"
secretKeyRef: secretKeyRef:
key: "287" key: "299"
name: "286" name: "298"
optional: false optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "276" name: "288"
optional: false optional: false
prefix: "275" prefix: "287"
secretRef: secretRef:
name: "277" name: "289"
optional: false optional: true
image: "269" image: "281"
imagePullPolicy: 騎C"6x$1sȣ±p鋄 imagePullPolicy: ņ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "309" - "326"
httpGet: httpGet:
host: "311" host: "329"
httpHeaders: httpHeaders:
- name: "312" - name: "330"
value: "313" value: "331"
path: "310" path: "327"
port: -934378634 port: "328"
scheme: ɐ鰥 scheme: 幩šeSvEȤƏ埮pɵ
tcpSocket: tcpSocket:
host: "314" host: "333"
port: 630140708 port: "332"
preStop: preStop:
exec: exec:
command: command:
- "315" - "334"
httpGet: httpGet:
host: "318" host: "337"
httpHeaders: httpHeaders:
- name: "319" - name: "338"
value: "320" value: "339"
path: "316" path: "335"
port: "317" port: "336"
scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² scheme: ş
tcpSocket: tcpSocket:
host: "321" host: "341"
port: 2080874371 port: "340"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "294" - "306"
failureThreshold: 1993268896 failureThreshold: -300247800
httpGet: httpGet:
host: "297" host: "308"
httpHeaders: httpHeaders:
- name: "298" - name: "309"
value: "299" value: "310"
path: "295" path: "307"
port: "296" port: 865289071
scheme: scheme: iɥ嵐sC8
initialDelaySeconds: 711020087 initialDelaySeconds: -1513284745
periodSeconds: -1965247100 periodSeconds: -414121491
successThreshold: 218453478 successThreshold: -1862764022
tcpSocket: tcpSocket:
host: "300" host: "311"
port: 1315054653 port: -898536659
timeoutSeconds: 1103049140 timeoutSeconds: 1258370227
name: "268" name: "280"
ports: ports:
- containerPort: -677617960 - containerPort: -1137436579
hostIP: "274" hostIP: "286"
hostPort: -552281772 hostPort: 1868683352
name: "273" name: "285"
protocol: ŕ翑0展} protocol: 颶妧Ö闊
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "301" - "312"
failureThreshold: -1250314365 failureThreshold: 215186711
httpGet: httpGet:
host: "304" host: "314"
httpHeaders: httpHeaders:
- name: "305" - name: "315"
value: "306" value: "316"
path: "302" path: "313"
port: "303" port: 323903711
scheme: 'ƿ頀"冓鍓贯澔 ' scheme: J
initialDelaySeconds: 1058960779 initialDelaySeconds: 657418949
periodSeconds: 472742933 periodSeconds: 287654902
successThreshold: 50696420 successThreshold: -2062708879
tcpSocket: tcpSocket:
host: "308" host: "318"
port: "307" port: "317"
timeoutSeconds: -2133441986 timeoutSeconds: -992558278
resources: resources:
limits: limits:
鬶l獕;跣Hǝcw: "242" ²sNƗ¸g: "50"
requests: requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" 酊龨δ摖ȱğ_<: "118"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȹ均i绝5哇芆斩ìh4Ɋ - DŽ髐njʉBn(fǂǢ曣
drop: drop:
- Ȗ|ʐşƧ諔迮ƙIJ嘢4 - ay
privileged: false privileged: false
procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW procMount: 嗆u
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6618112330449141397 runAsGroup: -5996624450771474158
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4288903380102217677 runAsUser: 1958157659034146020
seLinuxOptions: seLinuxOptions:
level: "326" level: "346"
role: "324" role: "344"
type: "325" type: "345"
user: "323" user: "343"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "328" gmsaCredentialSpec: "348"
gmsaCredentialSpecName: "327" gmsaCredentialSpecName: "347"
runAsUserName: "329" runAsUserName: "349"
stdinOnce: true startupProbe:
targetContainerName: "330" exec:
terminationMessagePath: "322" command:
terminationMessagePolicy: 灩聋3趐囨鏻砅邻 - "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 tty: true
volumeDevices: volumeDevices:
- devicePath: "293" - devicePath: "305"
name: "292" name: "304"
volumeMounts: volumeMounts:
- mountPath: "289" - mountPath: "301"
mountPropagation: "" mountPropagation: ƺ蛜6Ɖ飴ɎiǨź
name: "288" name: "300"
subPath: "290" readOnly: true
subPathExpr: "291" subPath: "302"
workingDir: "272" subPathExpr: "303"
workingDir: "284"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "392" - "412"
ip: "391" ip: "411"
hostIPC: true hostNetwork: true
hostname: "346" hostname: "366"
imagePullSecrets: imagePullSecrets:
- name: "345" - name: "365"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -512,37 +547,38 @@ spec:
name: "156" name: "156"
optional: true optional: true
image: "148" image: "148"
imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "186" - "192"
httpGet: httpGet:
host: "189" host: "194"
httpHeaders: httpHeaders:
- name: "190" - name: "195"
value: "191" value: "196"
path: "187" path: "193"
port: "188" port: -2015604435
scheme: £ȹ嫰ƹǔw÷nI粛E煹 scheme: jƯĖ漘Z剚敍0)
tcpSocket: tcpSocket:
host: "192" host: "197"
port: 135036402 port: 424236719
preStop: preStop:
exec: exec:
command: command:
- "193" - "198"
httpGet: httpGet:
host: "195" host: "200"
httpHeaders: httpHeaders:
- name: "196" - name: "201"
value: "197" value: "202"
path: "194" path: "199"
port: -1188430996 port: -1131820775
scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 scheme: Ƿ裚瓶釆Ɗ+j忊
tcpSocket: tcpSocket:
host: "199" host: "204"
port: "198" port: "203"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -599,28 +635,47 @@ spec:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȫ焗捏ĨFħ籘Àǒɿʒ刽 - ""
drop: drop:
- 掏1ſ - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
privileged: true privileged: false
procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 3747003978559617838 runAsGroup: -8419423421380299597
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7739117973959656085 runAsUser: -6576869501326512452
seLinuxOptions: seLinuxOptions:
level: "204" level: "209"
role: "202" role: "207"
type: "203" type: "208"
user: "201" user: "206"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "206" gmsaCredentialSpec: "211"
gmsaCredentialSpecName: "205" gmsaCredentialSpecName: "210"
runAsUserName: "207" runAsUserName: "212"
stdin: true startupProbe:
stdinOnce: true exec:
terminationMessagePath: "200" command:
terminationMessagePolicy: ɩC - "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: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -632,60 +687,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "335" nodeName: "355"
nodeSelector: nodeSelector:
"331": "332" "351": "352"
overhead: overhead:
tHǽ÷閂抰^窄CǙķȈ: "97" 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607"
preemptionPolicy: ý筞X preemptionPolicy: eáNRNJ丧鴻Ŀ
priority: -1331113536 priority: 1690570439
priorityClassName: "393" priorityClassName: "413"
readinessGates: readinessGates:
- conditionType: mō6µɑ`ȗ<8^翜 - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳
restartPolicy: w妕眵笭/9崍h趭(娕 restartPolicy: T[
runtimeClassName: "398" runtimeClassName: "418"
schedulerName: "388" schedulerName: "408"
securityContext: securityContext:
fsGroup: 7747616967629081728 fsGroup: 760480547754807445
runAsGroup: 7461098988156705429 runAsGroup: -801152248124332545
runAsNonRoot: false runAsNonRoot: true
runAsUser: 4430285638700927057 runAsUser: -2781126825051715248
seLinuxOptions: seLinuxOptions:
level: "339" level: "359"
role: "337" role: "357"
type: "338" type: "358"
user: "336" user: "356"
supplementalGroups: supplementalGroups:
- 7866826580662861268 - 5255171395073905944
sysctls: sysctls:
- name: "343" - name: "363"
value: "344" value: "364"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "341" gmsaCredentialSpec: "361"
gmsaCredentialSpecName: "340" gmsaCredentialSpecName: "360"
runAsUserName: "342" runAsUserName: "362"
serviceAccount: "334" serviceAccount: "354"
serviceAccountName: "333" serviceAccountName: "353"
shareProcessNamespace: true shareProcessNamespace: false
subdomain: "347" subdomain: "367"
terminationGracePeriodSeconds: 6245571390016329382 terminationGracePeriodSeconds: -2738603156841903595
tolerations: tolerations:
- effect: 緍k¢茤 - effect: 料ȭzV镜籬ƽ
key: "389" key: "409"
operator: 抄3昞财Î嘝zʄ!ć operator: ƹ|
tolerationSeconds: 4096844323391966153 tolerationSeconds: 935587338391120947
value: "390" value: "410"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: qW
operator: DoesNotExist operator: In
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: 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 E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X
: x_.4dwFbuvEf55Y2k.F-4 maxSkew: -137402083
maxSkew: 1956797678 topologyKey: "419"
topologyKey: "399" whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥
whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -886,17 +942,17 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1734448297 availableReplicas: 1660081568
collisionCount: 1658632493 collisionCount: -1977467928
conditions: conditions:
- lastTransitionTime: "2674-07-14T13:22:49Z" - lastTransitionTime: "2146-08-16T07:05:27Z"
lastUpdateTime: "2674-04-10T12:16:26Z" lastUpdateTime: "2524-02-08T04:27:05Z"
message: "407" message: "427"
reason: "406" reason: "426"
status: ZÕW肤  status: Ƅ抄3昞财Î嘝zʄ
type: ȷ滣ƆƾȊ(XEfê澙凋B/ü type: 洅啶
observedGeneration: -1249679108465412698 observedGeneration: 2992108727478230062
readyReplicas: -1292943463 readyReplicas: 902022378
replicas: -1152625369 replicas: 407742062
unavailableReplicas: -1757575936 unavailableReplicas: 904244563
updatedReplicas: -1832836223 updatedReplicas: 2115789304

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

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

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

@@ -104,412 +104,450 @@ template:
selfLink: "45" selfLink: "45"
uid: Ȗ脵鴈Ō uid: Ȗ脵鴈Ō
spec: spec:
activeDeadlineSeconds: 3168496047243051519 activeDeadlineSeconds: 4755717378804967849
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "370" - key: "389"
operator: 撑¼蠾8餑噭 operator: W疪鑳w妕眵
values: values:
- "371" - "390"
matchFields: matchFields:
- key: "372" - key: "391"
operator: ɪǹ0衷,ƷƣMț譎懚XW疪鑳w operator: 躒訙Ǫʓ)ǂť嗆u8晲T[irȎ
values: values:
- "373" - "392"
weight: -1330095135 weight: -1588068441
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "366" - key: "385"
operator: "" operator: 餑噭DµņP)
values: values:
- "367" - "386"
matchFields: matchFields:
- key: "368" - key: "387"
operator: '{WOŭW灬pȭCV擭銆jʒǚ鍰' operator: ƷƣMț
values: values:
- "369" - "388"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: Ue_l2.._8s--Z
operator: DoesNotExist operator: In
values:
- A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a
matchLabels: 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: namespaces:
- "388" - "407"
topologyKey: "389" topologyKey: "408"
weight: -217760519 weight: 2102595797
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97
operator: NotIn operator: Exists
values:
- z
matchLabels: 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: namespaces:
- "380" - "399"
topologyKey: "381" topologyKey: "400"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: 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 - 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: NotIn operator: DoesNotExist
values:
- txb__-ex-_1_-ODgC_1-_V
matchLabels: 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: namespaces:
- "404" - "423"
topologyKey: "405" topologyKey: "424"
weight: -1851436166 weight: 754095416
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - 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: DoesNotExist operator: NotIn
values:
- 1_xJ1-lFA_Xf3.V0H2-.zHw.H__7
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n D-0: P.-.C_--.5
namespaces: namespaces:
- "396" - "415"
topologyKey: "397" topologyKey: "416"
automountServiceAccountToken: false automountServiceAccountToken: true
containers: containers:
- args: - args:
- "227" - "232"
command: command:
- "226" - "231"
env: env:
- name: "234" - name: "239"
value: "235" value: "240"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "241" key: "246"
name: "240" name: "245"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "236" apiVersion: "241"
fieldPath: "237" fieldPath: "242"
resourceFieldRef: resourceFieldRef:
containerName: "238" containerName: "243"
divisor: "103" divisor: "506"
resource: "239" resource: "244"
secretKeyRef: secretKeyRef:
key: "243" key: "248"
name: "242" name: "247"
optional: false
envFrom:
- configMapRef:
name: "232"
optional: true
prefix: "231"
secretRef:
name: "233"
optional: true
image: "225"
imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}'
lifecycle:
postStart:
exec:
command:
- "264"
httpGet:
host: "266"
httpHeaders:
- name: "267"
value: "268"
path: "265"
port: -498930176
scheme: ' R§耶Ff'
tcpSocket:
host: "270"
port: "269"
preStop:
exec:
command:
- "271"
httpGet:
host: "273"
httpHeaders:
- name: "274"
value: "275"
path: "272"
port: -331283026
scheme: ȉ
tcpSocket:
host: "276"
port: 714088955
livenessProbe:
exec:
command:
- "250"
failureThreshold: 10098903
httpGet:
host: "252"
httpHeaders:
- name: "253"
value: "254"
path: "251"
port: -1821078703
scheme: 萨zvt
initialDelaySeconds: -503805926
periodSeconds: -763687725
successThreshold: -246563990
tcpSocket:
host: "255"
port: 1182477686
timeoutSeconds: 77312514
name: "224"
ports:
- containerPort: 1024248645
hostIP: "230"
hostPort: -321513994
name: "229"
protocol: 籘Àǒɿʒ刽ʼn
readinessProbe:
exec:
command:
- "256"
failureThreshold: 1255258741
httpGet:
host: "259"
httpHeaders:
- name: "260"
value: "261"
path: "257"
port: "258"
scheme: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S
initialDelaySeconds: 932904270
periodSeconds: 100356493
successThreshold: -110792150
tcpSocket:
host: "263"
port: "262"
timeoutSeconds: 1810980158
resources:
limits:
x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ: "861"
requests:
悖ȩ0Ƹ[Ęİ榌U: "396"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 胵輓Ɔ
drop:
- ""
privileged: true
procMount: g>郵[+扴ȨŮ+朷Ǝ膯lj
readOnlyRootFilesystem: true
runAsGroup: -3460863886200664373
runAsNonRoot: false
runAsUser: -7735837526010191986
seLinuxOptions:
level: "281"
role: "279"
type: "280"
user: "278"
windowsOptions:
gmsaCredentialSpec: "283"
gmsaCredentialSpecName: "282"
runAsUserName: "284"
stdin: true
terminationMessagePath: "277"
terminationMessagePolicy: źȰ?$矡ȶ网棊ʢ=wǕɳ
volumeDevices:
- devicePath: "249"
name: "248"
volumeMounts:
- mountPath: "245"
mountPropagation: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐'
name: "244"
readOnly: true
subPath: "246"
subPathExpr: "247"
workingDir: "228"
dnsConfig:
nameservers:
- "412"
options:
- name: "414"
value: "415"
searches:
- "413"
dnsPolicy: Ǒ
enableServiceLinks: false
ephemeralContainers:
- args:
- "288"
command:
- "287"
env:
- name: "295"
value: "296"
valueFrom:
configMapKeyRef:
key: "302"
name: "301"
optional: false
fieldRef:
apiVersion: "297"
fieldPath: "298"
resourceFieldRef:
containerName: "299"
divisor: "340"
resource: "300"
secretKeyRef:
key: "304"
name: "303"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "293" name: "237"
optional: true optional: true
prefix: "292" prefix: "236"
secretRef: secretRef:
name: "294" name: "238"
optional: true optional: false
image: "286" image: "230"
imagePullPolicy: 冓鍓贯 imagePullPolicy: Ǜv+8Ƥ熪军g>郵[+扴ȨŮ+
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "325" - "275"
httpGet: httpGet:
host: "328" host: "277"
httpHeaders: httpHeaders:
- name: "329" - name: "278"
value: "330" value: "279"
path: "326" path: "276"
port: "327" port: 630004123
scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄' scheme: ɾģ毋Ó6dz娝嘚
tcpSocket: tcpSocket:
host: "332" host: "280"
port: "331" port: -1213051101
preStop: preStop:
exec: exec:
command: command:
- "333" - "281"
httpGet: httpGet:
host: "336" host: "283"
httpHeaders: httpHeaders:
- name: "337" - name: "284"
value: "338" value: "285"
path: "334" path: "282"
port: "335" port: -1905643191
scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸 scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
tcpSocket: tcpSocket:
host: "339" host: "287"
port: 1315054653 port: "286"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "311" - "255"
failureThreshold: 1941923625 failureThreshold: -1171167638
httpGet: httpGet:
host: "314" host: "257"
httpHeaders: httpHeaders:
- name: "315" - name: "258"
value: "316" value: "259"
path: "312" path: "256"
port: "313" port: -1180080716
scheme: 忊|E剒 scheme: Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮
initialDelaySeconds: -1313320434 initialDelaySeconds: 1524276356
periodSeconds: 465972736 periodSeconds: -1561418761
successThreshold: -1784617397 successThreshold: -1452676801
tcpSocket: tcpSocket:
host: "317" host: "260"
port: 1004325340 port: -161485752
timeoutSeconds: 14304392 timeoutSeconds: -521487971
name: "285" name: "229"
ports: ports:
- containerPort: 1040396664 - containerPort: 1048864116
hostIP: "291" hostIP: "235"
hostPort: -602419938 hostPort: 427196286
name: "290" name: "234"
protocol: 爻ƙt叀碧闳ȩr嚧ʣq埄 protocol: /樝fw[Řż丩ŽoǠŻʘY賃ɪ
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "318" - "261"
failureThreshold: 656200799 failureThreshold: 59664438
httpGet: httpGet:
host: "320" host: "263"
httpHeaders: httpHeaders:
- name: "321" - name: "264"
value: "322" value: "265"
path: "319" path: "262"
port: 432291364 port: 2141389898
initialDelaySeconds: -677617960 scheme: 皚|
periodSeconds: -1717997927 initialDelaySeconds: 766864314
successThreshold: 1533365989 periodSeconds: 1495880465
successThreshold: -1032967081
tcpSocket: tcpSocket:
host: "324" host: "267"
port: "323" port: "266"
timeoutSeconds: 383015301 timeoutSeconds: 1146016612
resources: resources:
limits: limits:
"": "548" ƻ悖ȩ0Ƹ[: "672"
requests: requests:
ñKJɐ扵Gƚ绤: "879" "": "988"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- ƺ蛜6Ɖ飴ɎiǨź - ""
drop: drop:
- ǵɐ鰥Z - ljVX1虊谇j爻ƙt叀碧
privileged: true privileged: true
procMount: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² procMount: ʁ岼昕ĬÇ
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: 1006111877741141889 runAsGroup: -6641599652770442851
runAsNonRoot: false runAsNonRoot: true
runAsUser: -500234369132816308 runAsUser: 77796669038602313
seLinuxOptions: seLinuxOptions:
level: "344" level: "292"
role: "342" role: "290"
type: "343" type: "291"
user: "341" user: "289"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "346" gmsaCredentialSpec: "294"
gmsaCredentialSpecName: "345" gmsaCredentialSpecName: "293"
runAsUserName: "347" 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 stdin: true
stdinOnce: true stdinOnce: true
targetContainerName: "348" targetContainerName: "367"
terminationMessagePath: "340" terminationMessagePath: "359"
terminationMessagePolicy: 蚃ɣľ)酊龨δ摖ȱ terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź
tty: true
volumeDevices: volumeDevices:
- devicePath: "310" - devicePath: "321"
name: "309" name: "320"
volumeMounts: volumeMounts:
- mountPath: "306" - mountPath: "317"
mountPropagation: 敄lu| mountPropagation: 翑0展}硐庰%皧V垾
name: "305" name: "316"
readOnly: true readOnly: true
subPath: "307" subPath: "318"
subPathExpr: "308" subPathExpr: "319"
workingDir: "289" workingDir: "300"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "410" - "429"
ip: "409" ip: "428"
hostIPC: true hostNetwork: true
hostPID: true hostPID: true
hostname: "364" hostname: "383"
imagePullSecrets: imagePullSecrets:
- name: "363" - name: "382"
initContainers: initContainers:
- args: - args:
- "167" - "167"
@@ -543,38 +581,37 @@ template:
name: "173" name: "173"
optional: true optional: true
image: "165" image: "165"
imagePullPolicy: 4y£軶ǃ*ʙ嫙&蒒5 imagePullPolicy: ŴĿ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "202" - "208"
httpGet: httpGet:
host: "205" host: "210"
httpHeaders: httpHeaders:
- name: "206" - name: "211"
value: "207" value: "212"
path: "203" path: "209"
port: "204" port: 1381010768
scheme: Ɖ立hdz緄Ú|dk_瀹鞎 scheme: ö
tcpSocket: tcpSocket:
host: "208" host: "213"
port: 1150375229 port: 1135182169
preStop: preStop:
exec: exec:
command: command:
- "209" - "214"
httpGet: httpGet:
host: "212" host: "216"
httpHeaders: httpHeaders:
- name: "213" - name: "217"
value: "214" value: "218"
path: "210" path: "215"
port: "211" port: 1054302708
scheme: '鲡:'
tcpSocket: tcpSocket:
host: "215" host: "220"
port: -2037320199 port: "219"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -628,31 +665,49 @@ template:
requests: requests:
T捘ɍi縱ù墴: "848" T捘ɍi縱ù墴: "848"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- '''ɵK.Q貇£ȹ嫰ƹǔw÷' - Áȉ彂Ŵ廷s{Ⱦdz@ùƸ
drop: drop:
- I粛E煹ǐƲE'iþŹʣy - ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0
privileged: false privileged: true
procMount: ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ procMount: 邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: -4491268618106522555 runAsGroup: -8724223413734010757
runAsNonRoot: true runAsNonRoot: true
runAsUser: -3150075726777852858 runAsUser: 6116261698850084527
seLinuxOptions: seLinuxOptions:
level: "220" level: "225"
role: "218" role: "223"
type: "219" type: "224"
user: "217" user: "222"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "222" gmsaCredentialSpec: "227"
gmsaCredentialSpecName: "221" gmsaCredentialSpecName: "226"
runAsUserName: "223" runAsUserName: "228"
stdinOnce: true startupProbe:
terminationMessagePath: "216" exec:
terminationMessagePolicy: '@Ȗs«öʮĀ<é瞾' command:
tty: true - "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: volumeDevices:
- devicePath: "189" - devicePath: "189"
name: "188" name: "188"
@@ -664,61 +719,59 @@ template:
subPath: "186" subPath: "186"
subPathExpr: "187" subPathExpr: "187"
workingDir: "168" workingDir: "168"
nodeName: "353" nodeName: "372"
nodeSelector: nodeSelector:
"349": "350" "368": "369"
overhead: overhead:
4'ď曕椐敛n湙: "310" tŧK剛Ʀ魨练脨,Ƃ3貊: "972"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鬙Ǒȃ绡>堵zŕƧ钖孝0蛮xAǫ
priority: -1852730577 priority: -966330786
priorityClassName: "411" priorityClassName: "430"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: 齔試ŭ
restartPolicy: ǦŐnj汰8ŕİi騎C" restartPolicy: 幩šeSvEȤƏ埮pɵ
runtimeClassName: "416" runtimeClassName: "435"
schedulerName: "406" schedulerName: "425"
securityContext: securityContext:
fsGroup: -1335795712555820375 fsGroup: -5265121980497361308
runAsGroup: 3557544419897236324 runAsGroup: 2006200781539567705
runAsNonRoot: true runAsNonRoot: true
runAsUser: 4608737617101049023 runAsUser: 1287380841622288898
seLinuxOptions: seLinuxOptions:
level: "357" level: "376"
role: "355" role: "374"
type: "356" type: "375"
user: "354" user: "373"
supplementalGroups: supplementalGroups:
- 5014869561632118364 - 6618112330449141397
sysctls: sysctls:
- name: "361" - name: "380"
value: "362" value: "381"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "359" gmsaCredentialSpec: "378"
gmsaCredentialSpecName: "358" gmsaCredentialSpecName: "377"
runAsUserName: "360" runAsUserName: "379"
serviceAccount: "352" serviceAccount: "371"
serviceAccountName: "351" serviceAccountName: "370"
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "365" subdomain: "384"
terminationGracePeriodSeconds: 2582126978155733738 terminationGracePeriodSeconds: -3123571459188372202
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: ǣʛsĊ剞鮧軷șlļė[BN柌ë
key: "407" key: "426"
operator: 堺ʣ operator: z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜
tolerationSeconds: -3532804738923434397 tolerationSeconds: -9161243904952859304
value: "408" value: "427"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: RT.0zo
operator: In operator: DoesNotExist
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP: q-JM
maxSkew: -150478704 maxSkew: 2088809792
topologyKey: "417" topologyKey: "436"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: 縊CkǚŨ镦
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "64" fsType: "64"
@@ -920,4 +973,4 @@ template:
storagePolicyID: "121" storagePolicyID: "121"
storagePolicyName: "120" storagePolicyName: "120"
volumePath: "118" volumePath: "118"
ttlSecondsAfterFinished: 920774957 ttlSecondsAfterFinished: 246849509

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

@@ -104,412 +104,450 @@ template:
selfLink: "45" selfLink: "45"
uid: Ȗ脵鴈Ō uid: Ȗ脵鴈Ō
spec: spec:
activeDeadlineSeconds: 3168496047243051519 activeDeadlineSeconds: 4755717378804967849
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "370" - key: "389"
operator: 撑¼蠾8餑噭 operator: W疪鑳w妕眵
values: values:
- "371" - "390"
matchFields: matchFields:
- key: "372" - key: "391"
operator: ɪǹ0衷,ƷƣMț譎懚XW疪鑳w operator: 躒訙Ǫʓ)ǂť嗆u8晲T[irȎ
values: values:
- "373" - "392"
weight: -1330095135 weight: -1588068441
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "366" - key: "385"
operator: "" operator: 餑噭DµņP)
values: values:
- "367" - "386"
matchFields: matchFields:
- key: "368" - key: "387"
operator: '{WOŭW灬pȭCV擭銆jʒǚ鍰' operator: ƷƣMț
values: values:
- "369" - "388"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: Ue_l2.._8s--Z
operator: DoesNotExist operator: In
values:
- A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a
matchLabels: 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: namespaces:
- "388" - "407"
topologyKey: "389" topologyKey: "408"
weight: -217760519 weight: 2102595797
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97
operator: NotIn operator: Exists
values:
- z
matchLabels: 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: namespaces:
- "380" - "399"
topologyKey: "381" topologyKey: "400"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: 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 - 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: NotIn operator: DoesNotExist
values:
- txb__-ex-_1_-ODgC_1-_V
matchLabels: 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: namespaces:
- "404" - "423"
topologyKey: "405" topologyKey: "424"
weight: -1851436166 weight: 754095416
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - 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: DoesNotExist operator: NotIn
values:
- 1_xJ1-lFA_Xf3.V0H2-.zHw.H__7
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n D-0: P.-.C_--.5
namespaces: namespaces:
- "396" - "415"
topologyKey: "397" topologyKey: "416"
automountServiceAccountToken: false automountServiceAccountToken: true
containers: containers:
- args: - args:
- "227" - "232"
command: command:
- "226" - "231"
env: env:
- name: "234" - name: "239"
value: "235" value: "240"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "241" key: "246"
name: "240" name: "245"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "236" apiVersion: "241"
fieldPath: "237" fieldPath: "242"
resourceFieldRef: resourceFieldRef:
containerName: "238" containerName: "243"
divisor: "103" divisor: "506"
resource: "239" resource: "244"
secretKeyRef: secretKeyRef:
key: "243" key: "248"
name: "242" name: "247"
optional: false
envFrom:
- configMapRef:
name: "232"
optional: true
prefix: "231"
secretRef:
name: "233"
optional: true
image: "225"
imagePullPolicy: '#yV''WKw(ğ儴Ůĺ}'
lifecycle:
postStart:
exec:
command:
- "264"
httpGet:
host: "266"
httpHeaders:
- name: "267"
value: "268"
path: "265"
port: -498930176
scheme: ' R§耶Ff'
tcpSocket:
host: "270"
port: "269"
preStop:
exec:
command:
- "271"
httpGet:
host: "273"
httpHeaders:
- name: "274"
value: "275"
path: "272"
port: -331283026
scheme: ȉ
tcpSocket:
host: "276"
port: 714088955
livenessProbe:
exec:
command:
- "250"
failureThreshold: 10098903
httpGet:
host: "252"
httpHeaders:
- name: "253"
value: "254"
path: "251"
port: -1821078703
scheme: 萨zvt
initialDelaySeconds: -503805926
periodSeconds: -763687725
successThreshold: -246563990
tcpSocket:
host: "255"
port: 1182477686
timeoutSeconds: 77312514
name: "224"
ports:
- containerPort: 1024248645
hostIP: "230"
hostPort: -321513994
name: "229"
protocol: 籘Àǒɿʒ刽ʼn
readinessProbe:
exec:
command:
- "256"
failureThreshold: 1255258741
httpGet:
host: "259"
httpHeaders:
- name: "260"
value: "261"
path: "257"
port: "258"
scheme: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S
initialDelaySeconds: 932904270
periodSeconds: 100356493
successThreshold: -110792150
tcpSocket:
host: "263"
port: "262"
timeoutSeconds: 1810980158
resources:
limits:
x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ: "861"
requests:
悖ȩ0Ƹ[Ęİ榌U: "396"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 胵輓Ɔ
drop:
- ""
privileged: true
procMount: g>郵[+扴ȨŮ+朷Ǝ膯lj
readOnlyRootFilesystem: true
runAsGroup: -3460863886200664373
runAsNonRoot: false
runAsUser: -7735837526010191986
seLinuxOptions:
level: "281"
role: "279"
type: "280"
user: "278"
windowsOptions:
gmsaCredentialSpec: "283"
gmsaCredentialSpecName: "282"
runAsUserName: "284"
stdin: true
terminationMessagePath: "277"
terminationMessagePolicy: źȰ?$矡ȶ网棊ʢ=wǕɳ
volumeDevices:
- devicePath: "249"
name: "248"
volumeMounts:
- mountPath: "245"
mountPropagation: '>懔%熷谟þ蛯ɰ荶ljʁ揆ɘȌ脾嚏吐'
name: "244"
readOnly: true
subPath: "246"
subPathExpr: "247"
workingDir: "228"
dnsConfig:
nameservers:
- "412"
options:
- name: "414"
value: "415"
searches:
- "413"
dnsPolicy: Ǒ
enableServiceLinks: false
ephemeralContainers:
- args:
- "288"
command:
- "287"
env:
- name: "295"
value: "296"
valueFrom:
configMapKeyRef:
key: "302"
name: "301"
optional: false
fieldRef:
apiVersion: "297"
fieldPath: "298"
resourceFieldRef:
containerName: "299"
divisor: "340"
resource: "300"
secretKeyRef:
key: "304"
name: "303"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "293" name: "237"
optional: true optional: true
prefix: "292" prefix: "236"
secretRef: secretRef:
name: "294" name: "238"
optional: true optional: false
image: "286" image: "230"
imagePullPolicy: 冓鍓贯 imagePullPolicy: Ǜv+8Ƥ熪军g>郵[+扴ȨŮ+
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "325" - "275"
httpGet: httpGet:
host: "328" host: "277"
httpHeaders: httpHeaders:
- name: "329" - name: "278"
value: "330" value: "279"
path: "326" path: "276"
port: "327" port: 630004123
scheme: '%皧V垾现葢ŵ橨鬶l獕;跣Hǝcw媀瓄' scheme: ɾģ毋Ó6dz娝嘚
tcpSocket: tcpSocket:
host: "332" host: "280"
port: "331" port: -1213051101
preStop: preStop:
exec: exec:
command: command:
- "333" - "281"
httpGet: httpGet:
host: "336" host: "283"
httpHeaders: httpHeaders:
- name: "337" - name: "284"
value: "338" value: "285"
path: "334" path: "282"
port: "335" port: -1905643191
scheme: 锏ɟ4Ǒ輂,ŕĪĠM蘇KŅ/»頸 scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
tcpSocket: tcpSocket:
host: "339" host: "287"
port: 1315054653 port: "286"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "311" - "255"
failureThreshold: 1941923625 failureThreshold: -1171167638
httpGet: httpGet:
host: "314" host: "257"
httpHeaders: httpHeaders:
- name: "315" - name: "258"
value: "316" value: "259"
path: "312" path: "256"
port: "313" port: -1180080716
scheme: 忊|E剒 scheme: Ȍ脾嚏吐ĠLƐȤ藠3.v-鿧悮
initialDelaySeconds: -1313320434 initialDelaySeconds: 1524276356
periodSeconds: 465972736 periodSeconds: -1561418761
successThreshold: -1784617397 successThreshold: -1452676801
tcpSocket: tcpSocket:
host: "317" host: "260"
port: 1004325340 port: -161485752
timeoutSeconds: 14304392 timeoutSeconds: -521487971
name: "285" name: "229"
ports: ports:
- containerPort: 1040396664 - containerPort: 1048864116
hostIP: "291" hostIP: "235"
hostPort: -602419938 hostPort: 427196286
name: "290" name: "234"
protocol: 爻ƙt叀碧闳ȩr嚧ʣq埄 protocol: /樝fw[Řż丩ŽoǠŻʘY賃ɪ
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "318" - "261"
failureThreshold: 656200799 failureThreshold: 59664438
httpGet: httpGet:
host: "320" host: "263"
httpHeaders: httpHeaders:
- name: "321" - name: "264"
value: "322" value: "265"
path: "319" path: "262"
port: 432291364 port: 2141389898
initialDelaySeconds: -677617960 scheme: 皚|
periodSeconds: -1717997927 initialDelaySeconds: 766864314
successThreshold: 1533365989 periodSeconds: 1495880465
successThreshold: -1032967081
tcpSocket: tcpSocket:
host: "324" host: "267"
port: "323" port: "266"
timeoutSeconds: 383015301 timeoutSeconds: 1146016612
resources: resources:
limits: limits:
"": "548" ƻ悖ȩ0Ƹ[: "672"
requests: requests:
ñKJɐ扵Gƚ绤: "879" "": "988"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- ƺ蛜6Ɖ飴ɎiǨź - ""
drop: drop:
- ǵɐ鰥Z - ljVX1虊谇j爻ƙt叀碧
privileged: true privileged: true
procMount: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² procMount: ʁ岼昕ĬÇ
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: 1006111877741141889 runAsGroup: -6641599652770442851
runAsNonRoot: false runAsNonRoot: true
runAsUser: -500234369132816308 runAsUser: 77796669038602313
seLinuxOptions: seLinuxOptions:
level: "344" level: "292"
role: "342" role: "290"
type: "343" type: "291"
user: "341" user: "289"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "346" gmsaCredentialSpec: "294"
gmsaCredentialSpecName: "345" gmsaCredentialSpecName: "293"
runAsUserName: "347" 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 stdin: true
stdinOnce: true stdinOnce: true
targetContainerName: "348" targetContainerName: "367"
terminationMessagePath: "340" terminationMessagePath: "359"
terminationMessagePolicy: 蚃ɣľ)酊龨δ摖ȱ terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź
tty: true
volumeDevices: volumeDevices:
- devicePath: "310" - devicePath: "321"
name: "309" name: "320"
volumeMounts: volumeMounts:
- mountPath: "306" - mountPath: "317"
mountPropagation: 敄lu| mountPropagation: 翑0展}硐庰%皧V垾
name: "305" name: "316"
readOnly: true readOnly: true
subPath: "307" subPath: "318"
subPathExpr: "308" subPathExpr: "319"
workingDir: "289" workingDir: "300"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "410" - "429"
ip: "409" ip: "428"
hostIPC: true hostNetwork: true
hostPID: true hostPID: true
hostname: "364" hostname: "383"
imagePullSecrets: imagePullSecrets:
- name: "363" - name: "382"
initContainers: initContainers:
- args: - args:
- "167" - "167"
@@ -543,38 +581,37 @@ template:
name: "173" name: "173"
optional: true optional: true
image: "165" image: "165"
imagePullPolicy: 4y£軶ǃ*ʙ嫙&蒒5 imagePullPolicy: ŴĿ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "202" - "208"
httpGet: httpGet:
host: "205" host: "210"
httpHeaders: httpHeaders:
- name: "206" - name: "211"
value: "207" value: "212"
path: "203" path: "209"
port: "204" port: 1381010768
scheme: Ɖ立hdz緄Ú|dk_瀹鞎 scheme: ö
tcpSocket: tcpSocket:
host: "208" host: "213"
port: 1150375229 port: 1135182169
preStop: preStop:
exec: exec:
command: command:
- "209" - "214"
httpGet: httpGet:
host: "212" host: "216"
httpHeaders: httpHeaders:
- name: "213" - name: "217"
value: "214" value: "218"
path: "210" path: "215"
port: "211" port: 1054302708
scheme: '鲡:'
tcpSocket: tcpSocket:
host: "215" host: "220"
port: -2037320199 port: "219"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -628,31 +665,49 @@ template:
requests: requests:
T捘ɍi縱ù墴: "848" T捘ɍi縱ù墴: "848"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- '''ɵK.Q貇£ȹ嫰ƹǔw÷' - Áȉ彂Ŵ廷s{Ⱦdz@ùƸ
drop: drop:
- I粛E煹ǐƲE'iþŹʣy - ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0
privileged: false privileged: true
procMount: ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ procMount: 邪匾mɩC[ó瓧嫭塓烀罁胾^拜Ȍ
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: -4491268618106522555 runAsGroup: -8724223413734010757
runAsNonRoot: true runAsNonRoot: true
runAsUser: -3150075726777852858 runAsUser: 6116261698850084527
seLinuxOptions: seLinuxOptions:
level: "220" level: "225"
role: "218" role: "223"
type: "219" type: "224"
user: "217" user: "222"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "222" gmsaCredentialSpec: "227"
gmsaCredentialSpecName: "221" gmsaCredentialSpecName: "226"
runAsUserName: "223" runAsUserName: "228"
stdinOnce: true startupProbe:
terminationMessagePath: "216" exec:
terminationMessagePolicy: '@Ȗs«öʮĀ<é瞾' command:
tty: true - "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: volumeDevices:
- devicePath: "189" - devicePath: "189"
name: "188" name: "188"
@@ -664,61 +719,59 @@ template:
subPath: "186" subPath: "186"
subPathExpr: "187" subPathExpr: "187"
workingDir: "168" workingDir: "168"
nodeName: "353" nodeName: "372"
nodeSelector: nodeSelector:
"349": "350" "368": "369"
overhead: overhead:
4'ď曕椐敛n湙: "310" tŧK剛Ʀ魨练脨,Ƃ3貊: "972"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鬙Ǒȃ绡>堵zŕƧ钖孝0蛮xAǫ
priority: -1852730577 priority: -966330786
priorityClassName: "411" priorityClassName: "430"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: 齔試ŭ
restartPolicy: ǦŐnj汰8ŕİi騎C" restartPolicy: 幩šeSvEȤƏ埮pɵ
runtimeClassName: "416" runtimeClassName: "435"
schedulerName: "406" schedulerName: "425"
securityContext: securityContext:
fsGroup: -1335795712555820375 fsGroup: -5265121980497361308
runAsGroup: 3557544419897236324 runAsGroup: 2006200781539567705
runAsNonRoot: true runAsNonRoot: true
runAsUser: 4608737617101049023 runAsUser: 1287380841622288898
seLinuxOptions: seLinuxOptions:
level: "357" level: "376"
role: "355" role: "374"
type: "356" type: "375"
user: "354" user: "373"
supplementalGroups: supplementalGroups:
- 5014869561632118364 - 6618112330449141397
sysctls: sysctls:
- name: "361" - name: "380"
value: "362" value: "381"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "359" gmsaCredentialSpec: "378"
gmsaCredentialSpecName: "358" gmsaCredentialSpecName: "377"
runAsUserName: "360" runAsUserName: "379"
serviceAccount: "352" serviceAccount: "371"
serviceAccountName: "351" serviceAccountName: "370"
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "365" subdomain: "384"
terminationGracePeriodSeconds: 2582126978155733738 terminationGracePeriodSeconds: -3123571459188372202
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: ǣʛsĊ剞鮧軷șlļė[BN柌ë
key: "407" key: "426"
operator: 堺ʣ operator: z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜
tolerationSeconds: -3532804738923434397 tolerationSeconds: -9161243904952859304
value: "408" value: "427"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: RT.0zo
operator: In operator: DoesNotExist
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP: q-JM
maxSkew: -150478704 maxSkew: 2088809792
topologyKey: "417" topologyKey: "436"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: 縊CkǚŨ镦
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "64" fsType: "64"
@@ -920,4 +973,4 @@ template:
storagePolicyID: "121" storagePolicyID: "121"
storagePolicyName: "120" storagePolicyName: "120"
volumePath: "118" volumePath: "118"
ttlSecondsAfterFinished: 920774957 ttlSecondsAfterFinished: 246849509

View File

@@ -178,40 +178,46 @@
"successThreshold": 552512122, "successThreshold": 552512122,
"failureThreshold": -833209928 "failureThreshold": -833209928
}, },
"startupProbe": {
"exec": {
"command": [
"59"
]
},
"httpGet": {
"path": "60",
"port": 180803110,
"host": "61",
"scheme": "ņ錕?øēƺ",
"httpHeaders": [
{
"name": "62",
"value": "63"
}
]
},
"tcpSocket": {
"port": "64",
"host": "65"
},
"initialDelaySeconds": -816398166,
"timeoutSeconds": 1229400382,
"periodSeconds": -1583208879,
"successThreshold": 1088264954,
"failureThreshold": 13573196
},
"lifecycle": { "lifecycle": {
"postStart": { "postStart": {
"exec": { "exec": {
"command": [ "command": [
"59" "66"
] ]
}, },
"httpGet": { "httpGet": {
"path": "60", "path": "67",
"port": 1114837452, "port": -1293912096,
"host": "61",
"httpHeaders": [
{
"name": "62",
"value": "63"
}
]
},
"tcpSocket": {
"port": 672648281,
"host": "64"
}
},
"preStop": {
"exec": {
"command": [
"65"
]
},
"httpGet": {
"path": "66",
"port": "67",
"host": "68", "host": "68",
"scheme": "魋Ď儇击3ƆìQ喞艋涽", "scheme": "託仭",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "69", "name": "69",
@@ -223,41 +229,64 @@
"port": "71", "port": "71",
"host": "72" "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", "terminationMessagePath": "81",
"terminationMessagePolicy": "w-檮Ǣ冖ž琔n宂¬轚9Ȏ瀮", "terminationMessagePolicy": "Ņ£",
"imagePullPolicy": "/",
"securityContext": { "securityContext": {
"capabilities": { "capabilities": {
"add": [ "add": [
"-议}ȧ外ĺ稥氹Ç|¶" "2Ō¾\\ĒP鄸靇杧ž"
], ],
"drop": [ "drop": [
"¡ Ɠ(嘒ėf倐ȓ圬剴扲ȿQZ" "娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^"
] ]
}, },
"privileged": true, "privileged": false,
"seLinuxOptions": { "seLinuxOptions": {
"user": "74", "user": "82",
"role": "75", "role": "83",
"type": "76", "type": "84",
"level": "77" "level": "85"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "78", "gmsaCredentialSpecName": "86",
"gmsaCredentialSpec": "79", "gmsaCredentialSpec": "87",
"runAsUserName": "80" "runAsUserName": "88"
}, },
"runAsUser": -2195720433245498980, "runAsUser": 4491726672505793472,
"runAsGroup": -3031446704001093654, "runAsGroup": -5441351197948631872,
"runAsNonRoot": true, "runAsNonRoot": true,
"readOnlyRootFilesystem": true, "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true, "allowPrivilegeEscalation": true,
"procMount": "1ZƜ/C龷" "procMount": "ĭÐl恕ɍȇ廄裭4懙"
}, },
"stdinOnce": true, "stdin": true,
"targetContainerName": "81" "tty": true,
"targetContainerName": "89"
} }
] ]
} }

View File

@@ -32,37 +32,37 @@ ephemeralContainers:
name: "28" name: "28"
optional: false optional: false
image: "20" image: "20"
imagePullPolicy: /
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "59" - "66"
httpGet:
host: "61"
httpHeaders:
- name: "62"
value: "63"
path: "60"
port: 1114837452
tcpSocket:
host: "64"
port: 672648281
preStop:
exec:
command:
- "65"
httpGet: httpGet:
host: "68" host: "68"
httpHeaders: httpHeaders:
- name: "69" - name: "69"
value: "70" value: "70"
path: "66" path: "67"
port: "67" port: -1293912096
scheme: 魋Ď儇击3ƆìQ喞艋涽 scheme: 託仭
tcpSocket: tcpSocket:
host: "72" host: "72"
port: "71" 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: livenessProbe:
exec: exec:
command: command:
@@ -118,28 +118,49 @@ ephemeralContainers:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- -议}ȧ外ĺ稥氹Ç|¶ - 2Ō¾\ĒP鄸靇杧ž
drop: drop:
- ¡ Ɠ(嘒ėf倐ȓ圬剴扲ȿQZ - 娲瘹ɭȊɚɎ(dɅ囥糷磩窮秳ķ蟒苾h^
privileged: true privileged: false
procMount: 1ZƜ/C龷 procMount: ĭÐl恕ɍȇ廄裭4懙
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: -3031446704001093654 runAsGroup: -5441351197948631872
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2195720433245498980 runAsUser: 4491726672505793472
seLinuxOptions: seLinuxOptions:
level: "77" level: "85"
role: "75" role: "83"
type: "76" type: "84"
user: "74" user: "82"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "79" gmsaCredentialSpec: "87"
gmsaCredentialSpecName: "78" gmsaCredentialSpecName: "86"
runAsUserName: "80" runAsUserName: "88"
stdinOnce: true startupProbe:
targetContainerName: "81" exec:
terminationMessagePath: "73" command:
terminationMessagePolicy: w-檮Ǣ冖ž琔n宂¬轚9Ȏ瀮 - "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: volumeDevices:
- devicePath: "44" - devicePath: "44"
name: "43" 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, "restartCount": -734360256,
"image": "38", "image": "38",
"imageID": "39", "imageID": "39",
"containerID": "40" "containerID": "40",
"started": false
} }
], ],
"containerStatuses": [ "containerStatuses": [
@@ -117,15 +118,15 @@
"message": "43" "message": "43"
}, },
"running": { "running": {
"startedAt": "2149-06-18T16:38:18Z" "startedAt": "2943-08-01T13:09:15Z"
}, },
"terminated": { "terminated": {
"exitCode": 254375933, "exitCode": 523306325,
"signal": 523306325, "signal": -1639873916,
"reason": "44", "reason": "44",
"message": "45", "message": "45",
"startedAt": "2874-05-09T23:28:59Z", "startedAt": "2680-06-15T09:55:37Z",
"finishedAt": "2516-08-23T06:28:28Z", "finishedAt": "2320-11-04T10:48:57Z",
"containerID": "46" "containerID": "46"
} }
}, },
@@ -135,26 +136,27 @@
"message": "48" "message": "48"
}, },
"running": { "running": {
"startedAt": "2835-11-08T19:46:44Z" "startedAt": "2283-08-16T02:57:13Z"
}, },
"terminated": { "terminated": {
"exitCode": 705385560, "exitCode": -1876826602,
"signal": -1876826602, "signal": -1134418089,
"reason": "49", "reason": "49",
"message": "50", "message": "50",
"startedAt": "2380-12-20T20:55:16Z", "startedAt": "2103-08-02T14:34:54Z",
"finishedAt": "2801-08-27T04:51:34Z", "finishedAt": "2485-12-31T11:06:30Z",
"containerID": "51" "containerID": "51"
} }
}, },
"ready": false, "ready": true,
"restartCount": 607015027, "restartCount": 1366345526,
"image": "52", "image": "52",
"imageID": "53", "imageID": "53",
"containerID": "54" "containerID": "54",
"started": false
} }
], ],
"qosClass": "ȮO励鹗塢ē ƕP", "qosClass": "励鹗塢ē ",
"ephemeralContainerStatuses": [ "ephemeralContainerStatuses": [
{ {
"name": "55", "name": "55",
@@ -164,15 +166,15 @@
"message": "57" "message": "57"
}, },
"running": { "running": {
"startedAt": "2899-04-10T17:42:26Z" "startedAt": "2442-02-07T10:23:02Z"
}, },
"terminated": { "terminated": {
"exitCode": 712024464, "exitCode": -1395989138,
"signal": -1579157235, "signal": 1995971729,
"reason": "58", "reason": "58",
"message": "59", "message": "59",
"startedAt": "2809-10-24T21:55:41Z", "startedAt": "1982-02-22T15:48:54Z",
"finishedAt": "2617-08-06T21:50:30Z", "finishedAt": "2843-03-23T07:04:39Z",
"containerID": "60" "containerID": "60"
} }
}, },
@@ -182,23 +184,24 @@
"message": "62" "message": "62"
}, },
"running": { "running": {
"startedAt": "2135-11-17T10:03:44Z" "startedAt": "2809-10-24T21:55:41Z"
}, },
"terminated": { "terminated": {
"exitCode": -580241939, "exitCode": 1192771347,
"signal": 1654683896, "signal": -1737266499,
"reason": "63", "reason": "63",
"message": "64", "message": "64",
"startedAt": "2964-05-31T10:17:54Z", "startedAt": "2256-09-10T15:38:25Z",
"finishedAt": "2793-11-04T09:57:32Z", "finishedAt": "2907-09-12T12:00:36Z",
"containerID": "65" "containerID": "65"
} }
}, },
"ready": true, "ready": false,
"restartCount": 1111087895, "restartCount": 552512122,
"image": "66", "image": "66",
"imageID": "67", "imageID": "67",
"containerID": "68" "containerID": "68",
"started": true
} }
] ]
} }

View File

@@ -43,32 +43,33 @@ status:
imageID: "53" imageID: "53"
lastState: lastState:
running: running:
startedAt: "2835-11-08T19:46:44Z" startedAt: "2283-08-16T02:57:13Z"
terminated: terminated:
containerID: "51" containerID: "51"
exitCode: 705385560 exitCode: -1876826602
finishedAt: "2801-08-27T04:51:34Z" finishedAt: "2485-12-31T11:06:30Z"
message: "50" message: "50"
reason: "49" reason: "49"
signal: -1876826602 signal: -1134418089
startedAt: "2380-12-20T20:55:16Z" startedAt: "2103-08-02T14:34:54Z"
waiting: waiting:
message: "48" message: "48"
reason: "47" reason: "47"
name: "41" name: "41"
ready: false ready: true
restartCount: 607015027 restartCount: 1366345526
started: false
state: state:
running: running:
startedAt: "2149-06-18T16:38:18Z" startedAt: "2943-08-01T13:09:15Z"
terminated: terminated:
containerID: "46" containerID: "46"
exitCode: 254375933 exitCode: 523306325
finishedAt: "2516-08-23T06:28:28Z" finishedAt: "2320-11-04T10:48:57Z"
message: "45" message: "45"
reason: "44" reason: "44"
signal: 523306325 signal: -1639873916
startedAt: "2874-05-09T23:28:59Z" startedAt: "2680-06-15T09:55:37Z"
waiting: waiting:
message: "43" message: "43"
reason: "42" reason: "42"
@@ -78,32 +79,33 @@ status:
imageID: "67" imageID: "67"
lastState: lastState:
running: running:
startedAt: "2135-11-17T10:03:44Z" startedAt: "2809-10-24T21:55:41Z"
terminated: terminated:
containerID: "65" containerID: "65"
exitCode: -580241939 exitCode: 1192771347
finishedAt: "2793-11-04T09:57:32Z" finishedAt: "2907-09-12T12:00:36Z"
message: "64" message: "64"
reason: "63" reason: "63"
signal: 1654683896 signal: -1737266499
startedAt: "2964-05-31T10:17:54Z" startedAt: "2256-09-10T15:38:25Z"
waiting: waiting:
message: "62" message: "62"
reason: "61" reason: "61"
name: "55" name: "55"
ready: true ready: false
restartCount: 1111087895 restartCount: 552512122
started: true
state: state:
running: running:
startedAt: "2899-04-10T17:42:26Z" startedAt: "2442-02-07T10:23:02Z"
terminated: terminated:
containerID: "60" containerID: "60"
exitCode: 712024464 exitCode: -1395989138
finishedAt: "2617-08-06T21:50:30Z" finishedAt: "2843-03-23T07:04:39Z"
message: "59" message: "59"
reason: "58" reason: "58"
signal: -1579157235 signal: 1995971729
startedAt: "2809-10-24T21:55:41Z" startedAt: "1982-02-22T15:48:54Z"
waiting: waiting:
message: "57" message: "57"
reason: "56" reason: "56"
@@ -129,6 +131,7 @@ status:
name: "27" name: "27"
ready: true ready: true
restartCount: -734360256 restartCount: -734360256
started: false
state: state:
running: running:
startedAt: "2680-10-21T03:40:10Z" startedAt: "2680-10-21T03:40:10Z"
@@ -149,5 +152,5 @@ status:
podIP: "25" podIP: "25"
podIPs: podIPs:
- ip: "26" - ip: "26"
qosClass: ȮO励鹗塢ē ƕP qosClass: '励鹗塢ē '
reason: "22" reason: "22"

File diff suppressed because it is too large Load Diff

View File

@@ -60,411 +60,454 @@ template:
selfLink: "22" selfLink: "22"
uid: SǡƏ uid: SǡƏ
spec: spec:
activeDeadlineSeconds: 63880647284912382 activeDeadlineSeconds: -9052689354742694982
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "350" - key: "367"
operator: "" operator: 唊#v铿
values: values:
- "351" - "368"
matchFields: matchFields:
- key: "352" - key: "369"
operator: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ? operator: 埄趛
values: values:
- "353" - "370"
weight: -148216266 weight: -1418092595
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "346" - key: "363"
operator: 懥ƖN粕擓ƖHVe operator: '}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g>'
values: values:
- "347" - "364"
matchFields: matchFields:
- key: "348" - key: "365"
operator: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ' operator: 偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ圯W
values: values:
- "349" - "366"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---38----r-m-a--q3980c7f0p-3-----995----5sumf7ef8jzv4-9-35od/2I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.-.-8v-J1zT - 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: In operator: NotIn
values: values:
- 5-.-.T-V_D_0-K_A-_9_ZC - G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
matchLabels: 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: namespaces:
- "368" - "385"
topologyKey: "369" topologyKey: "386"
weight: 2086031503 weight: -819013491
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 5-R4_7FA.M.JP_oA_4A.J2s3.XL6_EU-A - key: 8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T
operator: DoesNotExist operator: NotIn
values:
- H.I3.__-.u
matchLabels: 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: namespaces:
- "360" - "377"
topologyKey: "361" topologyKey: "378"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 7-3x-3/23_P - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C
operator: NotIn operator: In
values: 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: matchLabels:
v8_.O_..8n.--z_-..6W.K: sTt.-U_--6 x-3/6-.7D.3_KPgL: d._.Um.-__k.5
namespaces: namespaces:
- "384" - "401"
topologyKey: "385" topologyKey: "402"
weight: -593572977 weight: -168773629
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: u-2.d-s--op34-yy28-38xmu5nxs/j.___._8 - key: v8_.O_..8n.--z_-..6W.K
operator: In operator: Exists
values:
- K4.B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M86.9a_0
matchLabels: 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: namespaces:
- "376" - "393"
topologyKey: "377" topologyKey: "394"
automountServiceAccountToken: false automountServiceAccountToken: false
containers: containers:
- args: - args:
- "204" - "212"
command: command:
- "203" - "211"
env: env:
- name: "211" - name: "219"
value: "212" value: "220"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "218" key: "226"
name: "217" name: "225"
optional: false optional: false
fieldRef: fieldRef:
apiVersion: "213" apiVersion: "221"
fieldPath: "214" fieldPath: "222"
resourceFieldRef: resourceFieldRef:
containerName: "215" containerName: "223"
divisor: "665" divisor: "179"
resource: "216" resource: "224"
secretKeyRef: secretKeyRef:
key: "220" key: "228"
name: "219" name: "227"
optional: false optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "209" name: "217"
optional: true
prefix: "208"
secretRef:
name: "210"
optional: false optional: false
image: "202" prefix: "216"
imagePullPolicy: 臷Ľð»ųKĵ&4ʑ%:;栍dʪ secretRef:
name: "218"
optional: true
image: "210"
imagePullPolicy: 猀2:ö
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "242" - "254"
httpGet: httpGet:
host: "245" host: "256"
httpHeaders: httpHeaders:
- name: "246" - name: "257"
value: "247" value: "258"
path: "243" path: "255"
port: "244" port: 200992434
scheme: ƶRquA?瞲Ť倱<įXŋ朘 scheme: ņ榱*Gưoɘ檲ɨ銦妰黖ȓ
tcpSocket: tcpSocket:
host: "249" host: "260"
port: "248" port: "259"
preStop: preStop:
exec: exec:
command: command:
- "250" - "261"
httpGet: httpGet:
host: "252" host: "264"
httpHeaders: httpHeaders:
- name: "253" - name: "265"
value: "254" value: "266"
path: "251" path: "262"
port: 2147073181 port: "263"
scheme: 0åȂ町恰nj揠8lj scheme: ɋ瀐<ɉ
tcpSocket: tcpSocket:
host: "255" host: "267"
port: -2049272966 port: -1334904807
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "227" - "235"
failureThreshold: 437263194 failureThreshold: -547518679
httpGet: httpGet:
host: "230" host: "238"
httpHeaders: httpHeaders:
- name: "231" - name: "239"
value: "232" value: "240"
path: "228" path: "236"
port: "229" port: "237"
scheme: /pȿŘ阌Ŗ怳冘H scheme: Xŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ厶耈
initialDelaySeconds: -1999218345 initialDelaySeconds: -1940723300
periodSeconds: 657514697 periodSeconds: 496226800
successThreshold: 408756018 successThreshold: 84444678
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: tcpSocket:
host: "241" host: "241"
port: "240" port: 2064656704
timeoutSeconds: 1701891633 timeoutSeconds: 749147575
resources: name: "209"
limits:
ɥ踓Ǻǧ湬淊kŪ睴鸏:ɥ: "206"
requests:
fʣ繡楙¯ĦE勗E濞偘1ɩ: "161"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 捘ɍi縱ù墴
drop:
- Rƥ贫d飼$俊跾|@?鷅b
privileged: false
procMount: ɘ檲ɨ銦
readOnlyRootFilesystem: true
runAsGroup: -5016407977423583667
runAsNonRoot: false
runAsUser: -4282906120698363891
seLinuxOptions:
level: "260"
role: "258"
type: "259"
user: "257"
windowsOptions:
gmsaCredentialSpec: "262"
gmsaCredentialSpecName: "261"
runAsUserName: "263"
stdin: true
terminationMessagePath: "256"
terminationMessagePolicy: 禒Ƙá腿ħ缶.蒅
tty: true
volumeDevices:
- devicePath: "226"
name: "225"
volumeMounts:
- mountPath: "222"
mountPropagation: ʅ芝M 宸@Z^嫫猤痈C*ĕʄő芖{
name: "221"
readOnly: true
subPath: "223"
subPathExpr: "224"
workingDir: "205"
dnsConfig:
nameservers:
- "392"
options:
- name: "394"
value: "395"
searches:
- "393"
dnsPolicy: ɘȌ脾嚏吐ĠLƐȤ藠3.v
enableServiceLinks: true
ephemeralContainers:
- args:
- "267"
command:
- "266"
env:
- name: "274"
value: "275"
valueFrom:
configMapKeyRef:
key: "281"
name: "280"
optional: true
fieldRef:
apiVersion: "276"
fieldPath: "277"
resourceFieldRef:
containerName: "278"
divisor: "8"
resource: "279"
secretKeyRef:
key: "283"
name: "282"
optional: true
envFrom:
- configMapRef:
name: "272"
optional: false
prefix: "271"
secretRef:
name: "273"
optional: false
image: "265"
imagePullPolicy: ^拜
lifecycle:
postStart:
exec:
command:
- "305"
httpGet:
host: "308"
httpHeaders:
- name: "309"
value: "310"
path: "306"
port: "307"
scheme: '{Ⱦdz@'
tcpSocket:
host: "311"
port: 406308963
preStop:
exec:
command:
- "312"
httpGet:
host: "315"
httpHeaders:
- name: "316"
value: "317"
path: "313"
port: "314"
scheme: ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ
tcpSocket:
host: "319"
port: "318"
livenessProbe:
exec:
command:
- "290"
failureThreshold: 1545364977
httpGet:
host: "293"
httpHeaders:
- name: "294"
value: "295"
path: "291"
port: "292"
scheme: Ȋ+?ƭ峧Y栲茇竛吲蚛
initialDelaySeconds: -138175394
periodSeconds: 1054302708
successThreshold: -1696471293
tcpSocket:
host: "297"
port: "296"
timeoutSeconds: -1839582103
name: "264"
ports: ports:
- containerPort: -50623103 - containerPort: 1083816849
hostIP: "270" hostIP: "215"
hostPort: -1266125247 hostPort: 744106683
name: "269" name: "214"
protocol: 獵偐ę腬瓷碑=ɉ鎷卩蝾H韹寬娬ï瓼 protocol: 議Ǹ轺@)蓳嗘
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "298" - "242"
failureThreshold: 804417065 failureThreshold: 1569992019
httpGet: httpGet:
host: "301" host: "244"
httpHeaders: httpHeaders:
- name: "302" - name: "245"
value: "303" value: "246"
path: "299" path: "243"
port: "300" port: 1322581021
scheme: r蛏豈ɃHŠ scheme: 坩O`涁İ而踪鄌eÞ
initialDelaySeconds: -1765469779 initialDelaySeconds: 565789036
periodSeconds: -1047607622 periodSeconds: -582473401
successThreshold: -725526817 successThreshold: -1252931244
tcpSocket: tcpSocket:
host: "304" host: "247"
port: 279808574 port: -1319491110
timeoutSeconds: 1525829664 timeoutSeconds: -1572269414
resources: resources:
limits: limits:
辪虽U珝Żwʮ馜: "604" o_鹈ɹ坼É/pȿŘ阌Ŗ怳冘HǺƶ: "364"
requests: requests:
"": "264" ǝ鿟ldg滠鼍ƭt?QȫşŇɜ: "211"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- ɟ踡肒Ao/樝fw[Řż丩Ž - 5w垁鷌辪虽U珝Żwʮ馜üNșƶ
drop: drop:
- "" - ĩĉş蝿ɖȃ賲鐅臬
privileged: false privileged: false
procMount: 9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę procMount: ǵʭd鲡:贅wE@Ȗs«öʮ
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: 454011859948691164 runAsGroup: -1245112587824234591
runAsNonRoot: true runAsNonRoot: true
runAsUser: 2088194590485252823 runAsUser: -1799108093609470992
seLinuxOptions: seLinuxOptions:
level: "324" level: "272"
role: "322" role: "270"
type: "323" type: "271"
user: "321" user: "269"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "326" gmsaCredentialSpec: "274"
gmsaCredentialSpecName: "325" gmsaCredentialSpecName: "273"
runAsUserName: "327" runAsUserName: "275"
targetContainerName: "328" startupProbe:
terminationMessagePath: "320" exec:
terminationMessagePolicy: p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF 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: volumeDevices:
- devicePath: "289" - devicePath: "234"
name: "288" name: "233"
volumeMounts: volumeMounts:
- mountPath: "285" - mountPath: "230"
mountPropagation: 4ĩĉş蝿ɖȃ賲鐅臬dH巧壚tC十Oɢ mountPropagation: zÏ抴ŨfZhUʎ浵ɲõTo&
name: "284" name: "229"
subPath: "286" subPath: "231"
subPathExpr: "287" subPathExpr: "232"
workingDir: "268" workingDir: "213"
dnsConfig:
nameservers:
- "409"
options:
- name: "411"
value: "412"
searches:
- "410"
dnsPolicy: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ
enableServiceLinks: false
ephemeralContainers:
- args:
- "279"
command:
- "278"
env:
- name: "286"
value: "287"
valueFrom:
configMapKeyRef:
key: "293"
name: "292"
optional: true
fieldRef:
apiVersion: "288"
fieldPath: "289"
resourceFieldRef:
containerName: "290"
divisor: "157"
resource: "291"
secretKeyRef:
key: "295"
name: "294"
optional: false
envFrom:
- configMapRef:
name: "284"
optional: true
prefix: "283"
secretRef:
name: "285"
optional: false
image: "277"
imagePullPolicy: ʁ揆ɘȌ脾嚏吐ĠLƐ
lifecycle:
postStart:
exec:
command:
- "322"
httpGet:
host: "324"
httpHeaders:
- name: "325"
value: "326"
path: "323"
port: -1589303862
scheme: ľǎɳ,ǿ飏騀呣ǎ
tcpSocket:
host: "328"
port: "327"
preStop:
exec:
command:
- "329"
httpGet:
host: "332"
httpHeaders:
- name: "333"
value: "334"
path: "330"
port: "331"
scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7
tcpSocket:
host: "336"
port: "335"
livenessProbe:
exec:
command:
- "302"
failureThreshold: -1131820775
httpGet:
host: "304"
httpHeaders:
- name: "305"
value: "306"
path: "303"
port: -88173241
scheme: Źʣy豎@ɀ羭,铻O
initialDelaySeconds: 1424053148
periodSeconds: 859639931
successThreshold: -1663149700
tcpSocket:
host: "308"
port: "307"
timeoutSeconds: 747521320
name: "276"
ports:
- containerPort: -1565157256
hostIP: "282"
hostPort: 1702578303
name: "281"
protocol: Ŭ
readinessProbe:
exec:
command:
- "309"
failureThreshold: -233378149
httpGet:
host: "311"
httpHeaders:
- name: "312"
value: "313"
path: "310"
port: -1710454086
scheme: mɩC[ó瓧
initialDelaySeconds: 915577348
periodSeconds: -1386967282
successThreshold: -2030286732
tcpSocket:
host: "314"
port: -122979840
timeoutSeconds: -590798124
resources:
limits:
ŴĿ: "377"
requests:
.Q貇£ȹ嫰ƹǔw÷nI: "718"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 3.v-鿧悮坮Ȣ
drop:
- ļ腻ŬƩȿ
privileged: false
procMount: ħsĨɆâĺ
readOnlyRootFilesystem: false
runAsGroup: 241615716805649441
runAsNonRoot: true
runAsUser: 9197199583783594492
seLinuxOptions:
level: "341"
role: "339"
type: "340"
user: "338"
windowsOptions:
gmsaCredentialSpec: "343"
gmsaCredentialSpecName: "342"
runAsUserName: "344"
startupProbe:
exec:
command:
- "315"
failureThreshold: 486195690
httpGet:
host: "317"
httpHeaders:
- name: "318"
value: "319"
path: "316"
port: -495373547
scheme: ʼn掏1ſ盷褎weLJ
initialDelaySeconds: -929354164
periodSeconds: 1582773079
successThreshold: -1133499416
tcpSocket:
host: "321"
port: "320"
timeoutSeconds: 1972119760
stdin: true
targetContainerName: "345"
terminationMessagePath: "337"
terminationMessagePolicy: Ȋ礶
tty: true
volumeDevices:
- devicePath: "301"
name: "300"
volumeMounts:
- mountPath: "297"
mountPropagation: 樺ȃ
name: "296"
subPath: "298"
subPathExpr: "299"
workingDir: "280"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "390" - "407"
ip: "389" ip: "406"
hostIPC: true
hostNetwork: true hostNetwork: true
hostname: "344" hostPID: true
hostname: "361"
imagePullSecrets: imagePullSecrets:
- name: "343" - name: "360"
initContainers: initContainers:
- args: - args:
- "144" - "144"
@@ -498,24 +541,9 @@ template:
name: "150" name: "150"
optional: true optional: true
image: "142" image: "142"
imagePullPolicy: '''容' imagePullPolicy: wMȗ礼2ħ籦ö
lifecycle: lifecycle:
postStart: 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: exec:
command: command:
- "186" - "186"
@@ -526,10 +554,25 @@ template:
value: "191" value: "191"
path: "187" path: "187"
port: "188" port: "188"
scheme: <檔Ň'Ğİ scheme: O澘銈e棈_Ĭ艥<檔
tcpSocket: tcpSocket:
host: "192" host: "193"
port: 1460441819 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: livenessProbe:
exec: exec:
command: command:
@@ -583,30 +626,50 @@ template:
requests: requests:
"": "609" "": "609"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- Iã陫ʋ - '>季Cʖ畬x骀Šĸů湙騘&啞川J缮'
drop: drop:
- ş")珷 - bJ5ʬ昹ʞĹ鑑6NJPM饣`
privileged: false privileged: false
procMount: ȼDDŽLŬp:籀帊ìƅS·Õüe0 procMount: 2啗塧ȱ蓿彭聡A3fƻfʣ繡楙¯ĦE勗
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: 411720356558623363 runAsGroup: -5811430020199686393
runAsNonRoot: true runAsNonRoot: true
runAsUser: 6670396461729736072 runAsUser: 6821913012222657579
seLinuxOptions: seLinuxOptions:
level: "197" level: "205"
role: "195" role: "203"
type: "196" type: "204"
user: "194" user: "202"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "199" gmsaCredentialSpec: "207"
gmsaCredentialSpecName: "198" gmsaCredentialSpecName: "206"
runAsUserName: "200" 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 stdinOnce: true
terminationMessagePath: "193" terminationMessagePath: "201"
terminationMessagePolicy: A terminationMessagePolicy: ʕIã陫ʋsş")珷<ºɖ
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "166" - devicePath: "166"
@@ -619,62 +682,61 @@ template:
subPath: "163" subPath: "163"
subPathExpr: "164" subPathExpr: "164"
workingDir: "145" workingDir: "145"
nodeName: "333" nodeName: "350"
nodeSelector: nodeSelector:
"329": "330" "346": "347"
overhead: overhead:
'''o儿Ƭ銭u裡_': "986" ɮ6): "299"
preemptionPolicy: 闎Ť萃Q+駟à稨氙'[> preemptionPolicy: 怨彬ɈNƋl塠傫ü
priority: 1792673033 priority: -1286809305
priorityClassName: "391" priorityClassName: "408"
readinessGates: readinessGates:
- conditionType: q塨Ý-扚聧扈4ƫZɀȩ愉BʟƮƙ2詃 - conditionType: ųŎ群E牬庘颮6(|ǖû
restartPolicy: U髷裎$MVȟ@7飣奺Ȋ restartPolicy: 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶
runtimeClassName: "396" runtimeClassName: "413"
schedulerName: "386" schedulerName: "403"
securityContext: securityContext:
fsGroup: -609644235388870309 fsGroup: 6347577485454457915
runAsGroup: 43374460844024823 runAsGroup: -860974700141841896
runAsNonRoot: false runAsNonRoot: true
runAsUser: 6546717103134456682 runAsUser: 7525448836100188460
seLinuxOptions: seLinuxOptions:
level: "337" level: "354"
role: "335" role: "352"
type: "336" type: "353"
user: "334" user: "351"
supplementalGroups: supplementalGroups:
- -5030126702697967530 - 7258403424756645907
sysctls: sysctls:
- name: "341" - name: "358"
value: "342" value: "359"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "339" gmsaCredentialSpec: "356"
gmsaCredentialSpecName: "338" gmsaCredentialSpecName: "355"
runAsUserName: "340" runAsUserName: "357"
serviceAccount: "332" serviceAccount: "349"
serviceAccountName: "331" serviceAccountName: "348"
shareProcessNamespace: false shareProcessNamespace: false
subdomain: "345" subdomain: "362"
terminationGracePeriodSeconds: -1448436097540110204 terminationGracePeriodSeconds: -1689173322096612726
tolerations: tolerations:
- effect: ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­ - effect: ŪǗȦɆ悼j蛑q
key: "387" key: "404"
operator: $|gɳ礬.b屏ɧe operator: 栣险¹贮獘薟8Mĕ霉
tolerationSeconds: -6703183907837349431 tolerationSeconds: 4375148957048018073
value: "388" value: "405"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: 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 - 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: NotIn operator: In
values: 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: 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 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
: "5.0" maxSkew: -554557703
maxSkew: -1676200318 topologyKey: "414"
topologyKey: "397" whenUnsatisfiable: ¹t骳ɰɰUʜʔŜ0¢
whenUnsatisfiable: 唞鹚蝉茲ʛ饊ɣKIJW
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "41" fsType: "41"

File diff suppressed because it is too large Load Diff

View File

@@ -65,412 +65,450 @@ spec:
selfLink: "24" selfLink: "24"
uid: '*齧獚敆Ȏțêɘ' uid: '*齧獚敆Ȏțêɘ'
spec: spec:
activeDeadlineSeconds: 3749749117130745391 activeDeadlineSeconds: -5860790522738935260
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "347" - key: "375"
operator: "" operator: 岼昕ĬÇó藢xɮĵȑ6L*Z
values: values:
- "348" - "376"
matchFields: matchFields:
- key: "349" - key: "377"
operator: ĬÇó藢xɮĵȑ6L*Z operator: 绤fʀļ腩墺Ò媁荭g
values: values:
- "350" - "378"
weight: 508868877 weight: -379385405
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "343" - key: "371"
operator: "" operator: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ
values: values:
- "344" - "372"
matchFields: matchFields:
- key: "345" - key: "373"
operator: Ȃ4 operator: t叀碧闳ȩr嚧ʣq埄
values: values:
- "346" - "374"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: KCR.s--f.-f.-zv._._.5-H.T.-.-.T-V_S - 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: NotIn operator: DoesNotExist
values:
- 4.Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.wo
matchLabels: 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: namespaces:
- "365" - "393"
topologyKey: "366" topologyKey: "394"
weight: -1449289597 weight: 1258370227
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: n.j-6-o-h-9-15v-5925a-x12a-214-3s--gg93--p/2hT.-z-._7-5lL..-_--.VEa-_gn.n - key: 8SUGP.-_.uB-.--.gb_2_-8--z
operator: NotIn operator: Exists
values:
- E__K_g1cXfr.4_.-_-_-...1py_t
matchLabels: 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: namespaces:
- "357" - "385"
topologyKey: "358" topologyKey: "386"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: 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 operator: NotIn
values: values:
- 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7 - 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: 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: namespaces:
- "381" - "409"
topologyKey: "382" topologyKey: "410"
weight: -1000831922 weight: 1289969734
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "373" - "401"
topologyKey: "374" topologyKey: "402"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "207" - "217"
command: command:
- "206" - "216"
env: env:
- name: "214" - name: "224"
value: "215" value: "225"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "221" key: "231"
name: "220" name: "230"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "216" apiVersion: "226"
fieldPath: "217" fieldPath: "227"
resourceFieldRef: resourceFieldRef:
containerName: "218" containerName: "228"
divisor: "931" divisor: "46"
resource: "219" resource: "229"
secretKeyRef: secretKeyRef:
key: "223" key: "233"
name: "222" name: "232"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "212" name: "222"
optional: false optional: false
prefix: "211" prefix: "221"
secretRef: secretRef:
name: "213" name: "223"
optional: false optional: false
image: "205" image: "215"
imagePullPolicy: ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇƉ立h imagePullPolicy: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "243" - "260"
httpGet: httpGet:
host: "245" host: "263"
httpHeaders: httpHeaders:
- name: "246" - name: "264"
value: "247" value: "265"
path: "244" path: "261"
port: 446829537 port: "262"
scheme: 閼咎櫸eʔŊ scheme: ńMǰ溟ɴ扵閝
tcpSocket: tcpSocket:
host: "248" host: "266"
port: 731879508 port: -1474440600
preStop: preStop:
exec: exec:
command: command:
- "249" - "267"
httpGet: httpGet:
host: "251" host: "269"
httpHeaders: httpHeaders:
- name: "252" - name: "270"
value: "253" value: "271"
path: "250" path: "268"
port: -1350331007 port: 44308192
scheme: ę腬瓷碑=ɉ鎷卩蝾H韹寬 scheme: Żwʮ馜üNșƶ4ĩĉ
tcpSocket: tcpSocket:
host: "255" host: "273"
port: "254" port: "272"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "230" - "240"
failureThreshold: -199511133 failureThreshold: -1301133697
httpGet: httpGet:
host: "232" host: "242"
httpHeaders: httpHeaders:
- name: "233" - name: "243"
value: "234" value: "244"
path: "231" path: "241"
port: 675406340 port: -532628939
scheme: ð»ųKĵ scheme: 踪鄌eÞȦY籎顒ǥŴ唼Ģ猇õǶț
initialDelaySeconds: -2047333312 initialDelaySeconds: -2025874949
periodSeconds: -1373541406 periodSeconds: 1593906314
successThreshold: 480521693 successThreshold: 188341147
tcpSocket: tcpSocket:
host: "235" host: "245"
port: -540225644 port: -1171060347
timeoutSeconds: -1477511050 timeoutSeconds: -1468180511
name: "204" name: "214"
ports: ports:
- containerPort: 798141673 - containerPort: 673378190
hostIP: "210" hostIP: "220"
hostPort: -1351421716 hostPort: -144591150
name: "209" name: "219"
protocol: ɰVzÏ抴 protocol: Ɵ)Ù
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "236" - "246"
failureThreshold: -935589762 failureThreshold: -1145306833
httpGet: httpGet:
host: "239" host: "249"
httpHeaders: httpHeaders:
- name: "240" - name: "250"
value: "241" value: "251"
path: "237" path: "247"
port: "238" port: "248"
scheme: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_ scheme: '@?鷅bȻN+ņ榱*Gưoɘ檲ɨ銦妰'
initialDelaySeconds: 657298936 initialDelaySeconds: -1266125247
periodSeconds: 2058961339 periodSeconds: 1795738696
successThreshold: -997191789 successThreshold: -1350331007
tcpSocket: tcpSocket:
host: "242" host: "252"
port: -1222594476 port: -1079519102
timeoutSeconds: -1231552123 timeoutSeconds: -50623103
resources: resources:
limits: limits:
o&蕭k ź贩j瀉: "621" : "980"
requests: requests:
徙ɶɊł/擇ɦĽ胚: "426" k ź贩j瀉ǚrǜnh0åȂ: "314"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- Ú|dk_ - ""
drop: drop:
- 鞎sn芞QÄȻȊ+?ƭ峧Y栲茇竛吲蚛 - £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇
privileged: false privileged: false
procMount: '*ʙ嫙&蒒5靇C''ɵK.' procMount: 粛E煹
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 4528195653674047608 runAsGroup: -7567945069856455979
runAsNonRoot: true runAsNonRoot: true
runAsUser: -8450215029913275287 runAsUser: 390808457597161112
seLinuxOptions: seLinuxOptions:
level: "260" level: "278"
role: "258" role: "276"
type: "259" type: "277"
user: "257" user: "275"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "262" gmsaCredentialSpec: "280"
gmsaCredentialSpecName: "261" gmsaCredentialSpecName: "279"
runAsUserName: "263" runAsUserName: "281"
stdin: true 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 stdinOnce: true
terminationMessagePath: "256" terminationMessagePath: "274"
terminationMessagePolicy: 瓼猀2:öY鶪5w垁鷌辪 terminationMessagePolicy: ɖȃ賲鐅臬dH巧壚tC十Oɢ
tty: true
volumeDevices: volumeDevices:
- devicePath: "229" - devicePath: "239"
name: "228" name: "238"
volumeMounts: volumeMounts:
- mountPath: "225" - mountPath: "235"
mountPropagation: lj黳鈫ʕ禒Ƙá腿ħ缶 mountPropagation: O醔ɍ厶耈 T衧ȇe媹Hǝ呮}臷Ľð
name: "224" name: "234"
readOnly: true readOnly: true
subPath: "226" subPath: "236"
subPathExpr: "227" subPathExpr: "237"
workingDir: "208" workingDir: "218"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "389" - "417"
options: options:
- name: "391" - name: "419"
value: "392" value: "420"
searches: searches:
- "390" - "418"
dnsPolicy: œȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] dnsPolicy: w(ğ儴Ůĺ}潷ʒ胵
enableServiceLinks: true enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "267" - "285"
command: command:
- "266" - "284"
env: env:
- name: "274" - name: "292"
value: "275" value: "293"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "281" key: "299"
name: "280" name: "298"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "276" apiVersion: "294"
fieldPath: "277" fieldPath: "295"
resourceFieldRef: resourceFieldRef:
containerName: "278" containerName: "296"
divisor: "398" divisor: "714"
resource: "279" resource: "297"
secretKeyRef: secretKeyRef:
key: "283" key: "301"
name: "282" name: "300"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "272" name: "290"
optional: true optional: true
prefix: "271" prefix: "289"
secretRef: secretRef:
name: "273" name: "291"
optional: false optional: true
image: "265" image: "283"
imagePullPolicy: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p imagePullPolicy: Ve
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "305" - "330"
httpGet: httpGet:
host: "307" host: "333"
httpHeaders: httpHeaders:
- name: "308" - name: "334"
value: "309" value: "335"
path: "306" path: "331"
port: 1447898632 port: "332"
scheme: þ蛯ɰ荶lj scheme: ʤî萨zvt莭
tcpSocket: tcpSocket:
host: "310" host: "337"
port: -1180080716 port: "336"
preStop: preStop:
exec: exec:
command: command:
- "311" - "338"
httpGet: httpGet:
host: "313" host: "341"
httpHeaders: httpHeaders:
- name: "314" - name: "342"
value: "315" value: "343"
path: "312" path: "339"
port: 1428207963 port: "340"
scheme: ļ腻ŬƩȿ
tcpSocket: tcpSocket:
host: "316" host: "344"
port: 270599701 port: -2123728714
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "290" - "308"
failureThreshold: -188803670 failureThreshold: 1832870128
httpGet: httpGet:
host: "293" host: "311"
httpHeaders: httpHeaders:
- name: "294" - name: "312"
value: "295" value: "313"
path: "291" path: "309"
port: "292" port: "310"
scheme: ɟ踡肒Ao/樝fw[Řż丩Ž initialDelaySeconds: -1537700150
initialDelaySeconds: 988932710 periodSeconds: 105707873
periodSeconds: -1815868713 successThreshold: -188803670
successThreshold: 105707873
tcpSocket: tcpSocket:
host: "297" host: "315"
port: "296" port: "314"
timeoutSeconds: -1537700150 timeoutSeconds: -1815868713
name: "264" name: "282"
ports: ports:
- containerPort: -1169420648 - containerPort: -88173241
hostIP: "270" hostIP: "288"
hostPort: 1428858742 hostPort: 304141309
name: "269" name: "287"
protocol: Źʣy豎@ɀ羭,铻O
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "298" - "316"
failureThreshold: -150133456 failureThreshold: 1505082076
httpGet: httpGet:
host: "300" host: "318"
httpHeaders: httpHeaders:
- name: "301" - name: "319"
value: "302" value: "320"
path: "299" path: "317"
port: 1908572031 port: 1422435836
scheme: ɳ,ǿ飏騀呣ǎfǣ萭旿@掇l scheme: ',ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ'
initialDelaySeconds: 1584001904 initialDelaySeconds: -819723498
periodSeconds: 2035347577 periodSeconds: 1507815593
successThreshold: -819723498 successThreshold: 1498833271
tcpSocket: tcpSocket:
host: "304" host: "322"
port: "303" port: "321"
timeoutSeconds: -839281354 timeoutSeconds: -150133456
resources: resources:
limits: limits:
E'iþŹʣy: "236" 釆Ɗ+j忊: "486"
requests: requests:
漘Z剚敍0): "908" 嫭塓烀罁胾: "494"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- sĨɆâĺɗŹ倗S晒嶗U - FD剂讼ɓȌʟn
drop: drop:
- _ƮA攤/ɸɎ R§耶FfBl - 酛3ƁÀ*f<鴒翁杙
privileged: true privileged: true
procMount: dz娝嘚庎D}埽uʎȺ眖R#yV'WK procMount: 螡źȰ?$矡ȶ网棊ʢ=wǕɳ
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: -4227284644269939905 runAsGroup: -3295693280350872542
runAsNonRoot: true runAsNonRoot: false
runAsUser: -1422849761759913573 runAsUser: 4125312213789345425
seLinuxOptions: seLinuxOptions:
level: "321" level: "349"
role: "319" role: "347"
type: "320" type: "348"
user: "318" user: "346"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "323" gmsaCredentialSpec: "351"
gmsaCredentialSpecName: "322" gmsaCredentialSpecName: "350"
runAsUserName: "324" 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 stdinOnce: true
targetContainerName: "325" targetContainerName: "353"
terminationMessagePath: "317" terminationMessagePath: "345"
terminationMessagePolicy: ʤî萨zvt莭 terminationMessagePolicy: ʝ瘴I\p[ħsĨ
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "289" - devicePath: "307"
name: "288" name: "306"
volumeMounts: volumeMounts:
- mountPath: "285" - mountPath: "303"
mountPropagation: 嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨFħ mountPropagation: ǒɿʒ刽ʼn掏1ſ盷褎weLJ
name: "284" name: "302"
readOnly: true readOnly: true
subPath: "286" subPath: "304"
subPathExpr: "287" subPathExpr: "305"
workingDir: "268" workingDir: "286"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "387" - "415"
ip: "386" ip: "414"
hostNetwork: true hostNetwork: true
hostname: "341" hostPID: true
hostname: "369"
imagePullSecrets: imagePullSecrets:
- name: "340" - name: "368"
initContainers: initContainers:
- args: - args:
- "146" - "146"
@@ -504,38 +542,38 @@ spec:
name: "152" name: "152"
optional: true optional: true
image: "144" image: "144"
imagePullPolicy: 聡A3fƻfʣ繡楙¯ĦE勗E濞偘1ɩÅ imagePullPolicy: ȸŹăȲϤĦ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "183" - "190"
httpGet: httpGet:
host: "186" host: "193"
httpHeaders: httpHeaders:
- name: "187" - name: "194"
value: "188" value: "195"
path: "184" path: "191"
port: "185" port: "192"
scheme: 湙騘 scheme: Ɠɥ踓Ǻǧ湬淊k
tcpSocket: tcpSocket:
host: "189" host: "197"
port: -1291315853 port: "196"
preStop: preStop:
exec: exec:
command: command:
- "190" - "198"
httpGet: httpGet:
host: "192" host: "201"
httpHeaders: httpHeaders:
- name: "193" - name: "202"
value: "194" value: "203"
path: "191" path: "199"
port: -156457987 port: "200"
scheme: 焁yǠ/淹\韲翁&ʢ scheme: fƻfʣ繡楙¯Ħ
tcpSocket: tcpSocket:
host: "195" host: "205"
port: -1617414299 port: "204"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -589,32 +627,48 @@ spec:
requests: requests:
郀叚Fi皬择,Q捇ȸ{+ɸ殁: "687" 郀叚Fi皬择,Q捇ȸ{+ɸ殁: "687"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- 轺@)蓳嗘TʡȂŏ{sǡƟ狩鴈o_鹈ɹ - M 宸@Z^嫫猤痈C*ĕʄő芖{|
drop: drop:
- É/p - '"^饣Vȿ$妻ƅ'
privileged: true privileged: false
procMount: Ȥ^}穠C]躢|)黰e procMount: dg滠鼍ƭt?Qȫ
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -7635256509062757120 runAsGroup: -6996673662371947627
runAsNonRoot: false runAsNonRoot: false
runAsUser: -5663998255416893194 runAsUser: -7042570146654509247
seLinuxOptions: seLinuxOptions:
level: "200" level: "210"
role: "198" role: "208"
type: "199" type: "209"
user: "197" user: "207"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "202" gmsaCredentialSpec: "212"
gmsaCredentialSpecName: "201" gmsaCredentialSpecName: "211"
runAsUserName: "203" runAsUserName: "213"
stdin: true startupProbe:
stdinOnce: true exec:
terminationMessagePath: "196" command:
terminationMessagePolicy: \%枅:=ǛƓɥ踓Ǻǧ湬淊kŪ - "183"
tty: true 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: volumeDevices:
- devicePath: "168" - devicePath: "168"
name: "167" name: "167"
@@ -625,61 +679,61 @@ spec:
subPath: "165" subPath: "165"
subPathExpr: "166" subPathExpr: "166"
workingDir: "147" workingDir: "147"
nodeName: "330" nodeName: "358"
nodeSelector: nodeSelector:
"326": "327" "354": "355"
overhead: overhead:
Üɉ愂,wa纝佯fɞ: "823" 娒Ġ滔xvŗÑ"虆k遚釾ʼn{: "803"
preemptionPolicy: 啾閥óƒ preemptionPolicy: ʜ_ȭwɵ糫武诰ð
priority: -418556976 priority: 178156526
priorityClassName: "388" priorityClassName: "416"
readinessGates: readinessGates:
- conditionType: ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ - conditionType: 糮R(_âŔ獎$ƆJije檗
restartPolicy: ğ儴Ůĺ}潷ʒ胵輓 restartPolicy: Ì
runtimeClassName: "393" runtimeClassName: "421"
schedulerName: "383" schedulerName: "411"
securityContext: securityContext:
fsGroup: -6090661315121334525 fsGroup: 7861919711004065015
runAsGroup: -4207281854510634861 runAsGroup: -4105014793515441558
runAsNonRoot: true runAsNonRoot: true
runAsUser: 3785971062093853048 runAsUser: -7059779929916534575
seLinuxOptions: seLinuxOptions:
level: "334" level: "362"
role: "332" role: "360"
type: "333" type: "361"
user: "331" user: "359"
supplementalGroups: supplementalGroups:
- 2007000972845989054 - 830921445879518469
sysctls: sysctls:
- name: "338" - name: "366"
value: "339" value: "367"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "336" gmsaCredentialSpec: "364"
gmsaCredentialSpecName: "335" gmsaCredentialSpecName: "363"
runAsUserName: "337" runAsUserName: "365"
serviceAccount: "329" serviceAccount: "357"
serviceAccountName: "328" serviceAccountName: "356"
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "342" subdomain: "370"
terminationGracePeriodSeconds: 1616645369356252673 terminationGracePeriodSeconds: -860974700141841896
tolerations: tolerations:
- effect: 亦輯>肸H5fŮƛƛ龢ÄƤU - effect: ɉ愂
key: "384" key: "412"
operator: '!蘋`翾''ųŎ' operator: '}缫,'
tolerationSeconds: -1346654761106639569 tolerationSeconds: 5005983565679986804
value: "385" value: "413"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: 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 operator: NotIn
values: values:
- N7_B_r - c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG
matchLabels: matchLabels:
8o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C 7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY: "0"
maxSkew: 1831585697 maxSkew: -1531421126
topologyKey: "394" topologyKey: "422"
whenUnsatisfiable: U駯Ĕ驢.' whenUnsatisfiable: 墘ȕûy<vĝ線Ưȫ喆5O2.
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "43" fsType: "43"
@@ -877,14 +931,14 @@ spec:
storagePolicyName: "99" storagePolicyName: "99"
volumePath: "97" volumePath: "97"
status: status:
availableReplicas: 1309129044 availableReplicas: -578926701
conditions: conditions:
- lastTransitionTime: "2519-06-20T10:43:36Z" - lastTransitionTime: "2837-10-14T23:23:27Z"
message: "402" message: "430"
reason: "401" reason: "429"
status: 璻攜 status: '>堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ'
type: Ŭ尌eáNRNJ丧鴻ĿW癜鞤A馱z芀 type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲
fullyLabeledReplicas: 1648811301 fullyLabeledReplicas: -1698525469
observedGeneration: 1503865638277557961 observedGeneration: 8034206547748752944
readyReplicas: -2062497734 readyReplicas: -525943726
replicas: 1454867437 replicas: -1530496417

File diff suppressed because it is too large Load Diff

View File

@@ -71,409 +71,447 @@ spec:
selfLink: "28" selfLink: "28"
uid: TʡȂŏ{sǡƟ uid: TʡȂŏ{sǡƟ
spec: spec:
activeDeadlineSeconds: 9212087462729867542 activeDeadlineSeconds: 7270263763744228913
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "357" - key: "379"
operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊' operator: Ǹ|蕎'佉賞ǧĒz
values: values:
- "358" - "380"
matchFields: matchFields:
- key: "359" - key: "381"
operator: ʨIk(dŊiɢzĮ蛋I滞 operator: ùfŭƽ
values: values:
- "360" - "382"
weight: 646133945 weight: -767058113
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "353" - key: "375"
operator: Ã茓pȓɻ
values:
- "376"
matchFields:
- key: "377"
operator: "" operator: ""
values: values:
- "354" - "378"
matchFields:
- key: "355"
operator: ƽ眝{æ盪泙
values:
- "356"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8.--w0_1V7 - key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2
operator: In operator: DoesNotExist
values:
- 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "375" - "397"
topologyKey: "376" topologyKey: "398"
weight: -855547676 weight: 801902541
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd - key: K_A-_9_Z_C..7o_x3..-.8-Jp-94
operator: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "367" - "389"
topologyKey: "368" topologyKey: "390"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf - 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: DoesNotExist operator: NotIn
values:
- txb__-ex-_1_-ODgC_1-_V
matchLabels: 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: namespaces:
- "391" - "413"
topologyKey: "392" topologyKey: "414"
weight: 808399187 weight: -1851436166
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "383" - "405"
topologyKey: "384" topologyKey: "406"
automountServiceAccountToken: false automountServiceAccountToken: true
containers: containers:
- args: - args:
- "212" - "221"
command: command:
- "211" - "220"
env: env:
- name: "219" - name: "228"
value: "220" value: "229"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "226" key: "235"
name: "225" name: "234"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "221" apiVersion: "230"
fieldPath: "222" fieldPath: "231"
resourceFieldRef: resourceFieldRef:
containerName: "223" containerName: "232"
divisor: "932" divisor: "357"
resource: "224" resource: "233"
secretKeyRef: secretKeyRef:
key: "228" key: "237"
name: "227" name: "236"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "217" name: "226"
optional: false optional: false
prefix: "216" prefix: "225"
secretRef: secretRef:
name: "218" name: "227"
optional: true optional: false
image: "210" image: "219"
imagePullPolicy: Ǖɳɷ9Ì崟¿瘦ɖ緕 imagePullPolicy: T 苧yñKJɐ扵G
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "250" - "264"
httpGet: httpGet:
host: "253" host: "267"
httpHeaders: httpHeaders:
- name: "254" - name: "268"
value: "255" value: "269"
path: "251" path: "265"
port: "252" port: "266"
scheme: '''' scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
tcpSocket: tcpSocket:
host: "256" host: "271"
port: -801430937 port: "270"
preStop: preStop:
exec: exec:
command: command:
- "257" - "272"
httpGet: httpGet:
host: "259" host: "274"
httpHeaders: httpHeaders:
- name: "260" - name: "275"
value: "261" value: "276"
path: "258" path: "273"
port: 1810980158 port: -1161649101
scheme: _ƮA攤/ɸɎ R§耶FfBl scheme: 嚧ʣq埄
tcpSocket: tcpSocket:
host: "262" host: "278"
port: 1074486306 port: "277"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "235" - "244"
failureThreshold: -161485752 failureThreshold: -361442565
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
httpGet: httpGet:
host: "246" host: "246"
httpHeaders: httpHeaders:
- name: "247" - name: "247"
value: "248" value: "248"
path: "244" path: "245"
port: "245" port: -393291312
scheme: «丯Ƙ枛牐ɺ皚 scheme: Ŧ癃8鸖ɱJȉ罴ņ螡źȰ?
initialDelaySeconds: 766864314 initialDelaySeconds: 627713162
periodSeconds: 1495880465 periodSeconds: -1740959124
successThreshold: -1032967081 successThreshold: 158280212
tcpSocket: tcpSocket:
host: "249" host: "250"
port: -1934111455 port: "249"
timeoutSeconds: 1146016612 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: resources:
limits: limits:
9ǕLLȊɞ-uƻ悖ȩ0Ƹ[Ę: "638" 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0: "175"
requests: requests:
ǂ>5姣>懔%熷: "440" ɺ皚|懥ƖN粕擓ƖHV: "962"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- 勅跦Opwǩ曬逴褜1Ø - fʀļ腩墺Ò媁荭gw忊
drop: drop:
- ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ] - E剒蔞
privileged: true privileged: false
procMount: W:ĸ輦唊#v procMount: Ȩ<6鄰簳°Ļǟi&
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 1373384864388370080 runAsGroup: 2001337664780390084
runAsNonRoot: false runAsNonRoot: true
runAsUser: -6470941481344047265 runAsUser: -6177393256425700216
seLinuxOptions: seLinuxOptions:
level: "267" level: "283"
role: "265" role: "281"
type: "266" type: "282"
user: "264" user: "280"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "269" gmsaCredentialSpec: "285"
gmsaCredentialSpecName: "268" gmsaCredentialSpecName: "284"
runAsUserName: "270" runAsUserName: "286"
terminationMessagePath: "263" startupProbe:
terminationMessagePolicy: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ exec:
tty: true 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: volumeDevices:
- devicePath: "234" - devicePath: "243"
name: "233" name: "242"
volumeMounts: volumeMounts:
- mountPath: "230" - mountPath: "239"
mountPropagation: 奺Ȋ礶惇¸t颟.鵫ǚ mountPropagation: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ '
name: "229" name: "238"
readOnly: true subPath: "240"
subPath: "231" subPathExpr: "241"
subPathExpr: "232" workingDir: "222"
workingDir: "213"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "399" - "421"
options: options:
- name: "401" - name: "423"
value: "402" value: "424"
searches: searches:
- "400" - "422"
dnsPolicy: 娕uE增猍ǵ xǨŴ壶ƵfȽÃ茓pȓɻ dnsPolicy: n(fǂǢ曣ŋayåe躒訙Ǫ
enableServiceLinks: true enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "274" - "290"
command: command:
- "273" - "289"
env: env:
- name: "281" - name: "297"
value: "282" value: "298"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "288" key: "304"
name: "287" name: "303"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "283" apiVersion: "299"
fieldPath: "284" fieldPath: "300"
resourceFieldRef: resourceFieldRef:
containerName: "285" containerName: "301"
divisor: "355" divisor: "3"
resource: "286" resource: "302"
secretKeyRef: secretKeyRef:
key: "290" key: "306"
name: "289" name: "305"
optional: true optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "279" name: "295"
optional: true optional: true
prefix: "278" prefix: "294"
secretRef: secretRef:
name: "280" name: "296"
optional: false optional: false
image: "272" image: "288"
imagePullPolicy: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "312" - "335"
httpGet: httpGet:
host: "315" host: "338"
httpHeaders: httpHeaders:
- name: "316" - name: "339"
value: "317" value: "340"
path: "313" path: "336"
port: "314" port: "337"
scheme: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC scheme: C"6x$1s
tcpSocket: tcpSocket:
host: "319" host: "342"
port: "318" port: "341"
preStop: preStop:
exec: exec:
command: command:
- "320" - "343"
httpGet: httpGet:
host: "323" host: "345"
httpHeaders: httpHeaders:
- name: "324" - name: "346"
value: "325" value: "347"
path: "321" path: "344"
port: "322" port: -518160270
scheme: 鬍熖B芭花ª瘡蟦JBʟ鍏H鯂² scheme: ɔ幩še
tcpSocket: tcpSocket:
host: "326" host: "348"
port: -1187301925 port: 1956567721
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "297" - "313"
failureThreshold: 2030115750 failureThreshold: 472742933
httpGet: httpGet:
host: "300" host: "316"
httpHeaders: httpHeaders:
- name: "301" - name: "317"
value: "302" value: "318"
path: "298" path: "314"
port: "299" port: "315"
scheme: 现葢ŵ橨鬶l獕;跣Hǝcw媀瓄&翜舞拉 scheme: 冓鍓贯
initialDelaySeconds: 2066735093 initialDelaySeconds: 1290950685
periodSeconds: -940334911 periodSeconds: 1058960779
successThreshold: -341287812 successThreshold: -2133441986
tcpSocket: tcpSocket:
host: "304" host: "320"
port: "303" port: "319"
timeoutSeconds: -190183379 timeoutSeconds: 12533543
name: "271" name: "287"
ports: ports:
- containerPort: -379385405 - containerPort: -1296830577
hostIP: "277" hostIP: "293"
hostPort: 2058122084 hostPort: 1313273370
name: "276" name: "292"
protocol: '#嬀ơŸ8T 苧yñKJɐ扵Gƚ绤f'
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "305" - "321"
failureThreshold: -385597677 failureThreshold: 620822482
httpGet: httpGet:
host: "308" host: "323"
httpHeaders: httpHeaders:
- name: "309" - name: "324"
value: "310" value: "325"
path: "306" path: "322"
port: "307" port: 1332783160
scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -1971421078 initialDelaySeconds: -300247800
periodSeconds: -1730959016 periodSeconds: -126958936
successThreshold: 1272940694 successThreshold: 186945072
tcpSocket: tcpSocket:
host: "311" host: "327"
port: 458427807 port: "326"
timeoutSeconds: 1905181464 timeoutSeconds: 386804041
resources: resources:
limits: limits:
'|E剒蔞|表徶đ寳议Ƭƶ氩': "337" 淳4揻-$ɽ丟×x锏ɟ: "178"
requests: requests:
"": "124" Ö闊 鰔澝qV: "752"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- SvEȤƏ埮p - '|ʐşƧ諔迮ƙIJ嘢'
drop: drop:
- '{WOŭW灬pȭCV擭銆jʒǚ鍰' - ʗN
privileged: false privileged: false
procMount: DµņP)DŽ髐njʉBn(fǂǢ曣ŋ procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 741362943076737213 runAsGroup: 6726836758549163621
runAsNonRoot: false runAsNonRoot: false
runAsUser: 6726836758549163621 runAsUser: -6048969174364431391
seLinuxOptions: seLinuxOptions:
level: "331" level: "353"
role: "329" role: "351"
type: "330" type: "352"
user: "328" user: "350"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "333" gmsaCredentialSpec: "355"
gmsaCredentialSpecName: "332" gmsaCredentialSpecName: "354"
runAsUserName: "334" 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 stdin: true
stdinOnce: true stdinOnce: true
targetContainerName: "335" targetContainerName: "357"
terminationMessagePath: "327" terminationMessagePath: "349"
terminationMessagePolicy: Őnj汰8ŕ terminationMessagePolicy: ȤƏ埮pɵ
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "296" - devicePath: "312"
name: "295" name: "311"
volumeMounts: volumeMounts:
- mountPath: "292" - mountPath: "308"
mountPropagation: 簳°Ļǟi&皥贸 mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "291" name: "307"
subPath: "293" readOnly: true
subPathExpr: "294" subPath: "309"
workingDir: "275" subPathExpr: "310"
workingDir: "291"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "397" - "419"
ip: "396" ip: "418"
hostPID: true hostNetwork: true
hostname: "351" hostname: "373"
imagePullSecrets: imagePullSecrets:
- name: "350" - name: "372"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -507,37 +545,38 @@ spec:
name: "156" name: "156"
optional: false optional: false
image: "148" image: "148"
imagePullPolicy: Ŵ廷s{Ⱦdz@ imagePullPolicy: ŤǢʭ嵔棂p儼Ƿ裚瓶
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "188" - "196"
httpGet: httpGet:
host: "191" host: "199"
httpHeaders: httpHeaders:
- name: "192" - name: "200"
value: "193" value: "201"
path: "189" path: "197"
port: "190" port: "198"
scheme: 蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&蒒5靇C'
tcpSocket: tcpSocket:
host: "194" host: "202"
port: 559781916 port: 2126876305
preStop: preStop:
exec: exec:
command: command:
- "195" - "203"
httpGet: httpGet:
host: "197" host: "206"
httpHeaders: httpHeaders:
- name: "198" - name: "207"
value: "199" value: "208"
path: "196" path: "204"
port: 1150375229 port: "205"
scheme: QÄȻȊ+?ƭ峧Y栲茇竛吲蚛隖<Ƕ scheme: Ŵ廷s{Ⱦdz@
tcpSocket: tcpSocket:
host: "200" host: "209"
port: -1696471293 port: 406308963
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -593,28 +632,49 @@ spec:
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- ʋŀ樺ȃv渟7¤7d - +j忊Ŗȫ焗捏ĨFħ籘Àǒɿʒ刽ʼn
drop: drop:
- ƯĖ漘Z剚敍0)鈼¬麄p呝T - 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
privileged: true privileged: true
procMount: 瓧嫭塓烀罁胾^拜 procMount: fǣ萭旿@
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 825262458636305509 runAsGroup: 6506922239346928579
runAsNonRoot: true runAsNonRoot: true
runAsUser: 4181787587415673530 runAsUser: 1563703589270296759
seLinuxOptions: seLinuxOptions:
level: "205" level: "214"
role: "203" role: "212"
type: "204" type: "213"
user: "202" user: "211"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "207" gmsaCredentialSpec: "216"
gmsaCredentialSpecName: "206" gmsaCredentialSpecName: "215"
runAsUserName: "208" 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 stdin: true
stdinOnce: true stdinOnce: true
terminationMessagePath: "201" terminationMessagePath: "210"
terminationMessagePolicy: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇 terminationMessagePolicy: ŀ樺ȃv渟7¤7djƯĖ漘Z剚敍0
tty: true
volumeDevices: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -626,61 +686,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "340" nodeName: "362"
nodeSelector: nodeSelector:
"336": "337" "358": "359"
overhead: overhead:
癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607" 4'ď曕椐敛n湙: "310"
preemptionPolicy: eáNRNJ丧鴻Ŀ preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐'
priority: 1690570439 priority: -1852730577
priorityClassName: "398" priorityClassName: "420"
readinessGates: readinessGates:
- conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳 - conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅
restartPolicy: åe躒訙 restartPolicy: ɭɪǹ0衷,
runtimeClassName: "403" runtimeClassName: "425"
schedulerName: "393" schedulerName: "415"
securityContext: securityContext:
fsGroup: -7117039988160665426 fsGroup: 2585323675983182372
runAsGroup: 2548453080315983269 runAsGroup: 6386250802140824739
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7747616967629081728 runAsUser: -5315960194881172085
seLinuxOptions: seLinuxOptions:
level: "344" level: "366"
role: "342" role: "364"
type: "343" type: "365"
user: "341" user: "363"
supplementalGroups: supplementalGroups:
- -1193643752264108019 - -4480129203693517072
sysctls: sysctls:
- name: "348" - name: "370"
value: "349" value: "371"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "346" gmsaCredentialSpec: "368"
gmsaCredentialSpecName: "345" gmsaCredentialSpecName: "367"
runAsUserName: "347" runAsUserName: "369"
serviceAccount: "339" serviceAccount: "361"
serviceAccountName: "338" serviceAccountName: "360"
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "352" subdomain: "374"
terminationGracePeriodSeconds: 6942343986058351509 terminationGracePeriodSeconds: -3039830979334099524
tolerations: tolerations:
- effect: 料ȭzV镜籬ƽ - effect: ŽɣB矗E¸
key: "394" key: "416"
operator: ƹ| operator: 堺ʣ
tolerationSeconds: 935587338391120947 tolerationSeconds: -3532804738923434397
value: "395" value: "417"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: qW - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU
maxSkew: -137402083 maxSkew: -150478704
topologyKey: "404" topologyKey: "426"
whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥 whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -888,8 +948,8 @@ status:
collisionCount: 2063260600 collisionCount: 2063260600
conditions: conditions:
- lastTransitionTime: "2196-03-13T21:02:11Z" - lastTransitionTime: "2196-03-13T21:02:11Z"
message: "412" message: "434"
reason: "411" reason: "433"
status: '>c緍k¢茤Ƣǟ½灶du汎mō6µɑ' status: '>c緍k¢茤Ƣǟ½灶du汎mō6µɑ'
type: Ƅ抄3昞财Î嘝zʄ type: Ƅ抄3昞财Î嘝zʄ
currentNumberScheduled: -1707056814 currentNumberScheduled: -1707056814

File diff suppressed because it is too large Load Diff

View File

@@ -30,12 +30,12 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 997447044 minReadySeconds: 212061711
progressDeadlineSeconds: 1774123594 progressDeadlineSeconds: 1109758199
replicas: 896585016 replicas: 896585016
revisionHistoryLimit: 989524452 revisionHistoryLimit: -1092090658
rollbackTo: rollbackTo:
revision: -7811637368862163847 revision: -318895959020904110
selector: selector:
matchExpressions: 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 - 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 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: strategy:
rollingUpdate: {} rollingUpdate: {}
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
template: template:
metadata: metadata:
annotations: annotations:
@@ -75,412 +76,446 @@ spec:
selfLink: "28" selfLink: "28"
uid: ?Qȫş uid: ?Qȫş
spec: spec:
activeDeadlineSeconds: -3214891994203952546 activeDeadlineSeconds: -8619192438821356882
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "352" - key: "372"
operator: n覦灲閈誹ʅ蕉 operator: '}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊'
values: values:
- "353" - "373"
matchFields: matchFields:
- key: "354" - key: "374"
operator: "" operator: ʨIk(dŊiɢzĮ蛋I滞
values: values:
- "355" - "375"
weight: 702968201 weight: 646133945
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "348" - key: "368"
operator: Ǚ( operator: ǧĒzŔ瘍N
values: values:
- "349" - "369"
matchFields: matchFields:
- key: "350" - key: "370"
operator: 瘍Nʊ輔3璾ėȜv1b繐汚 operator: ƽ眝{æ盪泙
values: values:
- "351" - "371"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - key: 8.--w0_1V7
operator: NotIn operator: In
values: values:
- 0..KpiS.oK-.O--5-yp8q_s-L - 7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_8
matchLabels: 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: namespaces:
- "370" - "390"
topologyKey: "371" topologyKey: "391"
weight: 1195176401 weight: -855547676
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: V.-tfh4.caTz_.g.w-o.8_WT-M.3_-1y_8D_X._B__-Pd
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaces:
- "362" - "382"
topologyKey: "363" topologyKey: "383"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf
operator: In operator: DoesNotExist
values:
- ""
matchLabels: 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: namespaces:
- "386" - "406"
topologyKey: "387" topologyKey: "407"
weight: -1508769491 weight: 808399187
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - 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: NotIn operator: DoesNotExist
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: 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: namespaces:
- "378" - "398"
topologyKey: "379" topologyKey: "399"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "211" - "216"
command: command:
- "210" - "215"
env: env:
- name: "218" - name: "223"
value: "219" value: "224"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "225" key: "230"
name: "224" name: "229"
optional: false
fieldRef:
apiVersion: "220"
fieldPath: "221"
resourceFieldRef:
containerName: "222"
divisor: "771"
resource: "223"
secretKeyRef:
key: "227"
name: "226"
optional: true optional: true
fieldRef:
apiVersion: "225"
fieldPath: "226"
resourceFieldRef:
containerName: "227"
divisor: "595"
resource: "228"
secretKeyRef:
key: "232"
name: "231"
optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "216" name: "221"
optional: false optional: false
prefix: "215" prefix: "220"
secretRef: secretRef:
name: "217" name: "222"
optional: true optional: false
image: "209" image: "214"
imagePullPolicy: ƙt叀碧闳ȩr嚧ʣq埄趛屡 imagePullPolicy: û咡W<敄lu|榝$î.Ȏ蝪ʜ5
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "248" - "258"
httpGet: httpGet:
host: "250" host: "261"
httpHeaders: httpHeaders:
- name: "251" - name: "262"
value: "252" value: "263"
path: "249" path: "259"
port: -2013568185 port: "260"
scheme: '#yV''WKw(ğ儴Ůĺ}'
tcpSocket: tcpSocket:
host: "253" host: "264"
port: -20130017 port: 1943028037
preStop: preStop:
exec: exec:
command: command:
- "254" - "265"
httpGet: httpGet:
host: "256" host: "267"
httpHeaders: httpHeaders:
- name: "257" - name: "268"
value: "258" value: "269"
path: "255" path: "266"
port: -661937776 port: -1355476687
scheme: ØœȠƬQg鄠[颐o scheme: -Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ
tcpSocket: tcpSocket:
host: "259" host: "271"
port: 461585849 port: "270"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "234" - "239"
failureThreshold: -93157681 failureThreshold: -1213051101
httpGet: httpGet:
host: "236" host: "241"
httpHeaders: httpHeaders:
- name: "237" - name: "242"
value: "238" value: "243"
path: "235" path: "240"
port: -1285424066 port: -1654678802
scheme: ni酛3ƁÀ scheme:
initialDelaySeconds: -2036074491 initialDelaySeconds: -775511009
periodSeconds: 165047920 periodSeconds: -228822833
successThreshold: -393291312 successThreshold: -970312425
tcpSocket: tcpSocket:
host: "240" host: "244"
port: "239" port: 391562775
timeoutSeconds: -148216266 timeoutSeconds: -832805508
name: "208" name: "213"
ports: ports:
- containerPort: 1923334396 - containerPort: -775325416
hostIP: "214" hostIP: "219"
hostPort: 474119379 hostPort: 62799871
name: "213" name: "218"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ protocol: t莭琽§ć\ ïì
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "241" - "245"
failureThreshold: 267768240 failureThreshold: 571739592
httpGet: 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" host: "247"
port: -832805508 httpHeaders:
timeoutSeconds: -970312425 - name: "248"
value: "249"
path: "246"
port: -1905643191
scheme: Ǖɳɷ9Ì崟¿瘦ɖ緕
initialDelaySeconds: 852780575
periodSeconds: 893823156
successThreshold: -1980314709
tcpSocket:
host: "251"
port: "250"
timeoutSeconds: -1252938503
resources: resources:
limits: limits:
: "777" N粕擓ƖHVe熼: "334"
requests: requests:
rʤî萨zvt莭琽§ć\ ïì: "80" 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶: "388"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- 昕Ĭ - E埄Ȁ朦 wƯ貾坢'
drop: drop:
- ó藢xɮĵȑ6L* - aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
privileged: false privileged: false
procMount: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w' procMount: ""
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 2540215688947167763 runAsGroup: -2408264753085021035
runAsNonRoot: false runAsNonRoot: true
runAsUser: -5835415947553716289 runAsUser: -2270595441829602368
seLinuxOptions: seLinuxOptions:
level: "264" level: "276"
role: "262" role: "274"
type: "263" type: "275"
user: "261" user: "273"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "266" gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "265" gmsaCredentialSpecName: "277"
runAsUserName: "267" runAsUserName: "279"
terminationMessagePath: "260" startupProbe:
terminationMessagePolicy: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ exec:
tty: true 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: volumeDevices:
- devicePath: "233" - devicePath: "238"
name: "232" name: "237"
volumeMounts: volumeMounts:
- mountPath: "229" - mountPath: "234"
mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S mountPropagation: 癃8鸖
name: "228" name: "233"
readOnly: true readOnly: true
subPath: "230" subPath: "235"
subPathExpr: "231" subPathExpr: "236"
workingDir: "212" workingDir: "217"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "394" - "414"
options: options:
- name: "396" - name: "416"
value: "397" value: "417"
searches: searches:
- "395" - "415"
dnsPolicy: 晲T[irȎ3Ĕ\ dnsPolicy: Ƶf
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "271" - "283"
command: command:
- "270" - "282"
env: env:
- name: "278" - name: "290"
value: "279" value: "291"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "285" key: "297"
name: "284" name: "296"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "280" apiVersion: "292"
fieldPath: "281" fieldPath: "293"
resourceFieldRef: resourceFieldRef:
containerName: "282" containerName: "294"
divisor: "185" divisor: "381"
resource: "283" resource: "295"
secretKeyRef: secretKeyRef:
key: "287" key: "299"
name: "286" name: "298"
optional: false optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "276" name: "288"
optional: false optional: false
prefix: "275" prefix: "287"
secretRef: secretRef:
name: "277" name: "289"
optional: false optional: true
image: "269" image: "281"
imagePullPolicy: 騎C"6x$1sȣ±p鋄 imagePullPolicy: ņ
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "309" - "326"
httpGet: httpGet:
host: "311" host: "329"
httpHeaders: httpHeaders:
- name: "312" - name: "330"
value: "313" value: "331"
path: "310" path: "327"
port: -934378634 port: "328"
scheme: ɐ鰥 scheme: 幩šeSvEȤƏ埮pɵ
tcpSocket: tcpSocket:
host: "314" host: "333"
port: 630140708 port: "332"
preStop: preStop:
exec: exec:
command: command:
- "315" - "334"
httpGet: httpGet:
host: "318" host: "337"
httpHeaders: httpHeaders:
- name: "319" - name: "338"
value: "320" value: "339"
path: "316" path: "335"
port: "317" port: "336"
scheme: 8?Ǻ鱎ƙ;Nŕ璻Jih亏yƕ丆録² scheme: ş
tcpSocket: tcpSocket:
host: "321" host: "341"
port: 2080874371 port: "340"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "294" - "306"
failureThreshold: 1993268896 failureThreshold: -300247800
httpGet: httpGet:
host: "297" host: "308"
httpHeaders: httpHeaders:
- name: "298" - name: "309"
value: "299" value: "310"
path: "295" path: "307"
port: "296" port: 865289071
scheme: scheme: iɥ嵐sC8
initialDelaySeconds: 711020087 initialDelaySeconds: -1513284745
periodSeconds: -1965247100 periodSeconds: -414121491
successThreshold: 218453478 successThreshold: -1862764022
tcpSocket: tcpSocket:
host: "300" host: "311"
port: 1315054653 port: -898536659
timeoutSeconds: 1103049140 timeoutSeconds: 1258370227
name: "268" name: "280"
ports: ports:
- containerPort: -677617960 - containerPort: -1137436579
hostIP: "274" hostIP: "286"
hostPort: -552281772 hostPort: 1868683352
name: "273" name: "285"
protocol: ŕ翑0展} protocol: 颶妧Ö闊
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "301" - "312"
failureThreshold: -1250314365 failureThreshold: 215186711
httpGet: httpGet:
host: "304" host: "314"
httpHeaders: httpHeaders:
- name: "305" - name: "315"
value: "306" value: "316"
path: "302" path: "313"
port: "303" port: 323903711
scheme: 'ƿ頀"冓鍓贯澔 ' scheme: J
initialDelaySeconds: 1058960779 initialDelaySeconds: 657418949
periodSeconds: 472742933 periodSeconds: 287654902
successThreshold: 50696420 successThreshold: -2062708879
tcpSocket: tcpSocket:
host: "308" host: "318"
port: "307" port: "317"
timeoutSeconds: -2133441986 timeoutSeconds: -992558278
resources: resources:
limits: limits:
鬶l獕;跣Hǝcw: "242" ²sNƗ¸g: "50"
requests: requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" 酊龨δ摖ȱğ_<: "118"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȹ均i绝5哇芆斩ìh4Ɋ - DŽ髐njʉBn(fǂǢ曣
drop: drop:
- Ȗ|ʐşƧ諔迮ƙIJ嘢4 - ay
privileged: false privileged: false
procMount: ďW賁Ěɭɪǹ0衷,ƷƣMț譎懚XW procMount: 嗆u
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6618112330449141397 runAsGroup: -5996624450771474158
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4288903380102217677 runAsUser: 1958157659034146020
seLinuxOptions: seLinuxOptions:
level: "326" level: "346"
role: "324" role: "344"
type: "325" type: "345"
user: "323" user: "343"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "328" gmsaCredentialSpec: "348"
gmsaCredentialSpecName: "327" gmsaCredentialSpecName: "347"
runAsUserName: "329" runAsUserName: "349"
stdinOnce: true startupProbe:
targetContainerName: "330" exec:
terminationMessagePath: "322" command:
terminationMessagePolicy: 灩聋3趐囨鏻砅邻 - "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 tty: true
volumeDevices: volumeDevices:
- devicePath: "293" - devicePath: "305"
name: "292" name: "304"
volumeMounts: volumeMounts:
- mountPath: "289" - mountPath: "301"
mountPropagation: "" mountPropagation: ƺ蛜6Ɖ飴ɎiǨź
name: "288" name: "300"
subPath: "290" readOnly: true
subPathExpr: "291" subPath: "302"
workingDir: "272" subPathExpr: "303"
workingDir: "284"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "392" - "412"
ip: "391" ip: "411"
hostIPC: true hostNetwork: true
hostname: "346" hostname: "366"
imagePullSecrets: imagePullSecrets:
- name: "345" - name: "365"
initContainers: initContainers:
- args: - args:
- "150" - "150"
@@ -514,37 +549,38 @@ spec:
name: "156" name: "156"
optional: true optional: true
image: "148" image: "148"
imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "186" - "192"
httpGet: httpGet:
host: "189" host: "194"
httpHeaders: httpHeaders:
- name: "190" - name: "195"
value: "191" value: "196"
path: "187" path: "193"
port: "188" port: -2015604435
scheme: £ȹ嫰ƹǔw÷nI粛E煹 scheme: jƯĖ漘Z剚敍0)
tcpSocket: tcpSocket:
host: "192" host: "197"
port: 135036402 port: 424236719
preStop: preStop:
exec: exec:
command: command:
- "193" - "198"
httpGet: httpGet:
host: "195" host: "200"
httpHeaders: httpHeaders:
- name: "196" - name: "201"
value: "197" value: "202"
path: "194" path: "199"
port: -1188430996 port: -1131820775
scheme: djƯĖ漘Z剚敍0)鈼¬麄p呝TG;邪 scheme: Ƿ裚瓶釆Ɗ+j忊
tcpSocket: tcpSocket:
host: "199" host: "204"
port: "198" port: "203"
livenessProbe: livenessProbe:
exec: exec:
command: command:
@@ -601,28 +637,47 @@ spec:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ȫ焗捏ĨFħ籘Àǒɿʒ刽 - ""
drop: drop:
- 掏1ſ - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
privileged: true privileged: false
procMount: VƋZ1Ůđ眊ľǎɳ,ǿ飏 procMount: $MVȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄鸫
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 3747003978559617838 runAsGroup: -8419423421380299597
runAsNonRoot: false runAsNonRoot: false
runAsUser: 7739117973959656085 runAsUser: -6576869501326512452
seLinuxOptions: seLinuxOptions:
level: "204" level: "209"
role: "202" role: "207"
type: "203" type: "208"
user: "201" user: "206"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "206" gmsaCredentialSpec: "211"
gmsaCredentialSpecName: "205" gmsaCredentialSpecName: "210"
runAsUserName: "207" runAsUserName: "212"
stdin: true startupProbe:
stdinOnce: true exec:
terminationMessagePath: "200" command:
terminationMessagePolicy: ɩC - "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: volumeDevices:
- devicePath: "172" - devicePath: "172"
name: "171" name: "171"
@@ -634,60 +689,61 @@ spec:
subPath: "169" subPath: "169"
subPathExpr: "170" subPathExpr: "170"
workingDir: "151" workingDir: "151"
nodeName: "335" nodeName: "355"
nodeSelector: nodeSelector:
"331": "332" "351": "352"
overhead: overhead:
tHǽ÷閂抰^窄CǙķȈ: "97" 癜鞤A馱z芀¿l磶Bb偃礳Ȭ痍脉PPö: "607"
preemptionPolicy: ý筞X preemptionPolicy: eáNRNJ丧鴻Ŀ
priority: -1331113536 priority: 1690570439
priorityClassName: "393" priorityClassName: "413"
readinessGates: readinessGates:
- conditionType: mō6µɑ`ȗ<8^翜 - conditionType: 梑ʀŖ鱓;鹡鑓侅闍ŏŃŋŏ}ŀ姳
restartPolicy: w妕眵笭/9崍h趭(娕 restartPolicy: T[
runtimeClassName: "398" runtimeClassName: "418"
schedulerName: "388" schedulerName: "408"
securityContext: securityContext:
fsGroup: 7747616967629081728 fsGroup: 760480547754807445
runAsGroup: 7461098988156705429 runAsGroup: -801152248124332545
runAsNonRoot: false runAsNonRoot: true
runAsUser: 4430285638700927057 runAsUser: -2781126825051715248
seLinuxOptions: seLinuxOptions:
level: "339" level: "359"
role: "337" role: "357"
type: "338" type: "358"
user: "336" user: "356"
supplementalGroups: supplementalGroups:
- 7866826580662861268 - 5255171395073905944
sysctls: sysctls:
- name: "343" - name: "363"
value: "344" value: "364"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "341" gmsaCredentialSpec: "361"
gmsaCredentialSpecName: "340" gmsaCredentialSpecName: "360"
runAsUserName: "342" runAsUserName: "362"
serviceAccount: "334" serviceAccount: "354"
serviceAccountName: "333" serviceAccountName: "353"
shareProcessNamespace: true shareProcessNamespace: false
subdomain: "347" subdomain: "367"
terminationGracePeriodSeconds: 6245571390016329382 terminationGracePeriodSeconds: -2738603156841903595
tolerations: tolerations:
- effect: 緍k¢茤 - effect: 料ȭzV镜籬ƽ
key: "389" key: "409"
operator: 抄3昞财Î嘝zʄ!ć operator: ƹ|
tolerationSeconds: 4096844323391966153 tolerationSeconds: 935587338391120947
value: "390" value: "410"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: 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 - key: qW
operator: DoesNotExist operator: In
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: 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 E--pT751: mV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..X
: x_.4dwFbuvEf55Y2k.F-4 maxSkew: -137402083
maxSkew: 1956797678 topologyKey: "419"
topologyKey: "399" whenUnsatisfiable: Ȩç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥
whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@@ -888,17 +944,17 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1521312599 availableReplicas: 740158871
collisionCount: -612321491 collisionCount: 571778293
conditions: conditions:
- lastTransitionTime: "2615-10-02T05:14:27Z" - lastTransitionTime: "1970-05-16T01:44:00Z"
lastUpdateTime: "2733-02-09T15:36:31Z" lastUpdateTime: "2469-07-10T03:20:34Z"
message: "407" message: "427"
reason: "406" reason: "426"
status: status: '''ƈoIǢ龞瞯å'
type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö' type: ""
observedGeneration: -4950488263500864484 observedGeneration: 1751238822830387407
readyReplicas: -1121580186 readyReplicas: -1450995995
replicas: 67329694 replicas: -106050665
unavailableReplicas: 129237050 unavailableReplicas: -449319810
updatedReplicas: 1689648303 updatedReplicas: -929473748

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -115,6 +115,7 @@ go_test(
"restart_test.go", "restart_test.go",
"runtime_conformance_test.go", "runtime_conformance_test.go",
"security_context_test.go", "security_context_test.go",
"startup_probe_test.go",
"summary_test.go", "summary_test.go",
"system_node_critical_test.go", "system_node_critical_test.go",
"volume_manager_test.go", "volume_manager_test.go",