Merge pull request #99576 from marosset/windows-host-process-work

Windows host process work
This commit is contained in:
Kubernetes Prow Robot 2021-05-20 14:16:15 -07:00 committed by GitHub
commit 6e4e32985a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
88 changed files with 15304 additions and 13045 deletions

View File

@ -9904,6 +9904,10 @@
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"hostProcess": {
"description": "HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.",
"type": "boolean"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"

View File

@ -401,6 +401,7 @@ func GetValidationOptionsFromPodSpecAndMeta(podSpec, oldPodSpec *api.PodSpec, po
AllowInvalidPodDeletionCost: !utilfeature.DefaultFeatureGate.Enabled(features.PodDeletionCost),
// Do not allow pod spec to use non-integer multiple of huge page unit size default
AllowIndivisibleHugePagesValues: false,
AllowWindowsHostProcessField: utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers),
}
if oldPodSpec != nil {
@ -415,6 +416,8 @@ func GetValidationOptionsFromPodSpecAndMeta(podSpec, oldPodSpec *api.PodSpec, po
return !opts.AllowDownwardAPIHugePages
})
}
// if old spec has Windows Host Process fields set, we must allow it
opts.AllowWindowsHostProcessField = opts.AllowWindowsHostProcessField || setsWindowsHostProcess(oldPodSpec)
// if old spec used non-integer multiple of huge page unit size, we must allow it
opts.AllowIndivisibleHugePagesValues = usesIndivisibleHugePagesValues(oldPodSpec)
@ -944,3 +947,28 @@ func SeccompFieldForAnnotation(annotation string) *api.SeccompProfile {
// length or if the annotation has an unrecognized value
return nil
}
// setsWindowsHostProcess returns true if WindowsOptions.HostProcess is set (true or false)
// anywhere in the pod spec.
func setsWindowsHostProcess(podSpec *api.PodSpec) bool {
if podSpec == nil {
return false
}
// Check Pod's WindowsOptions.HostProcess
if podSpec.SecurityContext != nil && podSpec.SecurityContext.WindowsOptions != nil && podSpec.SecurityContext.WindowsOptions.HostProcess != nil {
return true
}
// Check WindowsOptions.HostProcess for each container
inUse := false
VisitContainers(podSpec, AllContainers, func(c *api.Container, containerType ContainerType) bool {
if c.SecurityContext != nil && c.SecurityContext.WindowsOptions != nil && c.SecurityContext.WindowsOptions.HostProcess != nil {
inUse = true
return false
}
return true
})
return inUse
}

View File

@ -5357,6 +5357,16 @@ type WindowsSecurityContextOptions struct {
// PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
RunAsUserName *string
// HostProcess determines if a container should be run as a 'Host Process' container.
// This field is alpha-level and will only be honored by components that enable the
// WindowsHostProcessContainers feature flag. Setting this field without the feature
// flag will result in errors when validating the Pod. All of a Pod's containers must
// have the same effective HostProcess value (it is not allowed to have a mix of HostProcess
// containers and non-HostProcess containers). In addition, if HostProcess is true
// then HostNetwork must also be set to true.
// +optional
HostProcess *bool
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

View File

@ -8212,6 +8212,7 @@ func autoConvert_v1_WindowsSecurityContextOptions_To_core_WindowsSecurityContext
out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
out.HostProcess = (*bool)(unsafe.Pointer(in.HostProcess))
return nil
}
@ -8224,6 +8225,7 @@ func autoConvert_core_WindowsSecurityContextOptions_To_v1_WindowsSecurityContext
out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
out.HostProcess = (*bool)(unsafe.Pointer(in.HostProcess))
return nil
}

View File

@ -3204,6 +3204,8 @@ type PodValidationOptions struct {
AllowInvalidPodDeletionCost bool
// Allow pod spec to use non-integer multiple of huge page unit size
AllowIndivisibleHugePagesValues bool
// Allow hostProcess field to be set in windows security context
AllowWindowsHostProcessField bool
}
// ValidatePodSingleHugePageResources checks if there are multiple huge
@ -3327,6 +3329,7 @@ func ValidatePodSpec(spec *core.PodSpec, podMeta *metav1.ObjectMeta, fldPath *fi
allErrs = append(allErrs, validatePodDNSConfig(spec.DNSConfig, &spec.DNSPolicy, fldPath.Child("dnsConfig"))...)
allErrs = append(allErrs, validateReadinessGates(spec.ReadinessGates, fldPath.Child("readinessGates"))...)
allErrs = append(allErrs, validateTopologySpreadConstraints(spec.TopologySpreadConstraints, fldPath.Child("topologySpreadConstraints"))...)
allErrs = append(allErrs, validateWindowsHostProcessPod(spec, fldPath, opts)...)
if len(spec.ServiceAccountName) > 0 {
for _, msg := range ValidateServiceAccountName(spec.ServiceAccountName, false) {
allErrs = append(allErrs, field.Invalid(fldPath.Child("serviceAccountName"), spec.ServiceAccountName, msg))
@ -5974,6 +5977,91 @@ func validateWindowsSecurityContextOptions(windowsOptions *core.WindowsSecurityC
return allErrs
}
func validateWindowsHostProcessPod(podSpec *core.PodSpec, fieldPath *field.Path, opts PodValidationOptions) field.ErrorList {
allErrs := field.ErrorList{}
// Keep track of container and hostProcess container count for validate
containerCount := 0
hostProcessContainerCount := 0
var podHostProcess *bool
if podSpec.SecurityContext != nil && podSpec.SecurityContext.WindowsOptions != nil {
podHostProcess = podSpec.SecurityContext.WindowsOptions.HostProcess
}
if !opts.AllowWindowsHostProcessField && podHostProcess != nil {
// Do not allow pods to persist data that sets hostProcess (true or false)
errMsg := "not allowed when feature gate 'WindowsHostProcessContainers' is not enabled"
allErrs = append(allErrs, field.Forbidden(fieldPath.Child("securityContext", "windowsOptions", "hostProcess"), errMsg))
return allErrs
}
hostNetwork := false
if podSpec.SecurityContext != nil {
hostNetwork = podSpec.SecurityContext.HostNetwork
}
podshelper.VisitContainersWithPath(podSpec, fieldPath, func(c *core.Container, cFieldPath *field.Path) bool {
containerCount++
var containerHostProcess *bool = nil
if c.SecurityContext != nil && c.SecurityContext.WindowsOptions != nil {
containerHostProcess = c.SecurityContext.WindowsOptions.HostProcess
}
if !opts.AllowWindowsHostProcessField && containerHostProcess != nil {
// Do not allow pods to persist data that sets hostProcess (true or false)
errMsg := "not allowed when feature gate 'WindowsHostProcessContainers' is not enabled"
allErrs = append(allErrs, field.Forbidden(cFieldPath.Child("securityContext", "windowsOptions", "hostProcess"), errMsg))
}
if podHostProcess != nil && containerHostProcess != nil && *podHostProcess != *containerHostProcess {
errMsg := fmt.Sprintf("pod hostProcess value must be identical if both are specified, was %v", *podHostProcess)
allErrs = append(allErrs, field.Invalid(cFieldPath.Child("securityContext", "windowsOptions", "hostProcess"), *containerHostProcess, errMsg))
}
switch {
case containerHostProcess != nil && *containerHostProcess:
// Container explitly sets hostProcess=true
hostProcessContainerCount++
case containerHostProcess == nil && podHostProcess != nil && *podHostProcess:
// Container inherits hostProcess=true from pod settings
hostProcessContainerCount++
}
return true
})
if hostProcessContainerCount > 0 {
// Fail Pod validation if feature is not enabled (unless podspec already exists and contains HostProcess fields) instead of dropping fields based on PRR reivew.
if !opts.AllowWindowsHostProcessField {
errMsg := "pod must not contain Windows hostProcess containers when feature gate 'WindowsHostProcessContainers' is not enabled"
allErrs = append(allErrs, field.Forbidden(fieldPath, errMsg))
return allErrs
}
// At present, if a Windows Pods contains any HostProcess containers than all containers must be
// HostProcess containers (explicitly set or inherited).
if hostProcessContainerCount != containerCount {
errMsg := "If pod contains any hostProcess containers then all containers must be HostProcess containers"
allErrs = append(allErrs, field.Invalid(fieldPath, "", errMsg))
}
// At present Windows Pods which contain HostProcess containers must also set HostNetwork.
if hostNetwork != true {
errMsg := "hostNetwork must be true if pod contains any hostProcess containers"
allErrs = append(allErrs, field.Invalid(fieldPath.Child("hostNetwork"), hostNetwork, errMsg))
}
if !capabilities.Get().AllowPrivileged {
errMsg := "hostProcess containers are disallowed by cluster policy"
allErrs = append(allErrs, field.Forbidden(fieldPath, errMsg))
}
}
return allErrs
}
func ValidatePodLogOptions(opts *core.PodLogOptions) field.ErrorList {
allErrs := field.ErrorList{}
if opts.TailLines != nil && *opts.TailLines < 0 {

View File

@ -17399,3 +17399,393 @@ func TestValidateNonSpecialIP(t *testing.T) {
})
}
}
func TestValidateWindowsHostProcessPod(t *testing.T) {
const containerName = "container"
falseVar := false
trueVar := true
testCases := []struct {
name string
expectError bool
featureEnabled bool
allowPrivileged bool
podSpec *core.PodSpec
}{
{
name: "Spec with feature disabled and pod-wide HostProcess=false and should not validate",
expectError: true,
featureEnabled: false,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
Containers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Spec with feature disabled and pod-wide HostProcess=nil set should valildate",
expectError: false,
featureEnabled: false,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: nil,
},
},
Containers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Spec with feature disabled and container setting HostProcess=true should not valildate",
expectError: true,
featureEnabled: false,
allowPrivileged: true,
podSpec: &core.PodSpec{
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
},
},
{
name: "Spec with feature disabled and init container setting HostProcess=true should not valildate",
expectError: true,
featureEnabled: false,
allowPrivileged: true,
podSpec: &core.PodSpec{
InitContainers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=true, and HostNetwork unset should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=ture, and HostNetwork set should validate",
expectError: false,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=ture, HostNetwork set, and containers setting HostProcess=true should validate",
expectError: false,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=nil, HostNetwork set, and all containers setting HostProcess=true should validate",
expectError: false,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
},
},
{
name: "Pods with feature enabled, some containers setting HostProcess=true, and others setting HostProcess=false should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
}},
},
},
{
name: "Spec with feature enabled, some containers setting HostProcess=true, and other leaving HostProcess unset should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=true, some containers setting HostProcess=true, and init containers setting HostProcess=false should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=true, some containers setting HostProcess=true, and others setting HostProcess=false should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{
{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}, {
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
},
},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=true, some containers setting HostProcess=true, and others leaving HostProcess=nil should validate",
expectError: false,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Spec with feature enabled, pod-wide HostProcess=false, some contaienrs setting HostProccess=true should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
InitContainers: []core.Container{{
Name: containerName,
}},
},
},
{
name: "Pod's HostProcess set to true but all containers override to false should not validate",
expectError: true,
featureEnabled: true,
allowPrivileged: true,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
}},
},
},
{
name: "Valid HostProcess pod should spec should not validate if allowPrivileged is not set",
expectError: true,
featureEnabled: true,
allowPrivileged: false,
podSpec: &core.PodSpec{
SecurityContext: &core.PodSecurityContext{
HostNetwork: true,
},
Containers: []core.Container{{
Name: containerName,
SecurityContext: &core.SecurityContext{
WindowsOptions: &core.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
},
},
}
for _, testCase := range testCases {
t.Run(testCase.name, func(t *testing.T) {
defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WindowsHostProcessContainers, testCase.featureEnabled)()
opts := PodValidationOptions{AllowWindowsHostProcessField: testCase.featureEnabled}
capabilities.SetForTests(capabilities.Capabilities{
AllowPrivileged: testCase.allowPrivileged,
})
errs := validateWindowsHostProcessPod(testCase.podSpec, field.NewPath("spec"), opts)
if testCase.expectError && len(errs) == 0 {
t.Errorf("Unexpected success")
}
if !testCase.expectError && len(errs) != 0 {
t.Errorf("Unexpected error(s): %v", errs)
}
})
}
}

View File

@ -5895,6 +5895,11 @@ func (in *WindowsSecurityContextOptions) DeepCopyInto(out *WindowsSecurityContex
*out = new(string)
**out = **in
}
if in.HostProcess != nil {
in, out := &in.HostProcess, &out.HostProcess
*out = new(bool)
**out = **in
}
return
}

View File

@ -721,6 +721,12 @@ const (
//
// Enables kubelet to detect CSI volume condition and send the event of the abnormal volume to the corresponding pod that is using it.
CSIVolumeHealth featuregate.Feature = "CSIVolumeHealth"
// owner: @marosset
// alpha: v1.22
//
// Enables support for 'HostProcess' containers on Windows nodes.
WindowsHostProcessContainers featuregate.Feature = "WindowsHostProcessContainers"
)
func init() {
@ -830,6 +836,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
KubeletPodResourcesGetAllocatable: {Default: false, PreRelease: featuregate.Alpha},
NamespaceDefaultLabelName: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.24
CSIVolumeHealth: {Default: false, PreRelease: featuregate.Alpha},
WindowsHostProcessContainers: {Default: false, PreRelease: featuregate.Alpha},
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
// unintentionally on either side:

View File

@ -31,6 +31,7 @@ import (
"k8s.io/client-go/tools/record"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
podutil "k8s.io/kubernetes/pkg/api/v1/pod"
sc "k8s.io/kubernetes/pkg/securitycontext"
hashutil "k8s.io/kubernetes/pkg/util/hash"
"k8s.io/kubernetes/third_party/forked/golang/expansion"
utilsnet "k8s.io/utils/net"
@ -310,6 +311,34 @@ func HasPrivilegedContainer(pod *v1.Pod) bool {
return hasPrivileged
}
// HasWindowsHostProcessContainer returns true if any of the containers in a pod are HostProcess containers.
func HasWindowsHostProcessContainer(pod *v1.Pod) bool {
var hasHostProcess bool
podutil.VisitContainers(&pod.Spec, podutil.AllFeatureEnabledContainers(), func(c *v1.Container, containerType podutil.ContainerType) bool {
if sc.HasWindowsHostProcessRequest(pod, c) {
hasHostProcess = true
return false
}
return true
})
return hasHostProcess
}
// AllContainersAreWindowsHostProcess returns true if all containres in a pod are HostProcess containers.
func AllContainersAreWindowsHostProcess(pod *v1.Pod) bool {
allHostProcess := true
podutil.VisitContainers(&pod.Spec, podutil.AllFeatureEnabledContainers(), func(c *v1.Container, containerType podutil.ContainerType) bool {
if !sc.HasWindowsHostProcessRequest(pod, c) {
allHostProcess = false
return false
}
return true
})
return allHostProcess
}
// MakePortMappings creates internal port mapping from api port mapping.
func MakePortMappings(container *v1.Container) (ports []PortMapping) {
names := make(map[string]struct{})

View File

@ -19,14 +19,16 @@ limitations under the License.
package kuberuntime
import (
"fmt"
"runtime"
"k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"
utilfeature "k8s.io/apiserver/pkg/util/feature"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
"k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/features"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/securitycontext"
"k8s.io/klog/v2"
)
// applyPlatformSpecificContainerConfig applies platform specific configurations to runtimeapi.ContainerConfig.
@ -122,5 +124,12 @@ func (m *kubeGenericRuntimeManager) generateWindowsContainerConfig(container *v1
wc.SecurityContext.RunAsUsername = *effectiveSc.WindowsOptions.RunAsUserName
}
if securitycontext.HasWindowsHostProcessRequest(pod, container) {
if !utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers) {
return nil, fmt.Errorf("pod contains HostProcess containers but feature 'WindowsHostProcessContainers' is not enabled")
}
wc.SecurityContext.HostProcess = true
}
return wc, nil
}

View File

@ -25,8 +25,10 @@ import (
v1 "k8s.io/api/core/v1"
kubetypes "k8s.io/apimachinery/pkg/types"
utilfeature "k8s.io/apiserver/pkg/util/feature"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
"k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/features"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/kubelet/types"
"k8s.io/kubernetes/pkg/kubelet/util"
@ -138,6 +140,14 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *v1.Pod, attemp
}
podSandboxConfig.Linux = lc
if runtime.GOOS == "windows" {
wc, err := m.generatePodSandboxWindowsConfig(pod)
if err != nil {
return nil, err
}
podSandboxConfig.Windows = wc
}
return podSandboxConfig, nil
}
@ -206,6 +216,54 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxLinuxConfig(pod *v1.Pod) (
return lc, nil
}
// generatePodSandboxWindowsConfig generates WindowsPodSandboxConfig from v1.Pod.
// On Windows this will get called in addition to LinuxPodSandboxConfig because not all relevant fields have been added to
// WindowsPodSandboxConfig at this time.
func (m *kubeGenericRuntimeManager) generatePodSandboxWindowsConfig(pod *v1.Pod) (*runtimeapi.WindowsPodSandboxConfig, error) {
wc := &runtimeapi.WindowsPodSandboxConfig{
SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{},
}
sc := pod.Spec.SecurityContext
if sc == nil || sc.WindowsOptions == nil {
return wc, nil
}
wo := sc.WindowsOptions
if wo.GMSACredentialSpec != nil {
wc.SecurityContext.CredentialSpec = *wo.GMSACredentialSpec
}
if wo.RunAsUserName != nil {
wc.SecurityContext.RunAsUsername = *wo.RunAsUserName
}
if kubecontainer.HasWindowsHostProcessContainer(pod) {
// Pods containing HostProcess containers should fail to schedule if feature is not
// enabled instead of trying to schedule containers as regular containers as stated in
// PRR review.
if !utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers) {
return nil, fmt.Errorf("pod contains HostProcess containers but feature 'WindowsHostProcessContainers' is not enabled")
}
if wo.HostProcess != nil && !*wo.HostProcess {
return nil, fmt.Errorf("pod must not contain any HostProcess containers if Pod's WindowsOptions.HostProcess is set to false")
}
// At present Windows all containers in a Windows pod must be HostProcess containers
// and HostNetwork is required to be set.
if !kubecontainer.AllContainersAreWindowsHostProcess(pod) {
return nil, fmt.Errorf("pod must not contain both HostProcess and non-HostProcess containers")
}
if !kubecontainer.IsHostNetworkPod(pod) {
return nil, fmt.Errorf("hostNetwork is required if Pod contains HostProcess containers")
}
wc.SecurityContext.HostProcess = true
}
return wc, nil
}
// getKubeletSandboxes lists all (or just the running) sandboxes managed by kubelet.
func (m *kubeGenericRuntimeManager) getKubeletSandboxes(all bool) ([]*runtimeapi.PodSandbox, error) {
var filter *runtimeapi.PodSandboxFilter

View File

@ -17,6 +17,7 @@ limitations under the License.
package kuberuntime
import (
"fmt"
"os"
"path/filepath"
"testing"
@ -25,7 +26,10 @@ import (
"github.com/stretchr/testify/require"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
utilfeature "k8s.io/apiserver/pkg/util/feature"
featuregatetesting "k8s.io/component-base/featuregate/testing"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
"k8s.io/kubernetes/pkg/features"
containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
"k8s.io/kubernetes/pkg/kubelet/runtimeclass"
rctest "k8s.io/kubernetes/pkg/kubelet/runtimeclass/testing"
@ -172,3 +176,187 @@ func newSeccompPod(podFieldProfile, containerFieldProfile *v1.SeccompProfile, po
}
return pod
}
func TestGeneratePodSandboxWindowsConfig(t *testing.T) {
_, _, m, err := createTestRuntimeManager()
require.NoError(t, err)
const containerName = "container"
gmsaCreds := "gmsa-creds"
userName := "SYSTEM"
trueVar := true
falseVar := false
testCases := []struct {
name string
hostProcessFeatureEnabled bool
podSpec *v1.PodSpec
expectedWindowsConfig *runtimeapi.WindowsPodSandboxConfig
expectedError error
}{
{
name: "Empty PodSecurityContext",
hostProcessFeatureEnabled: false,
podSpec: &v1.PodSpec{
Containers: []v1.Container{{
Name: containerName,
}},
},
expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{
SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{},
},
expectedError: nil,
},
{
name: "GMSACredentialSpec in PodSecurityContext",
hostProcessFeatureEnabled: false,
podSpec: &v1.PodSpec{
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
GMSACredentialSpec: &gmsaCreds,
},
},
Containers: []v1.Container{{
Name: containerName,
}},
},
expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{
SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{
CredentialSpec: "gmsa-creds",
},
},
expectedError: nil,
},
{
name: "RunAsUserName in PodSecurityContext",
hostProcessFeatureEnabled: false,
podSpec: &v1.PodSpec{
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
RunAsUserName: &userName,
},
},
Containers: []v1.Container{{
Name: containerName,
}},
},
expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{
SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{
RunAsUsername: "SYSTEM",
},
},
expectedError: nil,
},
{
name: "Pod with HostProcess containers and feature gate disabled",
hostProcessFeatureEnabled: false,
podSpec: &v1.PodSpec{
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []v1.Container{{
Name: containerName,
}},
},
expectedWindowsConfig: nil,
expectedError: fmt.Errorf("pod contains HostProcess containers but feature 'WindowsHostProcessContainers' is not enabled"),
},
{
name: "Pod with HostProcess containers and non-HostProcess containers",
hostProcessFeatureEnabled: true,
podSpec: &v1.PodSpec{
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []v1.Container{{
Name: containerName,
}, {
Name: containerName,
SecurityContext: &v1.SecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
}},
},
expectedWindowsConfig: nil,
expectedError: fmt.Errorf("pod must not contain both HostProcess and non-HostProcess containers"),
},
{
name: "Pod with HostProcess containers and HostNetwork not set",
hostProcessFeatureEnabled: true,
podSpec: &v1.PodSpec{
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []v1.Container{{
Name: containerName,
}},
},
expectedWindowsConfig: nil,
expectedError: fmt.Errorf("hostNetwork is required if Pod contains HostProcess containers"),
},
{
name: "Pod with HostProcess containers and HostNetwork set",
hostProcessFeatureEnabled: true,
podSpec: &v1.PodSpec{
HostNetwork: true,
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
Containers: []v1.Container{{
Name: containerName,
}},
},
expectedWindowsConfig: &runtimeapi.WindowsPodSandboxConfig{
SecurityContext: &runtimeapi.WindowsSandboxSecurityContext{
HostProcess: true,
},
},
expectedError: nil,
},
{
name: "Pod's WindowsOptions.HostProcess set to false and pod has HostProcess containers",
hostProcessFeatureEnabled: true,
podSpec: &v1.PodSpec{
HostNetwork: true,
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &falseVar,
},
},
Containers: []v1.Container{{
Name: containerName,
SecurityContext: &v1.SecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
}},
},
expectedWindowsConfig: nil,
expectedError: fmt.Errorf("pod must not contain any HostProcess containers if Pod's WindowsOptions.HostProcess is set to false"),
},
}
for _, testCase := range testCases {
t.Run(testCase.name, func(t *testing.T) {
defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WindowsHostProcessContainers, testCase.hostProcessFeatureEnabled)()
pod := &v1.Pod{}
pod.Spec = *testCase.podSpec
wc, err := m.generatePodSandboxWindowsConfig(pod)
assert.Equal(t, wc, testCase.expectedWindowsConfig)
assert.Equal(t, err, testCase.expectedError)
})
}
}

View File

@ -18,13 +18,17 @@ package kuberuntime
import (
"encoding/json"
"runtime"
"strconv"
v1 "k8s.io/api/core/v1"
kubetypes "k8s.io/apimachinery/pkg/types"
utilfeature "k8s.io/apiserver/pkg/util/feature"
"k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/features"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/kubelet/types"
sc "k8s.io/kubernetes/pkg/securitycontext"
)
const (
@ -38,6 +42,12 @@ const (
containerTerminationMessagePolicyLabel = "io.kubernetes.container.terminationMessagePolicy"
containerPreStopHandlerLabel = "io.kubernetes.container.preStopHandler"
containerPortsLabel = "io.kubernetes.container.ports"
// TODO: remove this annotation when moving to beta for Windows hostprocess containers
// xref: https://github.com/kubernetes/kubernetes/pull/99576/commits/42fb66073214eed6fe43fa8b1586f396e30e73e3#r635392090
// Currently, ContainerD on Windows does not yet fully support HostProcess containers
// but will pass annotations to hcsshim which does have support.
windowsHostProcessContainer = "microsoft.com/hostprocess-container"
)
type labeledPodSandboxInfo struct {
@ -89,7 +99,23 @@ func newPodLabels(pod *v1.Pod) map[string]string {
// newPodAnnotations creates pod annotations from v1.Pod.
func newPodAnnotations(pod *v1.Pod) map[string]string {
return pod.Annotations
annotations := map[string]string{}
// Get annotations from v1.Pod
for k, v := range pod.Annotations {
annotations[k] = v
}
if runtime.GOOS == "windows" && utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers) {
if kubecontainer.HasWindowsHostProcessContainer(pod) {
// While WindowsHostProcessContainers is in alpha pass 'microsoft.com/hostprocess-container' annotation
// to pod sandbox creations request. ContainerD on Windows does not yet fully support HostProcess
// containers but will pass annotations to hcsshim which does have support.
annotations[windowsHostProcessContainer] = "true"
}
}
return annotations
}
// newContainerLabels creates container labels from v1.Container and v1.Pod.
@ -143,6 +169,15 @@ func newContainerAnnotations(container *v1.Container, pod *v1.Pod, restartCount
}
}
if runtime.GOOS == "windows" && utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers) {
if sc.HasWindowsHostProcessRequest(pod, container) {
// While WindowsHostProcessContainers is in alpha pass 'microsoft.com/hostprocess-container' annotation
// to create containers request. ContainerD on Windows does not yet fully support HostProcess containers
// but will pass annotations to hcsshim which does have support.
annotations[windowsHostProcessContainer] = "true"
}
}
return annotations
}

View File

@ -44,6 +44,20 @@ func HasCapabilitiesRequest(container *v1.Container) bool {
return len(container.SecurityContext.Capabilities.Add) > 0 || len(container.SecurityContext.Capabilities.Drop) > 0
}
// HasWindowsHostProcessRequest returns true if container should run as HostProcess container,
// taking into account nils
func HasWindowsHostProcessRequest(pod *v1.Pod, container *v1.Container) bool {
effectiveSc := DetermineEffectiveSecurityContext(pod, container)
if effectiveSc.WindowsOptions == nil {
return false
}
if effectiveSc.WindowsOptions.HostProcess == nil {
return false
}
return *effectiveSc.WindowsOptions.HostProcess
}
// DetermineEffectiveSecurityContext returns a synthesized SecurityContext for reading effective configurations
// from the provided pod's and container's security context. Container's fields take precedence in cases where both
// are set
@ -79,6 +93,9 @@ func DetermineEffectiveSecurityContext(pod *v1.Pod, container *v1.Container) *v1
if containerSc.WindowsOptions.RunAsUserName != nil {
effectiveSc.WindowsOptions.RunAsUserName = containerSc.WindowsOptions.RunAsUserName
}
if containerSc.WindowsOptions.HostProcess != nil {
effectiveSc.WindowsOptions.HostProcess = containerSc.WindowsOptions.HostProcess
}
}
if containerSc.Capabilities != nil {

File diff suppressed because it is too large Load Diff

View File

@ -5631,5 +5631,15 @@ message WindowsSecurityContextOptions {
// PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
optional string runAsUserName = 3;
// HostProcess determines if a container should be run as a 'Host Process' container.
// This field is alpha-level and will only be honored by components that enable the
// WindowsHostProcessContainers feature flag. Setting this field without the feature
// flag will result in errors when validating the Pod. All of a Pod's containers must
// have the same effective HostProcess value (it is not allowed to have a mix of HostProcess
// containers and non-HostProcess containers). In addition, if HostProcess is true
// then HostNetwork must also be set to true.
// +optional
optional bool hostProcess = 4;
}

View File

@ -6217,6 +6217,16 @@ type WindowsSecurityContextOptions struct {
// PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
RunAsUserName *string `json:"runAsUserName,omitempty" protobuf:"bytes,3,opt,name=runAsUserName"`
// HostProcess determines if a container should be run as a 'Host Process' container.
// This field is alpha-level and will only be honored by components that enable the
// WindowsHostProcessContainers feature flag. Setting this field without the feature
// flag will result in errors when validating the Pod. All of a Pod's containers must
// have the same effective HostProcess value (it is not allowed to have a mix of HostProcess
// containers and non-HostProcess containers). In addition, if HostProcess is true
// then HostNetwork must also be set to true.
// +optional
HostProcess *bool `json:"hostProcess,omitempty" protobuf:"bytes,4,opt,name=hostProcess"`
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

View File

@ -2506,6 +2506,7 @@ var map_WindowsSecurityContextOptions = map[string]string{
"gmsaCredentialSpecName": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"gmsaCredentialSpec": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"runAsUserName": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"hostProcess": "HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.",
}
func (WindowsSecurityContextOptions) SwaggerDoc() map[string]string {

View File

@ -5910,6 +5910,11 @@ func (in *WindowsSecurityContextOptions) DeepCopyInto(out *WindowsSecurityContex
*out = new(string)
**out = **in
}
if in.HostProcess != nil {
in, out := &in.HostProcess, &out.HostProcess
*out = new(bool)
**out = **in
}
return
}

View File

@ -688,14 +688,15 @@
"windowsOptions": {
"gmsaCredentialSpecName": "246",
"gmsaCredentialSpec": "247",
"runAsUserName": "248"
"runAsUserName": "248",
"hostProcess": true
},
"runAsUser": 9148233193771851687,
"runAsGroup": 6901713258562004024,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"runAsUser": -7299434051955863644,
"runAsGroup": 4041264710404335706,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"seccompProfile": {
"type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4",
"localhostProfile": "249"
@ -944,19 +945,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "317",
"gmsaCredentialSpec": "318",
"runAsUserName": "319"
"runAsUserName": "319",
"hostProcess": true
},
"runAsUser": 4369716065827112267,
"runAsGroup": -6657305077321335240,
"runAsUser": -1286199491017539507,
"runAsGroup": -6292316479661489180,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "ʙcx",
"procMount": "cx赮ǒđ\u003e*劶?j",
"seccompProfile": {
"type": "ǒđ\u003e*劶?jĎĭ",
"type": "ĭ¥#ƱÁR",
"localhostProfile": "320"
}
}
},
"stdin": true,
"tty": true
}
],
"ephemeralContainers": [
@ -973,9 +977,9 @@
"ports": [
{
"name": "326",
"hostPort": 1805682547,
"containerPort": -651405950,
"protocol": "淹揀.e鍃G昧牱fsǕT衩kƒK07",
"hostPort": 2032588794,
"containerPort": -1371690155,
"protocol": "G昧牱fsǕT衩kƒK07曳wœj堑",
"hostIP": "327"
}
],
@ -988,7 +992,7 @@
},
"secretRef": {
"name": "330",
"optional": true
"optional": false
}
}
],
@ -1004,12 +1008,12 @@
"resourceFieldRef": {
"containerName": "335",
"resource": "336",
"divisor": "684"
"divisor": "473"
},
"configMapKeyRef": {
"name": "337",
"key": "338",
"optional": true
"optional": false
},
"secretKeyRef": {
"name": "339",
@ -1021,19 +1025,18 @@
],
"resources": {
"limits": {
"蠨磼O_h盌3+Œ9两@8Byß": "111"
"盌3+Œ": "752"
},
"requests": {
"ɃŒ": "451"
")Zq=歍þ": "759"
}
},
"volumeMounts": [
{
"name": "341",
"readOnly": true,
"mountPath": "342",
"subPath": "343",
"mountPropagation": "葰賦",
"mountPropagation": "讅缔m葰賦迾娙ƴ4虵p",
"subPathExpr": "344"
}
],
@ -1051,9 +1054,9 @@
},
"httpGet": {
"path": "348",
"port": -121675052,
"port": 1034835933,
"host": "349",
"scheme": "W#ļǹʅŚO虀^",
"scheme": "O虀^背遻堣灭ƴɦ燻踸陴",
"httpHeaders": [
{
"name": "350",
@ -1062,27 +1065,27 @@
]
},
"tcpSocket": {
"port": "352",
"host": "353"
"port": -1744546613,
"host": "352"
},
"initialDelaySeconds": -1959891996,
"timeoutSeconds": -1442230895,
"periodSeconds": 1475033091,
"successThreshold": 1782790310,
"failureThreshold": 1587036035,
"terminationGracePeriodSeconds": 7560036535013464461
"initialDelaySeconds": 650448405,
"timeoutSeconds": 1943254244,
"periodSeconds": -168773629,
"successThreshold": 2068592383,
"failureThreshold": 1566765016,
"terminationGracePeriodSeconds": -1112599546012453731
},
"readinessProbe": {
"exec": {
"command": [
"354"
"353"
]
},
"httpGet": {
"path": "355",
"port": -1744546613,
"path": "354",
"port": "355",
"host": "356",
"scheme": "ʓɻŊ",
"scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
"httpHeaders": [
{
"name": "357",
@ -1091,37 +1094,8 @@
]
},
"tcpSocket": {
"port": -259047269,
"host": "359"
},
"initialDelaySeconds": 1586122127,
"timeoutSeconds": -1813456856,
"periodSeconds": 781203691,
"successThreshold": -216440055,
"failureThreshold": 408029351,
"terminationGracePeriodSeconds": 5450105809027610853
},
"startupProbe": {
"exec": {
"command": [
"360"
]
},
"httpGet": {
"path": "361",
"port": -5241849,
"host": "362",
"scheme": "}颉hȱɷȰW",
"httpHeaders": [
{
"name": "363",
"value": "364"
}
]
},
"tcpSocket": {
"port": "365",
"host": "366"
"port": "359",
"host": "360"
},
"initialDelaySeconds": 636493142,
"timeoutSeconds": -192358697,
@ -1130,146 +1104,176 @@
"failureThreshold": 902204699,
"terminationGracePeriodSeconds": 9196919020604133323
},
"startupProbe": {
"exec": {
"command": [
"361"
]
},
"httpGet": {
"path": "362",
"port": "363",
"host": "364",
"scheme": "y#t(ȗŜŲ\u0026",
"httpHeaders": [
{
"name": "365",
"value": "366"
}
]
},
"tcpSocket": {
"port": 1387858949,
"host": "367"
},
"initialDelaySeconds": 156368232,
"timeoutSeconds": -815239246,
"periodSeconds": 44612600,
"successThreshold": -688929182,
"failureThreshold": -1222486879,
"terminationGracePeriodSeconds": 6543873941346781273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"367"
"368"
]
},
"httpGet": {
"path": "368",
"port": -1460652193,
"host": "369",
"scheme": "8ï驿笈¯rƈa餖Ľƛ淴ɑ?",
"path": "369",
"port": 1176168596,
"host": "370",
"scheme": "轪d覉;Ĕ",
"httpHeaders": [
{
"name": "370",
"value": "371"
"name": "371",
"value": "372"
}
]
},
"tcpSocket": {
"port": "372",
"host": "373"
"port": "373",
"host": "374"
}
},
"preStop": {
"exec": {
"command": [
"374"
"375"
]
},
"httpGet": {
"path": "375",
"port": 71524977,
"host": "376",
"scheme": "鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷",
"path": "376",
"port": "377",
"host": "378",
"scheme": "ʦŊĊ娮",
"httpHeaders": [
{
"name": "377",
"value": "378"
"name": "379",
"value": "380"
}
]
},
"tcpSocket": {
"port": -565041796,
"host": "379"
"port": "381",
"host": "382"
}
}
},
"terminationMessagePath": "380",
"terminationMessagePolicy": "Ƭ婦d",
"imagePullPolicy": "ɧeʫį淓¯",
"terminationMessagePath": "383",
"terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ",
"imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj",
"securityContext": {
"capabilities": {
"add": [
"ƛ忀z委\u003e,趐V曡88 u怞荊ù"
"蓋Cȗä2 ɲ±m嵘厶sȰÖ"
],
"drop": [
"8緔Tj§E蓋Cȗä2 ɲ±"
"ÆɰŞ襵"
]
},
"privileged": true,
"seLinuxOptions": {
"user": "381",
"role": "382",
"type": "383",
"level": "384"
"user": "384",
"role": "385",
"type": "386",
"level": "387"
},
"windowsOptions": {
"gmsaCredentialSpecName": "385",
"gmsaCredentialSpec": "386",
"runAsUserName": "387"
"gmsaCredentialSpecName": "388",
"gmsaCredentialSpec": "389",
"runAsUserName": "390",
"hostProcess": false
},
"runAsUser": -4564863616644509171,
"runAsGroup": -7297536356638221066,
"runAsUser": -5519662252699559890,
"runAsGroup": -1624551961163368198,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "Ş襵樞úʥ銀",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "阫Ƈʥ椹ý",
"seccompProfile": {
"type": "ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧",
"localhostProfile": "388"
"type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷",
"localhostProfile": "391"
}
},
"stdin": true,
"tty": true,
"targetContainerName": "389"
"stdinOnce": true,
"targetContainerName": "392"
}
],
"restartPolicy": "鹚蝉茲ʛ饊",
"terminationGracePeriodSeconds": 1736985756995615785,
"activeDeadlineSeconds": -1284119655860768065,
"dnsPolicy": "錏嬮#ʐ",
"restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI",
"terminationGracePeriodSeconds": 3296766428578159624,
"activeDeadlineSeconds": -8925090445844634303,
"dnsPolicy": "q沷¾!",
"nodeSelector": {
"390": "391"
"393": "394"
},
"serviceAccountName": "392",
"serviceAccount": "393",
"serviceAccountName": "395",
"serviceAccount": "396",
"automountServiceAccountToken": true,
"nodeName": "394",
"hostPID": true,
"nodeName": "397",
"hostIPC": true,
"shareProcessNamespace": false,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "395",
"role": "396",
"type": "397",
"level": "398"
"user": "398",
"role": "399",
"type": "400",
"level": "401"
},
"windowsOptions": {
"gmsaCredentialSpecName": "399",
"gmsaCredentialSpec": "400",
"runAsUserName": "401"
"gmsaCredentialSpecName": "402",
"gmsaCredentialSpec": "403",
"runAsUserName": "404",
"hostProcess": true
},
"runAsUser": -4904722847506013622,
"runAsGroup": 6465579957265382985,
"runAsUser": -3496040522639830925,
"runAsGroup": 2960114664726223450,
"runAsNonRoot": false,
"supplementalGroups": [
-981432507446869083
2402603282459663167
],
"fsGroup": -1867959832193971598,
"fsGroup": 3564097949592109139,
"sysctls": [
{
"name": "402",
"value": "403"
"name": "405",
"value": "406"
}
],
"fsGroupChangePolicy": "ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!",
"fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6",
"seccompProfile": {
"type": "`翾'ųŎ群E牬庘颮6(|ǖû",
"localhostProfile": "404"
"type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ",
"localhostProfile": "407"
}
},
"imagePullSecrets": [
{
"name": "405"
"name": "408"
}
],
"hostname": "406",
"subdomain": "407",
"hostname": "409",
"subdomain": "410",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -1277,19 +1281,19 @@
{
"matchExpressions": [
{
"key": "408",
"operator": "UǷ坒",
"key": "411",
"operator": "Üɉ愂,wa纝佯fɞ",
"values": [
"409"
"412"
]
}
],
"matchFields": [
{
"key": "410",
"operator": "",
"key": "413",
"operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;",
"values": [
"411"
"414"
]
}
]
@ -1298,23 +1302,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -1280563546,
"weight": 1690937616,
"preference": {
"matchExpressions": [
{
"key": "412",
"operator": "Mɮ6)",
"key": "415",
"operator": "襉{遠",
"values": [
"413"
"416"
]
}
],
"matchFields": [
{
"key": "414",
"operator": "杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾",
"key": "417",
"operator": "诰ðÈ娒Ġ滔xvŗÑ\"",
"values": [
"415"
"418"
]
}
]
@ -1327,30 +1331,27 @@
{
"labelSelector": {
"matchLabels": {
"H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1"
"lx..w": "t-_.5.40w"
},
"matchExpressions": [
{
"key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g",
"operator": "NotIn",
"values": [
"VT3sn-0_.i__a.O2G_J"
]
"key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0",
"operator": "DoesNotExist"
}
]
},
"namespaces": [
"422"
"425"
],
"topologyKey": "423",
"topologyKey": "426",
"namespaceSelector": {
"matchLabels": {
"410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g": "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w"
"8V": "3sn-03"
},
"matchExpressions": [
{
"key": "r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT",
"operator": "DoesNotExist"
"key": "p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3",
"operator": "Exists"
}
]
}
@ -1358,33 +1359,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -2118597352,
"weight": -947725955,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt": "CRT.0z-oe.G79.3bU_._nV34G._--u..9"
"E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e"
},
"matchExpressions": [
{
"key": "n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9",
"operator": "NotIn",
"key": "3--_9QW2JkU27_.-4T-I.-..K.2",
"operator": "In",
"values": [
"f8k"
"6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8"
]
}
]
},
"namespaces": [
"436"
"439"
],
"topologyKey": "437",
"topologyKey": "440",
"namespaceSelector": {
"matchLabels": {
"s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp": "5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7"
"7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz"
},
"matchExpressions": [
{
"key": "27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y",
"key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6",
"operator": "DoesNotExist"
}
]
@ -1398,29 +1399,26 @@
{
"labelSelector": {
"matchLabels": {
"Y3o_V-w._-0d__7.81_-._-8": "9._._a-.N.__-_._.3l-_86u"
"uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z": ""
},
"matchExpressions": [
{
"key": "c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs",
"operator": "NotIn",
"values": [
"B.3R6-.7Bf8GA--__A7r.8U.V_p6c"
]
"key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1",
"operator": "Exists"
}
]
},
"namespaces": [
"450"
"453"
],
"topologyKey": "451",
"topologyKey": "454",
"namespaceSelector": {
"matchLabels": {
"x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51": "m06jVZu"
"d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9": "Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z"
},
"matchExpressions": [
{
"key": "N-._M5..-N_H_55..--E3_2D-1DW_o",
"key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT",
"operator": "Exists"
}
]
@ -1429,33 +1427,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 1943011795,
"weight": 1819321475,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz": "3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v"
"i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I": "i.U.-7"
},
"matchExpressions": [
{
"key": "x3___-..f5-6x-_-o_6O_If-5_-_U",
"operator": "DoesNotExist"
"key": "62o787-7lk2/L.--4P--_q-.9",
"operator": "Exists"
}
]
},
"namespaces": [
"464"
"467"
],
"topologyKey": "465",
"topologyKey": "468",
"namespaceSelector": {
"matchLabels": {
"P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h": "4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP"
"j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N": "U_.-_-I-P._..leR--e"
},
"matchExpressions": [
{
"key": "aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7",
"operator": "NotIn",
"key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8",
"operator": "In",
"values": [
"9-.66hcB.rTt7bm9I.-..q-n"
"x3___-..f5-6x-_-o_6O_If-5_-_.F"
]
}
]
@ -1465,64 +1463,67 @@
]
}
},
"schedulerName": "472",
"schedulerName": "475",
"tolerations": [
{
"key": "473",
"operator": "杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]",
"value": "474",
"effect": "ɮ-nʣž吞Ƞ唄®窂爪",
"tolerationSeconds": -5154627301352060136
"key": "476",
"operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
"value": "477",
"effect": "慰x:",
"tolerationSeconds": 3362400521064014157
}
],
"hostAliases": [
{
"ip": "475",
"ip": "478",
"hostnames": [
"476"
"479"
]
}
],
"priorityClassName": "477",
"priority": -860768401,
"priorityClassName": "480",
"priority": 743241089,
"dnsConfig": {
"nameservers": [
"478"
"481"
],
"searches": [
"479"
"482"
],
"options": [
{
"name": "480",
"value": "481"
"name": "483",
"value": "484"
}
]
},
"readinessGates": [
{
"conditionType": "@.ȇʟ"
"conditionType": "0yVA嬂刲;牆詒ĸąs"
}
],
"runtimeClassName": "482",
"runtimeClassName": "485",
"enableServiceLinks": false,
"preemptionPolicy": "",
"preemptionPolicy": "Iƭij韺ʧ\u003e",
"overhead": {
"": "359"
"D傕Ɠ栊闔虝巒瀦ŕ": "124"
},
"topologySpreadConstraints": [
{
"maxSkew": -2013945465,
"topologyKey": "483",
"whenUnsatisfiable": "½ǩ ",
"maxSkew": -174245111,
"topologyKey": "486",
"whenUnsatisfiable": "",
"labelSelector": {
"matchLabels": {
"9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG": "4n"
"7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
},
"matchExpressions": [
{
"key": "6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q",
"operator": "Exists"
"key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
"operator": "In",
"values": [
"zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
]
}
]
}
@ -1532,32 +1533,32 @@
}
},
"updateStrategy": {
"type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ",
"type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
"minReadySeconds": 1467929320,
"revisionHistoryLimit": -1098193709
"minReadySeconds": 1559072561,
"revisionHistoryLimit": -629510776
},
"status": {
"currentNumberScheduled": 2090664533,
"numberMisscheduled": -1371816595,
"desiredNumberScheduled": 1219820375,
"numberReady": -788475912,
"observedGeneration": 6637463221525448952,
"updatedNumberScheduled": -1684048223,
"numberAvailable": 16994744,
"numberUnavailable": 340429479,
"collisionCount": 1177227691,
"currentNumberScheduled": -69450448,
"numberMisscheduled": -212409426,
"desiredNumberScheduled": 17761427,
"numberReady": 1329525670,
"observedGeneration": -721999650192865404,
"updatedNumberScheduled": 1162680985,
"numberAvailable": 171558604,
"numberUnavailable": -161888815,
"collisionCount": 1714841371,
"conditions": [
{
"type": "ôD齆O#ȞM\u003c²彾Ǟʈɐ",
"status": "盧ŶbșʬÇ[輚趞",
"lastTransitionTime": "2205-11-05T22:21:51Z",
"reason": "490",
"message": "491"
"type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ",
"status": "",
"lastTransitionTime": "2124-10-20T09:17:54Z",
"reason": "493",
"message": "494"
}
]
}

View File

@ -31,8 +31,8 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1467929320
revisionHistoryLimit: -1098193709
minReadySeconds: 1559072561
revisionHistoryLimit: -629510776
selector:
matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@ -73,112 +73,108 @@ spec:
selfLink: "29"
uid: TʡȂŏ{sǡƟ
spec:
activeDeadlineSeconds: -1284119655860768065
activeDeadlineSeconds: -8925090445844634303
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "412"
operator: Mɮ6)
- key: "415"
operator: 襉{遠
values:
- "413"
- "416"
matchFields:
- key: "414"
operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾
- key: "417"
operator: 诰ðÈ娒Ġ滔xvŗÑ"
values:
- "415"
weight: -1280563546
- "418"
weight: 1690937616
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "408"
operator: UǷ坒
- key: "411"
operator: Üɉ愂,wa纝佯fɞ
values:
- "409"
- "412"
matchFields:
- key: "410"
operator: ""
- key: "413"
operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣;
values:
- "411"
- "414"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9
operator: NotIn
- key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: In
values:
- f8k
- 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels:
il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt: CRT.0z-oe.G79.3bU_._nV34G._--u..9
E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e
namespaceSelector:
matchExpressions:
- key: 27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y
- key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6
operator: DoesNotExist
matchLabels:
s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp: 5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7
7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz
namespaces:
- "436"
topologyKey: "437"
weight: -2118597352
- "439"
topologyKey: "440"
weight: -947725955
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g
operator: NotIn
values:
- VT3sn-0_.i__a.O2G_J
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaceSelector:
matchExpressions:
- key: r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT
- key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0
operator: DoesNotExist
matchLabels:
410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g: 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
lx..w: t-_.5.40w
namespaceSelector:
matchExpressions:
- key: p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3
operator: Exists
matchLabels:
8V: 3sn-03
namespaces:
- "422"
topologyKey: "423"
- "425"
topologyKey: "426"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: x3___-..f5-6x-_-o_6O_If-5_-_U
operator: DoesNotExist
- key: 62o787-7lk2/L.--4P--_q-.9
operator: Exists
matchLabels:
j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz: 3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v
i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I: i.U.-7
namespaceSelector:
matchExpressions:
- key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7
operator: NotIn
- key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8
operator: In
values:
- 9-.66hcB.rTt7bm9I.-..q-n
- x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels:
P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h: 4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP
j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N: U_.-_-I-P._..leR--e
namespaces:
- "464"
topologyKey: "465"
weight: 1943011795
- "467"
topologyKey: "468"
weight: 1819321475
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs
operator: NotIn
values:
- B.3R6-.7Bf8GA--__A7r.8U.V_p6c
matchLabels:
Y3o_V-w._-0d__7.81_-._-8: 9._._a-.N.__-_._.3l-_86u
namespaceSelector:
matchExpressions:
- key: N-._M5..-N_H_55..--E3_2D-1DW_o
- key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1
operator: Exists
matchLabels:
x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51: m06jVZu
uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z: ""
namespaceSelector:
matchExpressions:
- key: 5__-_._.3l-_86_u2-7_._qN__A_f_-BT
operator: Exists
matchLabels:
d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9: Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z
namespaces:
- "450"
topologyKey: "451"
- "453"
topologyKey: "454"
automountServiceAccountToken: true
containers:
- args:
@ -307,11 +303,11 @@ spec:
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
procMount: cx赮ǒđ>*劶?j
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
runAsGroup: -6292316479661489180
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: -1286199491017539507
seLinuxOptions:
level: "316"
role: "314"
@ -319,10 +315,11 @@ spec:
user: "313"
seccompProfile:
localhostProfile: "320"
type: ǒđ>*劶?jĎĭ
type: ĭ¥#ƱÁR
windowsOptions:
gmsaCredentialSpec: "318"
gmsaCredentialSpecName: "317"
hostProcess: true
runAsUserName: "319"
startupProbe:
exec:
@ -345,8 +342,10 @@ spec:
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
stdin: true
terminationMessagePath: "312"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
tty: true
volumeDevices:
- devicePath: "275"
name: "274"
@ -360,13 +359,13 @@ spec:
workingDir: "254"
dnsConfig:
nameservers:
- "478"
- "481"
options:
- name: "480"
value: "481"
- name: "483"
value: "484"
searches:
- "479"
dnsPolicy: 錏嬮#ʐ
- "482"
dnsPolicy: q沷¾!
enableServiceLinks: false
ephemeralContainers:
- args:
@ -380,13 +379,13 @@ spec:
configMapKeyRef:
key: "338"
name: "337"
optional: true
optional: false
fieldRef:
apiVersion: "333"
fieldPath: "334"
resourceFieldRef:
containerName: "335"
divisor: "684"
divisor: "473"
resource: "336"
secretKeyRef:
key: "340"
@ -399,165 +398,164 @@ spec:
prefix: "328"
secretRef:
name: "330"
optional: true
optional: false
image: "322"
imagePullPolicy: ɧeʫį淓¯
imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj
lifecycle:
postStart:
exec:
command:
- "367"
- "368"
httpGet:
host: "369"
host: "370"
httpHeaders:
- name: "370"
value: "371"
path: "368"
port: -1460652193
scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ?
- name: "371"
value: "372"
path: "369"
port: 1176168596
scheme: 轪d覉;Ĕ
tcpSocket:
host: "373"
port: "372"
host: "374"
port: "373"
preStop:
exec:
command:
- "374"
- "375"
httpGet:
host: "376"
host: "378"
httpHeaders:
- name: "377"
value: "378"
path: "375"
port: 71524977
scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷
- name: "379"
value: "380"
path: "376"
port: "377"
scheme: ʦŊĊ娮
tcpSocket:
host: "379"
port: -565041796
host: "382"
port: "381"
livenessProbe:
exec:
command:
- "347"
failureThreshold: 1587036035
failureThreshold: 1566765016
httpGet:
host: "349"
httpHeaders:
- name: "350"
value: "351"
path: "348"
port: -121675052
scheme: W#ļǹʅŚO虀^
initialDelaySeconds: -1959891996
periodSeconds: 1475033091
successThreshold: 1782790310
port: 1034835933
scheme: O虀^背遻堣灭ƴɦ燻踸陴
initialDelaySeconds: 650448405
periodSeconds: -168773629
successThreshold: 2068592383
tcpSocket:
host: "353"
port: "352"
terminationGracePeriodSeconds: 7560036535013464461
timeoutSeconds: -1442230895
host: "352"
port: -1744546613
terminationGracePeriodSeconds: -1112599546012453731
timeoutSeconds: 1943254244
name: "321"
ports:
- containerPort: -651405950
- containerPort: -1371690155
hostIP: "327"
hostPort: 1805682547
hostPort: 2032588794
name: "326"
protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07
protocol: G昧牱fsǕT衩kƒK07曳wœj堑
readinessProbe:
exec:
command:
- "354"
failureThreshold: 408029351
- "353"
failureThreshold: 902204699
httpGet:
host: "356"
httpHeaders:
- name: "357"
value: "358"
path: "355"
port: -1744546613
scheme: ʓɻŊ
initialDelaySeconds: 1586122127
periodSeconds: 781203691
successThreshold: -216440055
tcpSocket:
host: "359"
port: -259047269
terminationGracePeriodSeconds: 5450105809027610853
timeoutSeconds: -1813456856
resources:
limits:
蠨磼O_h盌3+Œ9两@8Byß: "111"
requests:
ɃŒ: "451"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- ƛ忀z委>,趐V曡88 u怞荊ù
drop:
- 8緔Tj§E蓋Cȗä2 ɲ±
privileged: true
procMount: Ş襵樞úʥ銀
readOnlyRootFilesystem: true
runAsGroup: -7297536356638221066
runAsNonRoot: false
runAsUser: -4564863616644509171
seLinuxOptions:
level: "384"
role: "382"
type: "383"
user: "381"
seccompProfile:
localhostProfile: "388"
type: ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧
windowsOptions:
gmsaCredentialSpec: "386"
gmsaCredentialSpecName: "385"
runAsUserName: "387"
startupProbe:
exec:
command:
- "360"
failureThreshold: 902204699
httpGet:
host: "362"
httpHeaders:
- name: "363"
value: "364"
path: "361"
port: -5241849
scheme: '}颉hȱɷȰW'
path: "354"
port: "355"
scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
initialDelaySeconds: 636493142
periodSeconds: 420595064
successThreshold: 1195176401
tcpSocket:
host: "366"
port: "365"
host: "360"
port: "359"
terminationGracePeriodSeconds: 9196919020604133323
timeoutSeconds: -192358697
resources:
limits:
盌3+Œ: "752"
requests:
)Zq=歍þ: "759"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 蓋Cȗä2 ɲ±m嵘厶sȰÖ
drop:
- ÆɰŞ襵
privileged: true
procMount: 阫Ƈʥ椹ý
readOnlyRootFilesystem: false
runAsGroup: -1624551961163368198
runAsNonRoot: false
runAsUser: -5519662252699559890
seLinuxOptions:
level: "387"
role: "385"
type: "386"
user: "384"
seccompProfile:
localhostProfile: "391"
type: ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷
windowsOptions:
gmsaCredentialSpec: "389"
gmsaCredentialSpecName: "388"
hostProcess: false
runAsUserName: "390"
startupProbe:
exec:
command:
- "361"
failureThreshold: -1222486879
httpGet:
host: "364"
httpHeaders:
- name: "365"
value: "366"
path: "362"
port: "363"
scheme: y#t(ȗŜŲ&
initialDelaySeconds: 156368232
periodSeconds: 44612600
successThreshold: -688929182
tcpSocket:
host: "367"
port: 1387858949
terminationGracePeriodSeconds: 6543873941346781273
timeoutSeconds: -815239246
stdin: true
targetContainerName: "389"
terminationMessagePath: "380"
terminationMessagePolicy: Ƭ婦d
tty: true
stdinOnce: true
targetContainerName: "392"
terminationMessagePath: "383"
terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ
volumeDevices:
- devicePath: "346"
name: "345"
volumeMounts:
- mountPath: "342"
mountPropagation: 葰賦
mountPropagation: 讅缔m葰賦迾娙ƴ4虵p
name: "341"
readOnly: true
subPath: "343"
subPathExpr: "344"
workingDir: "325"
hostAliases:
- hostnames:
- "476"
ip: "475"
- "479"
ip: "478"
hostIPC: true
hostPID: true
hostname: "406"
hostname: "409"
imagePullSecrets:
- name: "405"
- name: "408"
initContainers:
- args:
- "181"
@ -685,11 +683,11 @@ spec:
drop:
- H鯂²静ƲǦŐnj汰8ŕİi騎C"6
privileged: false
procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: false
runAsGroup: 6901713258562004024
runAsNonRoot: true
runAsUser: 9148233193771851687
procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: true
runAsGroup: 4041264710404335706
runAsNonRoot: false
runAsUser: -7299434051955863644
seLinuxOptions:
level: "245"
role: "243"
@ -701,6 +699,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "247"
gmsaCredentialSpecName: "246"
hostProcess: true
runAsUserName: "248"
startupProbe:
exec:
@ -735,64 +734,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "394"
nodeName: "397"
nodeSelector:
"390": "391"
"393": "394"
overhead:
"": "359"
preemptionPolicy: ""
priority: -860768401
priorityClassName: "477"
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "480"
readinessGates:
- conditionType: '@.ȇʟ'
restartPolicy: 鹚蝉茲ʛ饊
runtimeClassName: "482"
schedulerName: "472"
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
runtimeClassName: "485"
schedulerName: "475"
securityContext:
fsGroup: -1867959832193971598
fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!
runAsGroup: 6465579957265382985
fsGroup: 3564097949592109139
fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6
runAsGroup: 2960114664726223450
runAsNonRoot: false
runAsUser: -4904722847506013622
runAsUser: -3496040522639830925
seLinuxOptions:
level: "398"
role: "396"
type: "397"
user: "395"
level: "401"
role: "399"
type: "400"
user: "398"
seccompProfile:
localhostProfile: "404"
type: '`翾''ųŎ群E牬庘颮6(|ǖû'
localhostProfile: "407"
type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ
supplementalGroups:
- -981432507446869083
- 2402603282459663167
sysctls:
- name: "402"
value: "403"
- name: "405"
value: "406"
windowsOptions:
gmsaCredentialSpec: "400"
gmsaCredentialSpecName: "399"
runAsUserName: "401"
serviceAccount: "393"
serviceAccountName: "392"
gmsaCredentialSpec: "403"
gmsaCredentialSpecName: "402"
hostProcess: true
runAsUserName: "404"
serviceAccount: "396"
serviceAccountName: "395"
setHostnameAsFQDN: true
shareProcessNamespace: false
subdomain: "407"
terminationGracePeriodSeconds: 1736985756995615785
shareProcessNamespace: true
subdomain: "410"
terminationGracePeriodSeconds: 3296766428578159624
tolerations:
- effect: ɮ-nʣž吞Ƞ唄®窂爪
key: "473"
operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]
tolerationSeconds: -5154627301352060136
value: "474"
- effect: '慰x:'
key: "476"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "477"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q
operator: Exists
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
matchLabels:
9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG: 4n
maxSkew: -2013945465
topologyKey: "483"
whenUnsatisfiable: '½ǩ '
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "486"
whenUnsatisfiable: ""
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1049,20 +1051,20 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
status:
collisionCount: 1177227691
collisionCount: 1714841371
conditions:
- lastTransitionTime: "2205-11-05T22:21:51Z"
message: "491"
reason: "490"
status: 盧ŶbșʬÇ[輚趞
type: ôD齆O#ȞM<²彾Ǟʈɐ
currentNumberScheduled: 2090664533
desiredNumberScheduled: 1219820375
numberAvailable: 16994744
numberMisscheduled: -1371816595
numberReady: -788475912
numberUnavailable: 340429479
observedGeneration: 6637463221525448952
updatedNumberScheduled: -1684048223
- lastTransitionTime: "2124-10-20T09:17:54Z"
message: "494"
reason: "493"
status: ""
type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ
currentNumberScheduled: -69450448
desiredNumberScheduled: 17761427
numberAvailable: 171558604
numberMisscheduled: -212409426
numberReady: 1329525670
numberUnavailable: -161888815
observedGeneration: -721999650192865404
updatedNumberScheduled: 1162680985

File diff suppressed because it is too large Load Diff

View File

@ -31,10 +31,11 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1559072561
progressDeadlineSeconds: -212409426
minReadySeconds: -212999359
paused: true
progressDeadlineSeconds: 1499408621
replicas: 896585016
revisionHistoryLimit: -629510776
revisionHistoryLimit: -866496758
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@ -45,7 +46,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
type: 卍睊
template:
metadata:
annotations:
@ -78,114 +79,108 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
activeDeadlineSeconds: -5891364351877125204
activeDeadlineSeconds: 5204116807884683873
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "410"
operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW
values:
- "411"
matchFields:
- key: "412"
operator: 顓闉ȦT
values:
- "413"
weight: 1762917570
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "406"
operator: ""
operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃
values:
- "407"
matchFields:
- key: "408"
operator: ɦ燻踸陴Sĕ濦ʓɻ
operator: ƒK07曳w
values:
- "409"
weight: 1805682547
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "402"
operator: ""
values:
- "403"
matchFields:
- key: "404"
operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ
values:
- "405"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
operator: In
values:
- H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr
operator: DoesNotExist
matchLabels:
z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c
namespaceSelector:
matchExpressions:
- key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
operator: In
values:
- 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
- key: C-_20
operator: Exists
matchLabels:
vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t
namespaces:
- "434"
topologyKey: "435"
weight: 888976270
- "430"
topologyKey: "431"
weight: -450654683
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33
operator: NotIn
values:
- 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
- key: 67F3p2_-_AmD-.0P
operator: DoesNotExist
matchLabels:
8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5
namespaceSelector:
matchExpressions:
- key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj
operator: Exists
matchLabels:
4eq5: ""
6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r
namespaces:
- "420"
topologyKey: "421"
- "416"
topologyKey: "417"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 6W74-R_Z_Tz.a3_Ho
operator: Exists
- key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
namespaceSelector:
matchExpressions:
- key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
operator: In
values:
- x3___-..f5-6x-_-o_6O_If-5_-_.F
- key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
operator: DoesNotExist
matchLabels:
h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
namespaces:
- "462"
topologyKey: "463"
weight: -1668452490
- "458"
topologyKey: "459"
weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
operator: Exists
matchLabels:
5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
namespaceSelector:
matchExpressions:
- key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
- key: 4b699/B9n.2
operator: In
values:
- V._qN__A_f_-B3_U__L.KH6K.RwsfI2
- MM7-.e.x
matchLabels:
u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q
namespaceSelector:
matchExpressions:
- key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
operator: DoesNotExist
matchLabels:
B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
namespaces:
- "448"
topologyKey: "449"
- "444"
topologyKey: "445"
automountServiceAccountToken: true
containers:
- args:
@ -199,372 +194,372 @@ spec:
configMapKeyRef:
key: "262"
name: "261"
optional: true
optional: false
fieldRef:
apiVersion: "257"
fieldPath: "258"
resourceFieldRef:
containerName: "259"
divisor: "185"
divisor: "271"
resource: "260"
secretKeyRef:
key: "264"
name: "263"
optional: false
optional: true
envFrom:
- configMapRef:
name: "253"
optional: false
optional: true
prefix: "252"
secretRef:
name: "254"
optional: false
image: "246"
imagePullPolicy: i绝5哇芆斩
imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle:
postStart:
exec:
command:
- "292"
- "291"
httpGet:
host: "295"
host: "293"
httpHeaders:
- name: "296"
value: "297"
path: "293"
port: "294"
scheme: 鯂²静
- name: "294"
value: "295"
path: "292"
port: -1021949447
scheme: B芭
tcpSocket:
host: "298"
port: -402384013
host: "297"
port: "296"
preStop:
exec:
command:
- "299"
- "298"
httpGet:
host: "302"
host: "301"
httpHeaders:
- name: "303"
value: "304"
path: "300"
port: "301"
scheme: 鏻砅邻爥
- name: "302"
value: "303"
path: "299"
port: "300"
scheme: yƕ丆録²Ŏ)
tcpSocket:
host: "305"
port: -305362540
host: "304"
port: 507384491
livenessProbe:
exec:
command:
- "271"
failureThreshold: 1993268896
failureThreshold: 1156888068
httpGet:
host: "274"
host: "273"
httpHeaders:
- name: "275"
value: "276"
- name: "274"
value: "275"
path: "272"
port: "273"
scheme:
initialDelaySeconds: 711020087
periodSeconds: -1965247100
successThreshold: 218453478
port: 1907998540
scheme: ',ŕ'
initialDelaySeconds: -253326525
periodSeconds: 887319241
successThreshold: 1559618829
tcpSocket:
host: "277"
port: 1315054653
terminationGracePeriodSeconds: -9140155223242250138
timeoutSeconds: 1103049140
port: "276"
terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 567263590
name: "245"
ports:
- containerPort: -370386363
- containerPort: 1714588921
hostIP: "251"
hostPort: -1462219068
hostPort: -370386363
name: "250"
protocol: wƯ貾坢'跩aŕ翑0展}
protocol: Ư貾
readinessProbe:
exec:
command:
- "278"
failureThreshold: 1456461851
failureThreshold: 422133388
httpGet:
host: "280"
httpHeaders:
- name: "281"
value: "282"
path: "279"
port: -1315487077
scheme: ğ_
initialDelaySeconds: 1272940694
periodSeconds: 422133388
successThreshold: 1952458416
port: 1315054653
scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1905181464
periodSeconds: 1272940694
successThreshold: -385597677
tcpSocket:
host: "284"
port: "283"
terminationGracePeriodSeconds: -6078441689118311403
timeoutSeconds: -385597677
terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -1730959016
resources:
limits:
鬶l獕;跣Hǝcw: "242"
庰%皧V: "116"
requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637"
"": "289"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ""
- p鋄5弢ȹ均i绝5
drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
privileged: false
procMount: W賁Ěɭɪǹ0
- ""
privileged: true
procMount: ş
readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404
runAsGroup: 7023916302283403328
runAsNonRoot: false
runAsUser: -7936947433725476327
runAsUser: -3385088507022597813
seLinuxOptions:
level: "310"
role: "308"
type: "309"
user: "307"
level: "309"
role: "307"
type: "308"
user: "306"
seccompProfile:
localhostProfile: "314"
type: ',ƷƣMț譎懚XW疪鑳'
localhostProfile: "313"
type: 諔迮ƙ
windowsOptions:
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
runAsUserName: "313"
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
hostProcess: false
runAsUserName: "312"
startupProbe:
exec:
command:
- "285"
failureThreshold: 620822482
failureThreshold: 353361793
httpGet:
host: "287"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
port: 1013673874
scheme: ə娯Ȱ囌{
initialDelaySeconds: -205176266
periodSeconds: -116469891
successThreshold: 311083651
tcpSocket:
host: "291"
port: "290"
terminationGracePeriodSeconds: -2203905759223555727
timeoutSeconds: 386804041
stdin: true
host: "290"
port: -1829146875
terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 490479437
stdinOnce: true
terminationMessagePath: "306"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
tty: true
terminationMessagePath: "305"
terminationMessagePolicy: "3"
volumeDevices:
- devicePath: "270"
name: "269"
volumeMounts:
- mountPath: "266"
mountPropagation: ""
mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "265"
readOnly: true
subPath: "267"
subPathExpr: "268"
workingDir: "249"
dnsConfig:
nameservers:
- "476"
- "472"
options:
- name: "478"
value: "479"
- name: "474"
value: "475"
searches:
- "477"
dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s
enableServiceLinks: false
- "473"
dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b
enableServiceLinks: true
ephemeralContainers:
- args:
- "318"
command:
- "317"
command:
- "316"
env:
- name: "325"
value: "326"
- name: "324"
value: "325"
valueFrom:
configMapKeyRef:
key: "332"
name: "331"
optional: false
key: "331"
name: "330"
optional: true
fieldRef:
apiVersion: "327"
fieldPath: "328"
apiVersion: "326"
fieldPath: "327"
resourceFieldRef:
containerName: "329"
divisor: "360"
resource: "330"
containerName: "328"
divisor: "66"
resource: "329"
secretKeyRef:
key: "334"
name: "333"
key: "333"
name: "332"
optional: false
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
prefix: "322"
secretRef:
name: "324"
optional: false
image: "316"
imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
image: "315"
imagePullPolicy: 阠$嬏
lifecycle:
postStart:
exec:
command:
- "363"
- "360"
httpGet:
host: "365"
host: "362"
httpHeaders:
- name: "366"
value: "367"
path: "364"
port: 466267060
scheme: wy¶熀ďJZ漤ŗ坟Ů<y鯶縆ł
- name: "363"
value: "364"
path: "361"
port: 890223061
scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ
tcpSocket:
host: "369"
port: "368"
host: "366"
port: "365"
preStop:
exec:
command:
- "370"
- "367"
httpGet:
host: "373"
host: "369"
httpHeaders:
- name: "374"
value: "375"
path: "371"
port: "372"
scheme: Ē3Nh×DJɶ羹ƞʓ%ʝ
- name: "370"
value: "371"
path: "368"
port: 797714018
scheme: vÄÚ×
tcpSocket:
host: "377"
port: "376"
host: "373"
port: "372"
livenessProbe:
exec:
command:
- "341"
failureThreshold: 240657401
- "340"
failureThreshold: -1508967300
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "342"
port: -1842062977
scheme: 輔3璾ėȜv1b繐汚磉反-n覦
initialDelaySeconds: -1161185537
periodSeconds: 1611386356
successThreshold: 821341581
path: "341"
port: "342"
initialDelaySeconds: -1843539391
periodSeconds: -1758095966
successThreshold: 1627026804
tcpSocket:
host: "347"
port: "346"
terminationGracePeriodSeconds: 7806703309589874498
timeoutSeconds: 1928937303
name: "315"
host: "346"
port: -819013491
terminationGracePeriodSeconds: -4548040070833300341
timeoutSeconds: 1238925115
name: "314"
ports:
- containerPort: 455919108
hostIP: "321"
hostPort: 217308913
name: "320"
protocol: 崍h趭(娕u
- containerPort: 1137109081
hostIP: "320"
hostPort: -488127393
name: "319"
protocol: 丽饾| 鞤ɱď
readinessProbe:
exec:
command:
- "348"
failureThreshold: 1605974497
- "347"
failureThreshold: -47594442
httpGet:
host: "351"
host: "349"
httpHeaders:
- name: "352"
value: "353"
path: "349"
port: "350"
scheme: Ik(dŊiɢzĮ蛋I
initialDelaySeconds: 571693619
periodSeconds: -2028546276
successThreshold: -2128305760
- name: "350"
value: "351"
path: "348"
port: -186532794
scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė
initialDelaySeconds: -751455207
periodSeconds: 646133945
successThreshold: -506710067
tcpSocket:
host: "355"
port: "354"
terminationGracePeriodSeconds: 2002344837004307079
timeoutSeconds: 1643238856
host: "353"
port: "352"
terminationGracePeriodSeconds: -8866033802256420471
timeoutSeconds: -894026356
resources:
limits:
fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
ƣMț譎懚X: "93"
requests:
蕎': "62"
曣ŋayåe躒訙: "484"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃
- ¶熀ďJZ漤
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
- ""
privileged: true
procMount: 槃JŵǤ桒ɴ鉂WJ
readOnlyRootFilesystem: true
runAsGroup: -8721643037453811760
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: 5680561050872693436
seLinuxOptions:
level: "382"
role: "380"
type: "381"
user: "379"
level: "378"
role: "376"
type: "377"
user: "375"
seccompProfile:
localhostProfile: "386"
type: ǒđ>*劶?jĎĭ
localhostProfile: "382"
type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ
windowsOptions:
gmsaCredentialSpec: "384"
gmsaCredentialSpecName: "383"
runAsUserName: "385"
gmsaCredentialSpec: "380"
gmsaCredentialSpecName: "379"
hostProcess: false
runAsUserName: "381"
startupProbe:
exec:
command:
- "356"
failureThreshold: 1447314009
- "354"
failureThreshold: 1190831814
httpGet:
host: "359"
host: "356"
httpHeaders:
- name: "360"
value: "361"
path: "357"
port: "358"
scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂
initialDelaySeconds: 235623869
periodSeconds: -505848936
successThreshold: -1819021257
- name: "357"
value: "358"
path: "355"
port: -1789721862
scheme: 閈誹ʅ蕉ɼ
initialDelaySeconds: 1518001294
periodSeconds: -2068583194
successThreshold: -29073009
tcpSocket:
host: "362"
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
targetContainerName: "387"
terminationMessagePath: "378"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
host: "359"
port: 374862544
terminationGracePeriodSeconds: 7262727411813417219
timeoutSeconds: 1467189105
targetContainerName: "383"
terminationMessagePath: "374"
terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ
volumeDevices:
- devicePath: "340"
name: "339"
- devicePath: "339"
name: "338"
volumeMounts:
- mountPath: "336"
mountPropagation: Ǚ(
name: "335"
readOnly: true
subPath: "337"
subPathExpr: "338"
workingDir: "319"
- mountPath: "335"
mountPropagation: (娕uE增猍
name: "334"
subPath: "336"
subPathExpr: "337"
workingDir: "318"
hostAliases:
- hostnames:
- "474"
ip: "473"
- "470"
ip: "469"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "404"
hostname: "400"
imagePullSecrets:
- name: "403"
- name: "399"
initContainers:
- args:
- "181"
@ -692,11 +687,11 @@ spec:
drop:
- ʁ岼昕ĬÇ
privileged: true
procMount: Z鐫û咡W<敄lu
procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858
runAsNonRoot: true
runAsUser: -857934902638099053
runAsGroup: -6406791857291159870
runAsNonRoot: false
runAsUser: 161123823296532265
seLinuxOptions:
level: "240"
role: "238"
@ -704,10 +699,11 @@ spec:
user: "237"
seccompProfile:
localhostProfile: "244"
type: 榝$î.Ȏ蝪ʜ5遰
type: î.Ȏ蝪ʜ5遰=
windowsOptions:
gmsaCredentialSpec: "242"
gmsaCredentialSpecName: "241"
hostProcess: false
runAsUserName: "243"
startupProbe:
exec:
@ -730,6 +726,7 @@ spec:
port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096
stdin: true
stdinOnce: true
terminationMessagePath: "236"
terminationMessagePolicy: ĸ輦唊
@ -745,66 +742,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "392"
nodeName: "388"
nodeSelector:
"388": "389"
"384": "385"
overhead:
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "475"
炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
priority: -1756088332
priorityClassName: "471"
readinessGates:
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: ƱÁR»淹揀
runtimeClassName: "480"
schedulerName: "470"
- conditionType: '#sM網'
restartPolicy: ȏâ磠
runtimeClassName: "476"
schedulerName: "466"
securityContext:
fsGroup: 6713296993350540686
fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ
runAsGroup: -3587143030436465588
fsGroup: 2946116477552625615
fsGroupChangePolicy: $鬬$矐_敕
runAsGroup: -935274303703112577
runAsNonRoot: true
runAsUser: 4466809078783855686
runAsUser: -3072254610148392250
seLinuxOptions:
level: "396"
role: "394"
type: "395"
user: "393"
level: "392"
role: "390"
type: "391"
user: "389"
seccompProfile:
localhostProfile: "402"
type: m¨z鋎靀G¿əW#ļǹʅŚO虀^
localhostProfile: "398"
type: 嵞嬯t{Eɾ敹Ȯ-湷D谹
supplementalGroups:
- 4820130167691486230
- 5215323049148402377
sysctls:
- name: "400"
value: "401"
- name: "396"
value: "397"
windowsOptions:
gmsaCredentialSpec: "398"
gmsaCredentialSpecName: "397"
runAsUserName: "399"
serviceAccount: "391"
serviceAccountName: "390"
setHostnameAsFQDN: true
gmsaCredentialSpec: "394"
gmsaCredentialSpecName: "393"
hostProcess: false
runAsUserName: "395"
serviceAccount: "387"
serviceAccountName: "386"
setHostnameAsFQDN: false
shareProcessNamespace: false
subdomain: "405"
terminationGracePeriodSeconds: 2008726498083002362
subdomain: "401"
terminationGracePeriodSeconds: 5614430095732678823
tolerations:
- effect: '慰x:'
key: "471"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "472"
- effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸
key: "467"
operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ
tolerationSeconds: -3147305732428645642
value: "468"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- key: KTlO.__0PX
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
- V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "481"
whenUnsatisfiable: ""
47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
maxSkew: -447559705
topologyKey: "477"
whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1060,17 +1058,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: 171558604
collisionCount: -1889018254
availableReplicas: 1659111388
collisionCount: 16994744
conditions:
- lastTransitionTime: "2391-11-11T11:52:22Z"
lastUpdateTime: "2346-11-18T09:51:55Z"
message: "489"
reason: "488"
status: 氞唬蹵ɥeȿĦ`垨Džɞ堹ǖ*Oɑ
type: ?鳢.ǀŭ瘢颦
observedGeneration: -2967151415957453677
readyReplicas: 1162680985
replicas: 1329525670
unavailableReplicas: -161888815
updatedReplicas: -1169406076
- lastTransitionTime: "2196-06-26T01:09:43Z"
lastUpdateTime: "2294-09-29T07:15:12Z"
message: "485"
reason: "484"
status: 嘯龡班悦ʀ臺穔
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ
observedGeneration: 4061426462677728903
readyReplicas: -1813284990
replicas: 208086661
unavailableReplicas: -717288184
updatedReplicas: 1598926042

File diff suppressed because it is too large Load Diff

View File

@ -73,116 +73,112 @@ spec:
selfLink: "29"
uid: ʬ
spec:
activeDeadlineSeconds: 579099652389333099
activeDeadlineSeconds: 3305070661619041050
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "408"
operator: 霎ȃň
- key: "407"
operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values:
- "409"
- "408"
matchFields:
- key: "410"
operator: ʓ滨
- key: "409"
operator: '[y#t('
values:
- "411"
weight: -259047269
- "410"
weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "404"
operator: 灭ƴɦ燻踸陴Sĕ
- key: "403"
operator: ʓɻŊ0蚢鑸鶲Ãqb轫
values:
- "405"
- "404"
matchFields:
- key: "406"
operator: 筿ɾ
- key: "405"
operator: ' '
values:
- "407"
- "406"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: Q_--v-3-BzO5z80n_HtW
operator: NotIn
values:
- 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
- key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
operator: Exists
matchLabels:
8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2: PE..24-O._.v._9-cz.-Y6T4gz
1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
namespaceSelector:
matchExpressions:
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W
operator: In
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
- key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
operator: DoesNotExist
matchLabels:
? f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9
: P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA
Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
namespaces:
- "432"
topologyKey: "433"
weight: 2001693468
- "431"
topologyKey: "432"
weight: -234140
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 3QC1--L--v_Z--ZgC
operator: Exists
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels:
KA-._d._.Um.-__0: 5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I
rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaceSelector:
matchExpressions:
- key: 7Vz_6.Hz_V_.r_v_._X
operator: Exists
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
operator: DoesNotExist
matchLabels:
1rhm-5y--z-0/b17ca-_p-y.eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX
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:
- "418"
topologyKey: "419"
- "417"
topologyKey: "418"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 8v---a9j23/9
operator: In
values:
- y__y.9O.L-.m.3h
- key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
operator: DoesNotExist
matchLabels:
o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H: gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq
1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
namespaceSelector:
matchExpressions:
- key: 6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG
operator: Exists
- key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
operator: DoesNotExist
matchLabels:
VM5..-N_H_55..--E3_2D-1DW__o_8: kzB7U_.Q.45cy-.._K
? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
: I-._g_.._-hKc.OB_F_--.._m_-9
namespaces:
- "460"
topologyKey: "461"
weight: 1920802622
- "459"
topologyKey: "460"
weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: T
operator: NotIn
values:
- ""
matchLabels:
4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C
namespaceSelector:
matchExpressions:
- key: vSW_4-__h
- key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
operator: In
values:
- m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
- u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
matchLabels:
T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ
n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
namespaceSelector:
matchExpressions:
- key: N7.81_-._-_8_.._._a9
operator: In
values:
- vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
matchLabels:
m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
namespaces:
- "446"
topologyKey: "447"
automountServiceAccountToken: true
- "445"
topologyKey: "446"
automountServiceAccountToken: false
containers:
- args:
- "249"
@ -201,7 +197,7 @@ spec:
fieldPath: "259"
resourceFieldRef:
containerName: "260"
divisor: "9"
divisor: "861"
resource: "261"
secretKeyRef:
key: "265"
@ -214,196 +210,197 @@ spec:
prefix: "253"
secretRef:
name: "255"
optional: true
optional: false
image: "247"
imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭
imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭
lifecycle:
postStart:
exec:
command:
- "291"
- "293"
httpGet:
host: "294"
host: "295"
httpHeaders:
- name: "295"
value: "296"
path: "292"
port: "293"
scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
- name: "296"
value: "297"
path: "294"
port: -1699531929
scheme: Z涬P­蜷ɔ幩šeS
tcpSocket:
host: "297"
port: 1167615307
host: "298"
port: 155090390
preStop:
exec:
command:
- "298"
- "299"
httpGet:
host: "300"
host: "302"
httpHeaders:
- name: "301"
value: "302"
path: "299"
port: -115833863
scheme: ì
- name: "303"
value: "304"
path: "300"
port: "301"
tcpSocket:
host: "304"
port: "303"
host: "305"
port: -727263154
livenessProbe:
exec:
command:
- "272"
failureThreshold: -1129218498
failureThreshold: 472742933
httpGet:
host: "274"
host: "275"
httpHeaders:
- name: "275"
value: "276"
- name: "276"
value: "277"
path: "273"
port: -1468297794
scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ
initialDelaySeconds: 1308698792
periodSeconds: -934378634
successThreshold: -1453143878
port: "274"
scheme: 冓鍓贯
initialDelaySeconds: 1290950685
periodSeconds: 1058960779
successThreshold: -2133441986
tcpSocket:
host: "278"
port: "277"
terminationGracePeriodSeconds: 2471155705902100229
timeoutSeconds: 1401790459
host: "279"
port: "278"
terminationGracePeriodSeconds: 217739466937954194
timeoutSeconds: 12533543
name: "246"
ports:
- containerPort: -1784617397
- containerPort: -614161319
hostIP: "252"
hostPort: 465972736
hostPort: 59244165
name: "251"
protocol: Ƭƶ氩Ȩ<6
protocol: Ȩ<6鄰簳°Ļǟi&
readinessProbe:
exec:
command:
- "279"
failureThreshold: 323903711
- "280"
failureThreshold: 1843491416
httpGet:
host: "281"
host: "282"
httpHeaders:
- name: "282"
value: "283"
path: "280"
port: -614098868
scheme: ȗÔÂɘɢ
initialDelaySeconds: -942399354
periodSeconds: -1803854120
successThreshold: -1412915219
- name: "283"
value: "284"
path: "281"
port: 1401790459
scheme: ǵɐ鰥Z
initialDelaySeconds: -614098868
periodSeconds: 846286700
successThreshold: 1080545253
tcpSocket:
host: "284"
port: 802134138
terminationGracePeriodSeconds: -9192251189672401053
timeoutSeconds: 1264624019
host: "285"
port: -1103045151
terminationGracePeriodSeconds: -5175286970144973961
timeoutSeconds: 234253676
resources:
limits:
lNKƙ順\E¦队偯J僳徥淳: "93"
¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178"
requests:
媀瓄&翜舞拉Œɥ颶妧Ö闊: "472"
Ö闊 鰔澝qV: "752"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ņ
drop:
- )DŽ髐njʉBn(fǂ
drop:
- 曣ŋayåe躒訙
privileged: false
procMount: Ǫʓ)ǂť嗆u
readOnlyRootFilesystem: true
runAsGroup: -495558749504439559
runAsNonRoot: false
runAsUser: -6717020695319852049
procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
readOnlyRootFilesystem: false
runAsGroup: 6245571390016329382
runAsNonRoot: true
runAsUser: 1083662227773909466
seLinuxOptions:
level: "309"
role: "307"
type: "308"
user: "306"
level: "310"
role: "308"
type: "309"
user: "307"
seccompProfile:
localhostProfile: "313"
type: 晲T[irȎ3Ĕ\
localhostProfile: "314"
type: '|蕎''佉賞ǧ'
windowsOptions:
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
runAsUserName: "312"
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
hostProcess: true
runAsUserName: "313"
startupProbe:
exec:
command:
- "285"
failureThreshold: 1658749995
- "286"
failureThreshold: -793616601
httpGet:
host: "287"
host: "289"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: -992558278
scheme: 鯂²静
initialDelaySeconds: -181601395
periodSeconds: 1851229369
successThreshold: -560238386
- name: "290"
value: "291"
path: "287"
port: "288"
scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj
initialDelaySeconds: 1658749995
periodSeconds: 809683205
successThreshold: -1615316902
tcpSocket:
host: "290"
port: -402384013
terminationGracePeriodSeconds: -4030490994049395944
timeoutSeconds: -617381112
terminationMessagePath: "305"
terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
tty: true
host: "292"
port: -560238386
terminationGracePeriodSeconds: -2242897509815578930
timeoutSeconds: -938421813
stdin: true
terminationMessagePath: "306"
terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4
volumeDevices:
- devicePath: "271"
name: "270"
volumeMounts:
- mountPath: "267"
mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃
mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "266"
readOnly: true
subPath: "268"
subPathExpr: "269"
workingDir: "250"
dnsConfig:
nameservers:
- "474"
- "473"
options:
- name: "476"
value: "477"
- name: "475"
value: "476"
searches:
- "475"
dnsPolicy: '''蠨磼O_h盌3+Œ9两@8'
- "474"
dnsPolicy: +Œ9两
enableServiceLinks: false
ephemeralContainers:
- args:
- "317"
- "318"
command:
- "316"
- "317"
env:
- name: "324"
value: "325"
- name: "325"
value: "326"
valueFrom:
configMapKeyRef:
key: "331"
name: "330"
key: "332"
name: "331"
optional: true
fieldRef:
apiVersion: "326"
fieldPath: "327"
apiVersion: "327"
fieldPath: "328"
resourceFieldRef:
containerName: "328"
divisor: "69"
resource: "329"
containerName: "329"
divisor: "992"
resource: "330"
secretKeyRef:
key: "333"
name: "332"
optional: false
key: "334"
name: "333"
optional: true
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
image: "315"
optional: true
prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: ǰ詀ǿ忀oɎƺL
lifecycle:
postStart:
@ -411,85 +408,85 @@ spec:
command:
- "361"
httpGet:
host: "364"
host: "363"
httpHeaders:
- name: "365"
value: "366"
- name: "364"
value: "365"
path: "362"
port: "363"
scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$#
port: 1445923603
scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q
tcpSocket:
host: "368"
port: "367"
host: "367"
port: "366"
preStop:
exec:
command:
- "369"
- "368"
httpGet:
host: "371"
httpHeaders:
- name: "372"
value: "373"
path: "370"
port: 1791758702
scheme: tl敷斢杧ż鯀
path: "369"
port: "370"
scheme: 杧ż鯀1'
tcpSocket:
host: "375"
port: "374"
host: "374"
port: 1297979953
livenessProbe:
exec:
command:
- "340"
failureThreshold: -36573584
- "341"
failureThreshold: 2046765799
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "341"
port: "342"
scheme: ȥ}礤铟怖ý萜Ǖ
initialDelaySeconds: -1922458514
periodSeconds: 692511776
successThreshold: -1231653807
path: "342"
port: 1529027685
scheme: żLj捲攻xƂ9阠$嬏wy¶熀
initialDelaySeconds: -2106399359
periodSeconds: -1038975198
successThreshold: 1821835340
tcpSocket:
host: "346"
port: -1088996269
terminationGracePeriodSeconds: -2524837786321986358
timeoutSeconds: 1480364858
name: "314"
port: -1912967242
terminationGracePeriodSeconds: -6946775447206795219
timeoutSeconds: 1443270783
name: "315"
ports:
- containerPort: -1918622971
hostIP: "320"
hostPort: -1656699070
name: "319"
protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz
- containerPort: -1842062977
hostIP: "321"
hostPort: -1920304485
name: "320"
protocol: 輔3璾ėȜv1b繐汚磉反-n覦
readinessProbe:
exec:
command:
- "347"
failureThreshold: 1443270783
failureThreshold: 1671084780
httpGet:
host: "349"
host: "350"
httpHeaders:
- name: "350"
value: "351"
- name: "351"
value: "352"
path: "348"
port: 1219644543
scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy
initialDelaySeconds: 652646450
periodSeconds: -1912967242
successThreshold: -2106399359
port: "349"
scheme: Ƒ[澔
initialDelaySeconds: -952255430
periodSeconds: -824007302
successThreshold: -359713104
tcpSocket:
host: "353"
port: "352"
terminationGracePeriodSeconds: -4462364494060795190
timeoutSeconds: 757223010
port: 1288391156
terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 1568034275
resources:
limits:
1b: "328"
ʨIk(dŊiɢzĮ蛋I滞: "394"
requests:
'}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699"
ɞȥ}礤铟怖ý萜Ǖ: "305"
securityContext:
allowPrivilegeEscalation: false
capabilities:
@ -498,68 +495,68 @@ spec:
drop:
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true
procMount: s44矕Ƈè*鑏=
procMount: s44矕Ƈè
readOnlyRootFilesystem: false
runAsGroup: -1232960403847883886
runAsNonRoot: true
runAsUser: 2114633499332155907
runAsGroup: 73764735411458498
runAsNonRoot: false
runAsUser: 4224635496843945227
seLinuxOptions:
level: "380"
role: "378"
type: "379"
user: "377"
level: "379"
role: "377"
type: "378"
user: "376"
seccompProfile:
localhostProfile: "384"
type: ʨ|ǓÓ敆OɈÏ 瞍髃#
localhostProfile: "383"
type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions:
gmsaCredentialSpec: "382"
gmsaCredentialSpecName: "381"
runAsUserName: "383"
gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "380"
hostProcess: true
runAsUserName: "382"
startupProbe:
exec:
command:
- "354"
failureThreshold: 64459150
failureThreshold: -1031303729
httpGet:
host: "356"
httpHeaders:
- name: "357"
value: "358"
path: "355"
port: -902839620
scheme: 縆łƑ[澔槃JŵǤ桒ɴ鉂W
initialDelaySeconds: -574742201
periodSeconds: -514169648
successThreshold: -1186167291
port: -514169648
scheme: '&疀'
initialDelaySeconds: -39292476
periodSeconds: -1312249623
successThreshold: -1089435479
tcpSocket:
host: "360"
port: "359"
terminationGracePeriodSeconds: -4166164136222066963
timeoutSeconds: -1182912186
stdin: true
targetContainerName: "385"
terminationMessagePath: "376"
terminationMessagePolicy: 鸔ɧWǘ炙
terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: 801902541
targetContainerName: "384"
terminationMessagePath: "375"
terminationMessagePolicy: ǘ炙
tty: true
volumeDevices:
- devicePath: "339"
name: "338"
- devicePath: "340"
name: "339"
volumeMounts:
- mountPath: "335"
mountPropagation: Ik(dŊiɢzĮ蛋I
name: "334"
- mountPath: "336"
mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m
name: "335"
readOnly: true
subPath: "336"
subPathExpr: "337"
workingDir: "318"
subPath: "337"
subPathExpr: "338"
workingDir: "319"
hostAliases:
- hostnames:
- "472"
ip: "471"
hostNetwork: true
hostname: "402"
- "471"
ip: "470"
hostPID: true
hostname: "401"
imagePullSecrets:
- name: "401"
- name: "400"
initContainers:
- args:
- "181"
@ -687,11 +684,11 @@ spec:
drop:
- W:ĸ輦唊#v
privileged: false
procMount: Ÿ8T 苧yñKJɐ扵
procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ
readOnlyRootFilesystem: true
runAsGroup: 8839567045362091290
runAsGroup: -1629447906545846003
runAsNonRoot: true
runAsUser: 1946087648860511217
runAsUser: 7510677649797968740
seLinuxOptions:
level: "241"
role: "239"
@ -699,10 +696,11 @@ spec:
user: "238"
seccompProfile:
localhostProfile: "245"
type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
type: 腩墺Ò媁荭gw忊|E剒蔞|表徶
windowsOptions:
gmsaCredentialSpec: "243"
gmsaCredentialSpecName: "242"
hostProcess: true
runAsUserName: "244"
startupProbe:
exec:
@ -728,7 +726,6 @@ spec:
stdin: true
terminationMessagePath: "237"
terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
tty: true
volumeDevices:
- devicePath: "203"
name: "202"
@ -740,66 +737,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "390"
nodeName: "389"
nodeSelector:
"386": "387"
"385": "386"
overhead:
»Š: "727"
preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA
priority: 1188651641
priorityClassName: "473"
D輷: "792"
preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 347613368
priorityClassName: "472"
readinessGates:
- conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW
restartPolicy: W歹s梊ɥʋăƻ
runtimeClassName: "478"
schedulerName: "468"
- conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "477"
schedulerName: "467"
securityContext:
fsGroup: -8322686588708543096
fsGroupChangePolicy: 4虵p蓋沥7uPƒ
runAsGroup: -2549376519991319825
fsGroup: -3964669311891901178
fsGroupChangePolicy: ƴ4虵p
runAsGroup: 3230705132538051674
runAsNonRoot: true
runAsUser: 3011215457607075123
runAsUser: 3438266910774132295
seLinuxOptions:
level: "394"
role: "392"
type: "393"
user: "391"
level: "393"
role: "391"
type: "392"
user: "390"
seccompProfile:
localhostProfile: "400"
type: ""
localhostProfile: "399"
type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups:
- 8667724420266764868
- -1600417733583164525
sysctls:
- name: "398"
value: "399"
- name: "397"
value: "398"
windowsOptions:
gmsaCredentialSpec: "396"
gmsaCredentialSpecName: "395"
runAsUserName: "397"
serviceAccount: "389"
serviceAccountName: "388"
gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "394"
hostProcess: false
runAsUserName: "396"
serviceAccount: "388"
serviceAccountName: "387"
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "403"
terminationGracePeriodSeconds: 1031455728822209328
subdomain: "402"
terminationGracePeriodSeconds: -8335674866227004872
tolerations:
- effect: ;牆詒ĸąsƶ
key: "469"
operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ
tolerationSeconds: -456102350746071856
value: "470"
- effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "468"
operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: 3252034671163905138
value: "469"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: br..1.--S-w-5_..D.pz_-ad
operator: In
- key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
operator: NotIn
values:
- Q.__y644
- h.v._5.vB-.-7-.6Jv-86___3
matchLabels:
z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0: g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T
maxSkew: -388643187
topologyKey: "479"
whenUnsatisfiable: i僠噚恗N
n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -484382570
topologyKey: "478"
whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1051,14 +1049,14 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: 876226690
availableReplicas: -2060941196
conditions:
- lastTransitionTime: "2951-06-01T06:00:17Z"
message: "487"
reason: "486"
status: '%ÿ¼璤ňɈȀę'
type: C`牯雫
fullyLabeledReplicas: 516555648
observedGeneration: 1436288218546692842
readyReplicas: 2104777337
replicas: -2095627603
- lastTransitionTime: "2597-11-21T15:14:16Z"
message: "486"
reason: "485"
status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎
type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN
fullyLabeledReplicas: 415168801
observedGeneration: 7426283174216567769
readyReplicas: 1448332644
replicas: 2106170541

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

@ -31,12 +31,13 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1559072561
progressDeadlineSeconds: 349353563
minReadySeconds: -212999359
paused: true
progressDeadlineSeconds: -1491990975
replicas: 896585016
revisionHistoryLimit: -629510776
revisionHistoryLimit: -866496758
rollbackTo:
revision: -8285752436940414034
revision: 5409045697701816557
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@ -47,7 +48,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
type: 卍睊
template:
metadata:
annotations:
@ -80,114 +81,108 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
activeDeadlineSeconds: -5891364351877125204
activeDeadlineSeconds: 5204116807884683873
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "410"
operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW
values:
- "411"
matchFields:
- key: "412"
operator: 顓闉ȦT
values:
- "413"
weight: 1762917570
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "406"
operator: ""
operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃
values:
- "407"
matchFields:
- key: "408"
operator: ɦ燻踸陴Sĕ濦ʓɻ
operator: ƒK07曳w
values:
- "409"
weight: 1805682547
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "402"
operator: ""
values:
- "403"
matchFields:
- key: "404"
operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ
values:
- "405"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
operator: In
values:
- H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr
operator: DoesNotExist
matchLabels:
z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c
namespaceSelector:
matchExpressions:
- key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
operator: In
values:
- 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
- key: C-_20
operator: Exists
matchLabels:
vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t
namespaces:
- "434"
topologyKey: "435"
weight: 888976270
- "430"
topologyKey: "431"
weight: -450654683
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33
operator: NotIn
values:
- 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
- key: 67F3p2_-_AmD-.0P
operator: DoesNotExist
matchLabels:
8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5
namespaceSelector:
matchExpressions:
- key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj
operator: Exists
matchLabels:
4eq5: ""
6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r
namespaces:
- "420"
topologyKey: "421"
- "416"
topologyKey: "417"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 6W74-R_Z_Tz.a3_Ho
operator: Exists
- key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
namespaceSelector:
matchExpressions:
- key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
operator: In
values:
- x3___-..f5-6x-_-o_6O_If-5_-_.F
- key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
operator: DoesNotExist
matchLabels:
h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
namespaces:
- "462"
topologyKey: "463"
weight: -1668452490
- "458"
topologyKey: "459"
weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
operator: Exists
matchLabels:
5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
namespaceSelector:
matchExpressions:
- key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
- key: 4b699/B9n.2
operator: In
values:
- V._qN__A_f_-B3_U__L.KH6K.RwsfI2
- MM7-.e.x
matchLabels:
u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q
namespaceSelector:
matchExpressions:
- key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
operator: DoesNotExist
matchLabels:
B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
namespaces:
- "448"
topologyKey: "449"
- "444"
topologyKey: "445"
automountServiceAccountToken: true
containers:
- args:
@ -201,372 +196,372 @@ spec:
configMapKeyRef:
key: "262"
name: "261"
optional: true
optional: false
fieldRef:
apiVersion: "257"
fieldPath: "258"
resourceFieldRef:
containerName: "259"
divisor: "185"
divisor: "271"
resource: "260"
secretKeyRef:
key: "264"
name: "263"
optional: false
optional: true
envFrom:
- configMapRef:
name: "253"
optional: false
optional: true
prefix: "252"
secretRef:
name: "254"
optional: false
image: "246"
imagePullPolicy: i绝5哇芆斩
imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle:
postStart:
exec:
command:
- "292"
- "291"
httpGet:
host: "295"
host: "293"
httpHeaders:
- name: "296"
value: "297"
path: "293"
port: "294"
scheme: 鯂²静
- name: "294"
value: "295"
path: "292"
port: -1021949447
scheme: B芭
tcpSocket:
host: "298"
port: -402384013
host: "297"
port: "296"
preStop:
exec:
command:
- "299"
- "298"
httpGet:
host: "302"
host: "301"
httpHeaders:
- name: "303"
value: "304"
path: "300"
port: "301"
scheme: 鏻砅邻爥
- name: "302"
value: "303"
path: "299"
port: "300"
scheme: yƕ丆録²Ŏ)
tcpSocket:
host: "305"
port: -305362540
host: "304"
port: 507384491
livenessProbe:
exec:
command:
- "271"
failureThreshold: 1993268896
failureThreshold: 1156888068
httpGet:
host: "274"
host: "273"
httpHeaders:
- name: "275"
value: "276"
- name: "274"
value: "275"
path: "272"
port: "273"
scheme:
initialDelaySeconds: 711020087
periodSeconds: -1965247100
successThreshold: 218453478
port: 1907998540
scheme: ',ŕ'
initialDelaySeconds: -253326525
periodSeconds: 887319241
successThreshold: 1559618829
tcpSocket:
host: "277"
port: 1315054653
terminationGracePeriodSeconds: -9140155223242250138
timeoutSeconds: 1103049140
port: "276"
terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 567263590
name: "245"
ports:
- containerPort: -370386363
- containerPort: 1714588921
hostIP: "251"
hostPort: -1462219068
hostPort: -370386363
name: "250"
protocol: wƯ貾坢'跩aŕ翑0展}
protocol: Ư貾
readinessProbe:
exec:
command:
- "278"
failureThreshold: 1456461851
failureThreshold: 422133388
httpGet:
host: "280"
httpHeaders:
- name: "281"
value: "282"
path: "279"
port: -1315487077
scheme: ğ_
initialDelaySeconds: 1272940694
periodSeconds: 422133388
successThreshold: 1952458416
port: 1315054653
scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1905181464
periodSeconds: 1272940694
successThreshold: -385597677
tcpSocket:
host: "284"
port: "283"
terminationGracePeriodSeconds: -6078441689118311403
timeoutSeconds: -385597677
terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -1730959016
resources:
limits:
鬶l獕;跣Hǝcw: "242"
庰%皧V: "116"
requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637"
"": "289"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ""
- p鋄5弢ȹ均i绝5
drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
privileged: false
procMount: W賁Ěɭɪǹ0
- ""
privileged: true
procMount: ş
readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404
runAsGroup: 7023916302283403328
runAsNonRoot: false
runAsUser: -7936947433725476327
runAsUser: -3385088507022597813
seLinuxOptions:
level: "310"
role: "308"
type: "309"
user: "307"
level: "309"
role: "307"
type: "308"
user: "306"
seccompProfile:
localhostProfile: "314"
type: ',ƷƣMț譎懚XW疪鑳'
localhostProfile: "313"
type: 諔迮ƙ
windowsOptions:
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
runAsUserName: "313"
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
hostProcess: false
runAsUserName: "312"
startupProbe:
exec:
command:
- "285"
failureThreshold: 620822482
failureThreshold: 353361793
httpGet:
host: "287"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
port: 1013673874
scheme: ə娯Ȱ囌{
initialDelaySeconds: -205176266
periodSeconds: -116469891
successThreshold: 311083651
tcpSocket:
host: "291"
port: "290"
terminationGracePeriodSeconds: -2203905759223555727
timeoutSeconds: 386804041
stdin: true
host: "290"
port: -1829146875
terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 490479437
stdinOnce: true
terminationMessagePath: "306"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
tty: true
terminationMessagePath: "305"
terminationMessagePolicy: "3"
volumeDevices:
- devicePath: "270"
name: "269"
volumeMounts:
- mountPath: "266"
mountPropagation: ""
mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "265"
readOnly: true
subPath: "267"
subPathExpr: "268"
workingDir: "249"
dnsConfig:
nameservers:
- "476"
- "472"
options:
- name: "478"
value: "479"
- name: "474"
value: "475"
searches:
- "477"
dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s
enableServiceLinks: false
- "473"
dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b
enableServiceLinks: true
ephemeralContainers:
- args:
- "318"
command:
- "317"
command:
- "316"
env:
- name: "325"
value: "326"
- name: "324"
value: "325"
valueFrom:
configMapKeyRef:
key: "332"
name: "331"
optional: false
key: "331"
name: "330"
optional: true
fieldRef:
apiVersion: "327"
fieldPath: "328"
apiVersion: "326"
fieldPath: "327"
resourceFieldRef:
containerName: "329"
divisor: "360"
resource: "330"
containerName: "328"
divisor: "66"
resource: "329"
secretKeyRef:
key: "334"
name: "333"
key: "333"
name: "332"
optional: false
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
prefix: "322"
secretRef:
name: "324"
optional: false
image: "316"
imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
image: "315"
imagePullPolicy: 阠$嬏
lifecycle:
postStart:
exec:
command:
- "363"
- "360"
httpGet:
host: "365"
host: "362"
httpHeaders:
- name: "366"
value: "367"
path: "364"
port: 466267060
scheme: wy¶熀ďJZ漤ŗ坟Ů<y鯶縆ł
- name: "363"
value: "364"
path: "361"
port: 890223061
scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ
tcpSocket:
host: "369"
port: "368"
host: "366"
port: "365"
preStop:
exec:
command:
- "370"
- "367"
httpGet:
host: "373"
host: "369"
httpHeaders:
- name: "374"
value: "375"
path: "371"
port: "372"
scheme: Ē3Nh×DJɶ羹ƞʓ%ʝ
- name: "370"
value: "371"
path: "368"
port: 797714018
scheme: vÄÚ×
tcpSocket:
host: "377"
port: "376"
host: "373"
port: "372"
livenessProbe:
exec:
command:
- "341"
failureThreshold: 240657401
- "340"
failureThreshold: -1508967300
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "342"
port: -1842062977
scheme: 輔3璾ėȜv1b繐汚磉反-n覦
initialDelaySeconds: -1161185537
periodSeconds: 1611386356
successThreshold: 821341581
path: "341"
port: "342"
initialDelaySeconds: -1843539391
periodSeconds: -1758095966
successThreshold: 1627026804
tcpSocket:
host: "347"
port: "346"
terminationGracePeriodSeconds: 7806703309589874498
timeoutSeconds: 1928937303
name: "315"
host: "346"
port: -819013491
terminationGracePeriodSeconds: -4548040070833300341
timeoutSeconds: 1238925115
name: "314"
ports:
- containerPort: 455919108
hostIP: "321"
hostPort: 217308913
name: "320"
protocol: 崍h趭(娕u
- containerPort: 1137109081
hostIP: "320"
hostPort: -488127393
name: "319"
protocol: 丽饾| 鞤ɱď
readinessProbe:
exec:
command:
- "348"
failureThreshold: 1605974497
- "347"
failureThreshold: -47594442
httpGet:
host: "351"
host: "349"
httpHeaders:
- name: "352"
value: "353"
path: "349"
port: "350"
scheme: Ik(dŊiɢzĮ蛋I
initialDelaySeconds: 571693619
periodSeconds: -2028546276
successThreshold: -2128305760
- name: "350"
value: "351"
path: "348"
port: -186532794
scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė
initialDelaySeconds: -751455207
periodSeconds: 646133945
successThreshold: -506710067
tcpSocket:
host: "355"
port: "354"
terminationGracePeriodSeconds: 2002344837004307079
timeoutSeconds: 1643238856
host: "353"
port: "352"
terminationGracePeriodSeconds: -8866033802256420471
timeoutSeconds: -894026356
resources:
limits:
fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
ƣMț譎懚X: "93"
requests:
蕎': "62"
曣ŋayåe躒訙: "484"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃
- ¶熀ďJZ漤
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
- ""
privileged: true
procMount: 槃JŵǤ桒ɴ鉂WJ
readOnlyRootFilesystem: true
runAsGroup: -8721643037453811760
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: 5680561050872693436
seLinuxOptions:
level: "382"
role: "380"
type: "381"
user: "379"
level: "378"
role: "376"
type: "377"
user: "375"
seccompProfile:
localhostProfile: "386"
type: ǒđ>*劶?jĎĭ
localhostProfile: "382"
type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ
windowsOptions:
gmsaCredentialSpec: "384"
gmsaCredentialSpecName: "383"
runAsUserName: "385"
gmsaCredentialSpec: "380"
gmsaCredentialSpecName: "379"
hostProcess: false
runAsUserName: "381"
startupProbe:
exec:
command:
- "356"
failureThreshold: 1447314009
- "354"
failureThreshold: 1190831814
httpGet:
host: "359"
host: "356"
httpHeaders:
- name: "360"
value: "361"
path: "357"
port: "358"
scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂
initialDelaySeconds: 235623869
periodSeconds: -505848936
successThreshold: -1819021257
- name: "357"
value: "358"
path: "355"
port: -1789721862
scheme: 閈誹ʅ蕉ɼ
initialDelaySeconds: 1518001294
periodSeconds: -2068583194
successThreshold: -29073009
tcpSocket:
host: "362"
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
targetContainerName: "387"
terminationMessagePath: "378"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
host: "359"
port: 374862544
terminationGracePeriodSeconds: 7262727411813417219
timeoutSeconds: 1467189105
targetContainerName: "383"
terminationMessagePath: "374"
terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ
volumeDevices:
- devicePath: "340"
name: "339"
- devicePath: "339"
name: "338"
volumeMounts:
- mountPath: "336"
mountPropagation: Ǚ(
name: "335"
readOnly: true
subPath: "337"
subPathExpr: "338"
workingDir: "319"
- mountPath: "335"
mountPropagation: (娕uE增猍
name: "334"
subPath: "336"
subPathExpr: "337"
workingDir: "318"
hostAliases:
- hostnames:
- "474"
ip: "473"
- "470"
ip: "469"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "404"
hostname: "400"
imagePullSecrets:
- name: "403"
- name: "399"
initContainers:
- args:
- "181"
@ -694,11 +689,11 @@ spec:
drop:
- ʁ岼昕ĬÇ
privileged: true
procMount: Z鐫û咡W<敄lu
procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858
runAsNonRoot: true
runAsUser: -857934902638099053
runAsGroup: -6406791857291159870
runAsNonRoot: false
runAsUser: 161123823296532265
seLinuxOptions:
level: "240"
role: "238"
@ -706,10 +701,11 @@ spec:
user: "237"
seccompProfile:
localhostProfile: "244"
type: 榝$î.Ȏ蝪ʜ5遰
type: î.Ȏ蝪ʜ5遰=
windowsOptions:
gmsaCredentialSpec: "242"
gmsaCredentialSpecName: "241"
hostProcess: false
runAsUserName: "243"
startupProbe:
exec:
@ -732,6 +728,7 @@ spec:
port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096
stdin: true
stdinOnce: true
terminationMessagePath: "236"
terminationMessagePolicy: ĸ輦唊
@ -747,66 +744,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "392"
nodeName: "388"
nodeSelector:
"388": "389"
"384": "385"
overhead:
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "475"
炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
priority: -1756088332
priorityClassName: "471"
readinessGates:
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: ƱÁR»淹揀
runtimeClassName: "480"
schedulerName: "470"
- conditionType: '#sM網'
restartPolicy: ȏâ磠
runtimeClassName: "476"
schedulerName: "466"
securityContext:
fsGroup: 6713296993350540686
fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ
runAsGroup: -3587143030436465588
fsGroup: 2946116477552625615
fsGroupChangePolicy: $鬬$矐_敕
runAsGroup: -935274303703112577
runAsNonRoot: true
runAsUser: 4466809078783855686
runAsUser: -3072254610148392250
seLinuxOptions:
level: "396"
role: "394"
type: "395"
user: "393"
level: "392"
role: "390"
type: "391"
user: "389"
seccompProfile:
localhostProfile: "402"
type: m¨z鋎靀G¿əW#ļǹʅŚO虀^
localhostProfile: "398"
type: 嵞嬯t{Eɾ敹Ȯ-湷D谹
supplementalGroups:
- 4820130167691486230
- 5215323049148402377
sysctls:
- name: "400"
value: "401"
- name: "396"
value: "397"
windowsOptions:
gmsaCredentialSpec: "398"
gmsaCredentialSpecName: "397"
runAsUserName: "399"
serviceAccount: "391"
serviceAccountName: "390"
setHostnameAsFQDN: true
gmsaCredentialSpec: "394"
gmsaCredentialSpecName: "393"
hostProcess: false
runAsUserName: "395"
serviceAccount: "387"
serviceAccountName: "386"
setHostnameAsFQDN: false
shareProcessNamespace: false
subdomain: "405"
terminationGracePeriodSeconds: 2008726498083002362
subdomain: "401"
terminationGracePeriodSeconds: 5614430095732678823
tolerations:
- effect: '慰x:'
key: "471"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "472"
- effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸
key: "467"
operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ
tolerationSeconds: -3147305732428645642
value: "468"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- key: KTlO.__0PX
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
- V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "481"
whenUnsatisfiable: ""
47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
maxSkew: -447559705
topologyKey: "477"
whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1062,17 +1060,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: -2102211832
collisionCount: -1280802136
availableReplicas: 845369726
collisionCount: 2000058265
conditions:
- lastTransitionTime: "2625-01-11T08:25:47Z"
lastUpdateTime: "2124-10-20T09:17:54Z"
message: "489"
reason: "488"
status: ""
type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ
observedGeneration: 5710269275969351972
readyReplicas: 1492268066
replicas: -153843136
unavailableReplicas: 1714841371
updatedReplicas: -1961319491
- lastTransitionTime: "2127-02-15T04:53:58Z"
lastUpdateTime: "2587-03-02T15:57:31Z"
message: "485"
reason: "484"
status: 埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$<ʖ欢
type: ',R譏K'
observedGeneration: 893725404715704439
readyReplicas: 143932221
replicas: -611078700
unavailableReplicas: 1757097428
updatedReplicas: -280135412

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -688,14 +688,15 @@
"windowsOptions": {
"gmsaCredentialSpecName": "246",
"gmsaCredentialSpec": "247",
"runAsUserName": "248"
"runAsUserName": "248",
"hostProcess": true
},
"runAsUser": 9148233193771851687,
"runAsGroup": 6901713258562004024,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"runAsUser": -7299434051955863644,
"runAsGroup": 4041264710404335706,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"seccompProfile": {
"type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4",
"localhostProfile": "249"
@ -944,19 +945,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "317",
"gmsaCredentialSpec": "318",
"runAsUserName": "319"
"runAsUserName": "319",
"hostProcess": true
},
"runAsUser": 4369716065827112267,
"runAsGroup": -6657305077321335240,
"runAsUser": -1286199491017539507,
"runAsGroup": -6292316479661489180,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "ʙcx",
"procMount": "cx赮ǒđ\u003e*劶?j",
"seccompProfile": {
"type": "ǒđ\u003e*劶?jĎĭ",
"type": "ĭ¥#ƱÁR",
"localhostProfile": "320"
}
}
},
"stdin": true,
"tty": true
}
],
"ephemeralContainers": [
@ -973,9 +977,9 @@
"ports": [
{
"name": "326",
"hostPort": 1805682547,
"containerPort": -651405950,
"protocol": "淹揀.e鍃G昧牱fsǕT衩kƒK07",
"hostPort": 2032588794,
"containerPort": -1371690155,
"protocol": "G昧牱fsǕT衩kƒK07曳wœj堑",
"hostIP": "327"
}
],
@ -988,7 +992,7 @@
},
"secretRef": {
"name": "330",
"optional": true
"optional": false
}
}
],
@ -1004,12 +1008,12 @@
"resourceFieldRef": {
"containerName": "335",
"resource": "336",
"divisor": "684"
"divisor": "473"
},
"configMapKeyRef": {
"name": "337",
"key": "338",
"optional": true
"optional": false
},
"secretKeyRef": {
"name": "339",
@ -1021,19 +1025,18 @@
],
"resources": {
"limits": {
"蠨磼O_h盌3+Œ9两@8Byß": "111"
"盌3+Œ": "752"
},
"requests": {
"ɃŒ": "451"
")Zq=歍þ": "759"
}
},
"volumeMounts": [
{
"name": "341",
"readOnly": true,
"mountPath": "342",
"subPath": "343",
"mountPropagation": "葰賦",
"mountPropagation": "讅缔m葰賦迾娙ƴ4虵p",
"subPathExpr": "344"
}
],
@ -1051,9 +1054,9 @@
},
"httpGet": {
"path": "348",
"port": -121675052,
"port": 1034835933,
"host": "349",
"scheme": "W#ļǹʅŚO虀^",
"scheme": "O虀^背遻堣灭ƴɦ燻踸陴",
"httpHeaders": [
{
"name": "350",
@ -1062,27 +1065,27 @@
]
},
"tcpSocket": {
"port": "352",
"host": "353"
"port": -1744546613,
"host": "352"
},
"initialDelaySeconds": -1959891996,
"timeoutSeconds": -1442230895,
"periodSeconds": 1475033091,
"successThreshold": 1782790310,
"failureThreshold": 1587036035,
"terminationGracePeriodSeconds": 7560036535013464461
"initialDelaySeconds": 650448405,
"timeoutSeconds": 1943254244,
"periodSeconds": -168773629,
"successThreshold": 2068592383,
"failureThreshold": 1566765016,
"terminationGracePeriodSeconds": -1112599546012453731
},
"readinessProbe": {
"exec": {
"command": [
"354"
"353"
]
},
"httpGet": {
"path": "355",
"port": -1744546613,
"path": "354",
"port": "355",
"host": "356",
"scheme": "ʓɻŊ",
"scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
"httpHeaders": [
{
"name": "357",
@ -1091,37 +1094,8 @@
]
},
"tcpSocket": {
"port": -259047269,
"host": "359"
},
"initialDelaySeconds": 1586122127,
"timeoutSeconds": -1813456856,
"periodSeconds": 781203691,
"successThreshold": -216440055,
"failureThreshold": 408029351,
"terminationGracePeriodSeconds": 5450105809027610853
},
"startupProbe": {
"exec": {
"command": [
"360"
]
},
"httpGet": {
"path": "361",
"port": -5241849,
"host": "362",
"scheme": "}颉hȱɷȰW",
"httpHeaders": [
{
"name": "363",
"value": "364"
}
]
},
"tcpSocket": {
"port": "365",
"host": "366"
"port": "359",
"host": "360"
},
"initialDelaySeconds": 636493142,
"timeoutSeconds": -192358697,
@ -1130,146 +1104,176 @@
"failureThreshold": 902204699,
"terminationGracePeriodSeconds": 9196919020604133323
},
"startupProbe": {
"exec": {
"command": [
"361"
]
},
"httpGet": {
"path": "362",
"port": "363",
"host": "364",
"scheme": "y#t(ȗŜŲ\u0026",
"httpHeaders": [
{
"name": "365",
"value": "366"
}
]
},
"tcpSocket": {
"port": 1387858949,
"host": "367"
},
"initialDelaySeconds": 156368232,
"timeoutSeconds": -815239246,
"periodSeconds": 44612600,
"successThreshold": -688929182,
"failureThreshold": -1222486879,
"terminationGracePeriodSeconds": 6543873941346781273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"367"
"368"
]
},
"httpGet": {
"path": "368",
"port": -1460652193,
"host": "369",
"scheme": "8ï驿笈¯rƈa餖Ľƛ淴ɑ?",
"path": "369",
"port": 1176168596,
"host": "370",
"scheme": "轪d覉;Ĕ",
"httpHeaders": [
{
"name": "370",
"value": "371"
"name": "371",
"value": "372"
}
]
},
"tcpSocket": {
"port": "372",
"host": "373"
"port": "373",
"host": "374"
}
},
"preStop": {
"exec": {
"command": [
"374"
"375"
]
},
"httpGet": {
"path": "375",
"port": 71524977,
"host": "376",
"scheme": "鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷",
"path": "376",
"port": "377",
"host": "378",
"scheme": "ʦŊĊ娮",
"httpHeaders": [
{
"name": "377",
"value": "378"
"name": "379",
"value": "380"
}
]
},
"tcpSocket": {
"port": -565041796,
"host": "379"
"port": "381",
"host": "382"
}
}
},
"terminationMessagePath": "380",
"terminationMessagePolicy": "Ƭ婦d",
"imagePullPolicy": "ɧeʫį淓¯",
"terminationMessagePath": "383",
"terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ",
"imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj",
"securityContext": {
"capabilities": {
"add": [
"ƛ忀z委\u003e,趐V曡88 u怞荊ù"
"蓋Cȗä2 ɲ±m嵘厶sȰÖ"
],
"drop": [
"8緔Tj§E蓋Cȗä2 ɲ±"
"ÆɰŞ襵"
]
},
"privileged": true,
"seLinuxOptions": {
"user": "381",
"role": "382",
"type": "383",
"level": "384"
"user": "384",
"role": "385",
"type": "386",
"level": "387"
},
"windowsOptions": {
"gmsaCredentialSpecName": "385",
"gmsaCredentialSpec": "386",
"runAsUserName": "387"
"gmsaCredentialSpecName": "388",
"gmsaCredentialSpec": "389",
"runAsUserName": "390",
"hostProcess": false
},
"runAsUser": -4564863616644509171,
"runAsGroup": -7297536356638221066,
"runAsUser": -5519662252699559890,
"runAsGroup": -1624551961163368198,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "Ş襵樞úʥ銀",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "阫Ƈʥ椹ý",
"seccompProfile": {
"type": "ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧",
"localhostProfile": "388"
"type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷",
"localhostProfile": "391"
}
},
"stdin": true,
"tty": true,
"targetContainerName": "389"
"stdinOnce": true,
"targetContainerName": "392"
}
],
"restartPolicy": "鹚蝉茲ʛ饊",
"terminationGracePeriodSeconds": 1736985756995615785,
"activeDeadlineSeconds": -1284119655860768065,
"dnsPolicy": "錏嬮#ʐ",
"restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI",
"terminationGracePeriodSeconds": 3296766428578159624,
"activeDeadlineSeconds": -8925090445844634303,
"dnsPolicy": "q沷¾!",
"nodeSelector": {
"390": "391"
"393": "394"
},
"serviceAccountName": "392",
"serviceAccount": "393",
"serviceAccountName": "395",
"serviceAccount": "396",
"automountServiceAccountToken": true,
"nodeName": "394",
"hostPID": true,
"nodeName": "397",
"hostIPC": true,
"shareProcessNamespace": false,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "395",
"role": "396",
"type": "397",
"level": "398"
"user": "398",
"role": "399",
"type": "400",
"level": "401"
},
"windowsOptions": {
"gmsaCredentialSpecName": "399",
"gmsaCredentialSpec": "400",
"runAsUserName": "401"
"gmsaCredentialSpecName": "402",
"gmsaCredentialSpec": "403",
"runAsUserName": "404",
"hostProcess": true
},
"runAsUser": -4904722847506013622,
"runAsGroup": 6465579957265382985,
"runAsUser": -3496040522639830925,
"runAsGroup": 2960114664726223450,
"runAsNonRoot": false,
"supplementalGroups": [
-981432507446869083
2402603282459663167
],
"fsGroup": -1867959832193971598,
"fsGroup": 3564097949592109139,
"sysctls": [
{
"name": "402",
"value": "403"
"name": "405",
"value": "406"
}
],
"fsGroupChangePolicy": "ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!",
"fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6",
"seccompProfile": {
"type": "`翾'ųŎ群E牬庘颮6(|ǖû",
"localhostProfile": "404"
"type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ",
"localhostProfile": "407"
}
},
"imagePullSecrets": [
{
"name": "405"
"name": "408"
}
],
"hostname": "406",
"subdomain": "407",
"hostname": "409",
"subdomain": "410",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -1277,19 +1281,19 @@
{
"matchExpressions": [
{
"key": "408",
"operator": "UǷ坒",
"key": "411",
"operator": "Üɉ愂,wa纝佯fɞ",
"values": [
"409"
"412"
]
}
],
"matchFields": [
{
"key": "410",
"operator": "",
"key": "413",
"operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;",
"values": [
"411"
"414"
]
}
]
@ -1298,23 +1302,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -1280563546,
"weight": 1690937616,
"preference": {
"matchExpressions": [
{
"key": "412",
"operator": "Mɮ6)",
"key": "415",
"operator": "襉{遠",
"values": [
"413"
"416"
]
}
],
"matchFields": [
{
"key": "414",
"operator": "杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾",
"key": "417",
"operator": "诰ðÈ娒Ġ滔xvŗÑ\"",
"values": [
"415"
"418"
]
}
]
@ -1327,30 +1331,27 @@
{
"labelSelector": {
"matchLabels": {
"H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1"
"lx..w": "t-_.5.40w"
},
"matchExpressions": [
{
"key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g",
"operator": "NotIn",
"values": [
"VT3sn-0_.i__a.O2G_J"
]
"key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0",
"operator": "DoesNotExist"
}
]
},
"namespaces": [
"422"
"425"
],
"topologyKey": "423",
"topologyKey": "426",
"namespaceSelector": {
"matchLabels": {
"410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g": "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w"
"8V": "3sn-03"
},
"matchExpressions": [
{
"key": "r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT",
"operator": "DoesNotExist"
"key": "p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3",
"operator": "Exists"
}
]
}
@ -1358,33 +1359,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -2118597352,
"weight": -947725955,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt": "CRT.0z-oe.G79.3bU_._nV34G._--u..9"
"E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e"
},
"matchExpressions": [
{
"key": "n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9",
"operator": "NotIn",
"key": "3--_9QW2JkU27_.-4T-I.-..K.2",
"operator": "In",
"values": [
"f8k"
"6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8"
]
}
]
},
"namespaces": [
"436"
"439"
],
"topologyKey": "437",
"topologyKey": "440",
"namespaceSelector": {
"matchLabels": {
"s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp": "5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7"
"7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz"
},
"matchExpressions": [
{
"key": "27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y",
"key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6",
"operator": "DoesNotExist"
}
]
@ -1398,29 +1399,26 @@
{
"labelSelector": {
"matchLabels": {
"Y3o_V-w._-0d__7.81_-._-8": "9._._a-.N.__-_._.3l-_86u"
"uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z": ""
},
"matchExpressions": [
{
"key": "c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs",
"operator": "NotIn",
"values": [
"B.3R6-.7Bf8GA--__A7r.8U.V_p6c"
]
"key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1",
"operator": "Exists"
}
]
},
"namespaces": [
"450"
"453"
],
"topologyKey": "451",
"topologyKey": "454",
"namespaceSelector": {
"matchLabels": {
"x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51": "m06jVZu"
"d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9": "Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z"
},
"matchExpressions": [
{
"key": "N-._M5..-N_H_55..--E3_2D-1DW_o",
"key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT",
"operator": "Exists"
}
]
@ -1429,33 +1427,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 1943011795,
"weight": 1819321475,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz": "3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v"
"i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I": "i.U.-7"
},
"matchExpressions": [
{
"key": "x3___-..f5-6x-_-o_6O_If-5_-_U",
"operator": "DoesNotExist"
"key": "62o787-7lk2/L.--4P--_q-.9",
"operator": "Exists"
}
]
},
"namespaces": [
"464"
"467"
],
"topologyKey": "465",
"topologyKey": "468",
"namespaceSelector": {
"matchLabels": {
"P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h": "4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP"
"j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N": "U_.-_-I-P._..leR--e"
},
"matchExpressions": [
{
"key": "aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7",
"operator": "NotIn",
"key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8",
"operator": "In",
"values": [
"9-.66hcB.rTt7bm9I.-..q-n"
"x3___-..f5-6x-_-o_6O_If-5_-_.F"
]
}
]
@ -1465,64 +1463,67 @@
]
}
},
"schedulerName": "472",
"schedulerName": "475",
"tolerations": [
{
"key": "473",
"operator": "杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]",
"value": "474",
"effect": "ɮ-nʣž吞Ƞ唄®窂爪",
"tolerationSeconds": -5154627301352060136
"key": "476",
"operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
"value": "477",
"effect": "慰x:",
"tolerationSeconds": 3362400521064014157
}
],
"hostAliases": [
{
"ip": "475",
"ip": "478",
"hostnames": [
"476"
"479"
]
}
],
"priorityClassName": "477",
"priority": -860768401,
"priorityClassName": "480",
"priority": 743241089,
"dnsConfig": {
"nameservers": [
"478"
"481"
],
"searches": [
"479"
"482"
],
"options": [
{
"name": "480",
"value": "481"
"name": "483",
"value": "484"
}
]
},
"readinessGates": [
{
"conditionType": "@.ȇʟ"
"conditionType": "0yVA嬂刲;牆詒ĸąs"
}
],
"runtimeClassName": "482",
"runtimeClassName": "485",
"enableServiceLinks": false,
"preemptionPolicy": "",
"preemptionPolicy": "Iƭij韺ʧ\u003e",
"overhead": {
"": "359"
"D傕Ɠ栊闔虝巒瀦ŕ": "124"
},
"topologySpreadConstraints": [
{
"maxSkew": -2013945465,
"topologyKey": "483",
"whenUnsatisfiable": "½ǩ ",
"maxSkew": -174245111,
"topologyKey": "486",
"whenUnsatisfiable": "",
"labelSelector": {
"matchLabels": {
"9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG": "4n"
"7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
},
"matchExpressions": [
{
"key": "6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q",
"operator": "Exists"
"key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
"operator": "In",
"values": [
"zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
]
}
]
}
@ -1532,32 +1533,32 @@
}
},
"updateStrategy": {
"type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ",
"type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
"minReadySeconds": 1467929320,
"revisionHistoryLimit": -1098193709
"minReadySeconds": 1559072561,
"revisionHistoryLimit": -629510776
},
"status": {
"currentNumberScheduled": 2090664533,
"numberMisscheduled": -1371816595,
"desiredNumberScheduled": 1219820375,
"numberReady": -788475912,
"observedGeneration": 6637463221525448952,
"updatedNumberScheduled": -1684048223,
"numberAvailable": 16994744,
"numberUnavailable": 340429479,
"collisionCount": 1177227691,
"currentNumberScheduled": -69450448,
"numberMisscheduled": -212409426,
"desiredNumberScheduled": 17761427,
"numberReady": 1329525670,
"observedGeneration": -721999650192865404,
"updatedNumberScheduled": 1162680985,
"numberAvailable": 171558604,
"numberUnavailable": -161888815,
"collisionCount": 1714841371,
"conditions": [
{
"type": "ôD齆O#ȞM\u003c²彾Ǟʈɐ",
"status": "盧ŶbșʬÇ[輚趞",
"lastTransitionTime": "2205-11-05T22:21:51Z",
"reason": "490",
"message": "491"
"type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ",
"status": "",
"lastTransitionTime": "2124-10-20T09:17:54Z",
"reason": "493",
"message": "494"
}
]
}

View File

@ -31,8 +31,8 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1467929320
revisionHistoryLimit: -1098193709
minReadySeconds: 1559072561
revisionHistoryLimit: -629510776
selector:
matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@ -73,112 +73,108 @@ spec:
selfLink: "29"
uid: TʡȂŏ{sǡƟ
spec:
activeDeadlineSeconds: -1284119655860768065
activeDeadlineSeconds: -8925090445844634303
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "412"
operator: Mɮ6)
- key: "415"
operator: 襉{遠
values:
- "413"
- "416"
matchFields:
- key: "414"
operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾
- key: "417"
operator: 诰ðÈ娒Ġ滔xvŗÑ"
values:
- "415"
weight: -1280563546
- "418"
weight: 1690937616
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "408"
operator: UǷ坒
- key: "411"
operator: Üɉ愂,wa纝佯fɞ
values:
- "409"
- "412"
matchFields:
- key: "410"
operator: ""
- key: "413"
operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣;
values:
- "411"
- "414"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9
operator: NotIn
- key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: In
values:
- f8k
- 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels:
il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt: CRT.0z-oe.G79.3bU_._nV34G._--u..9
E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e
namespaceSelector:
matchExpressions:
- key: 27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y
- key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6
operator: DoesNotExist
matchLabels:
s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp: 5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7
7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz
namespaces:
- "436"
topologyKey: "437"
weight: -2118597352
- "439"
topologyKey: "440"
weight: -947725955
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g
operator: NotIn
values:
- VT3sn-0_.i__a.O2G_J
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaceSelector:
matchExpressions:
- key: r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT
- key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0
operator: DoesNotExist
matchLabels:
410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g: 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
lx..w: t-_.5.40w
namespaceSelector:
matchExpressions:
- key: p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3
operator: Exists
matchLabels:
8V: 3sn-03
namespaces:
- "422"
topologyKey: "423"
- "425"
topologyKey: "426"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: x3___-..f5-6x-_-o_6O_If-5_-_U
operator: DoesNotExist
- key: 62o787-7lk2/L.--4P--_q-.9
operator: Exists
matchLabels:
j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz: 3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v
i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I: i.U.-7
namespaceSelector:
matchExpressions:
- key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7
operator: NotIn
- key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8
operator: In
values:
- 9-.66hcB.rTt7bm9I.-..q-n
- x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels:
P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h: 4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP
j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N: U_.-_-I-P._..leR--e
namespaces:
- "464"
topologyKey: "465"
weight: 1943011795
- "467"
topologyKey: "468"
weight: 1819321475
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs
operator: NotIn
values:
- B.3R6-.7Bf8GA--__A7r.8U.V_p6c
matchLabels:
Y3o_V-w._-0d__7.81_-._-8: 9._._a-.N.__-_._.3l-_86u
namespaceSelector:
matchExpressions:
- key: N-._M5..-N_H_55..--E3_2D-1DW_o
- key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1
operator: Exists
matchLabels:
x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51: m06jVZu
uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z: ""
namespaceSelector:
matchExpressions:
- key: 5__-_._.3l-_86_u2-7_._qN__A_f_-BT
operator: Exists
matchLabels:
d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9: Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z
namespaces:
- "450"
topologyKey: "451"
- "453"
topologyKey: "454"
automountServiceAccountToken: true
containers:
- args:
@ -307,11 +303,11 @@ spec:
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
procMount: cx赮ǒđ>*劶?j
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
runAsGroup: -6292316479661489180
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: -1286199491017539507
seLinuxOptions:
level: "316"
role: "314"
@ -319,10 +315,11 @@ spec:
user: "313"
seccompProfile:
localhostProfile: "320"
type: ǒđ>*劶?jĎĭ
type: ĭ¥#ƱÁR
windowsOptions:
gmsaCredentialSpec: "318"
gmsaCredentialSpecName: "317"
hostProcess: true
runAsUserName: "319"
startupProbe:
exec:
@ -345,8 +342,10 @@ spec:
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
stdin: true
terminationMessagePath: "312"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
tty: true
volumeDevices:
- devicePath: "275"
name: "274"
@ -360,13 +359,13 @@ spec:
workingDir: "254"
dnsConfig:
nameservers:
- "478"
- "481"
options:
- name: "480"
value: "481"
- name: "483"
value: "484"
searches:
- "479"
dnsPolicy: 錏嬮#ʐ
- "482"
dnsPolicy: q沷¾!
enableServiceLinks: false
ephemeralContainers:
- args:
@ -380,13 +379,13 @@ spec:
configMapKeyRef:
key: "338"
name: "337"
optional: true
optional: false
fieldRef:
apiVersion: "333"
fieldPath: "334"
resourceFieldRef:
containerName: "335"
divisor: "684"
divisor: "473"
resource: "336"
secretKeyRef:
key: "340"
@ -399,165 +398,164 @@ spec:
prefix: "328"
secretRef:
name: "330"
optional: true
optional: false
image: "322"
imagePullPolicy: ɧeʫį淓¯
imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj
lifecycle:
postStart:
exec:
command:
- "367"
- "368"
httpGet:
host: "369"
host: "370"
httpHeaders:
- name: "370"
value: "371"
path: "368"
port: -1460652193
scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ?
- name: "371"
value: "372"
path: "369"
port: 1176168596
scheme: 轪d覉;Ĕ
tcpSocket:
host: "373"
port: "372"
host: "374"
port: "373"
preStop:
exec:
command:
- "374"
- "375"
httpGet:
host: "376"
host: "378"
httpHeaders:
- name: "377"
value: "378"
path: "375"
port: 71524977
scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷
- name: "379"
value: "380"
path: "376"
port: "377"
scheme: ʦŊĊ娮
tcpSocket:
host: "379"
port: -565041796
host: "382"
port: "381"
livenessProbe:
exec:
command:
- "347"
failureThreshold: 1587036035
failureThreshold: 1566765016
httpGet:
host: "349"
httpHeaders:
- name: "350"
value: "351"
path: "348"
port: -121675052
scheme: W#ļǹʅŚO虀^
initialDelaySeconds: -1959891996
periodSeconds: 1475033091
successThreshold: 1782790310
port: 1034835933
scheme: O虀^背遻堣灭ƴɦ燻踸陴
initialDelaySeconds: 650448405
periodSeconds: -168773629
successThreshold: 2068592383
tcpSocket:
host: "353"
port: "352"
terminationGracePeriodSeconds: 7560036535013464461
timeoutSeconds: -1442230895
host: "352"
port: -1744546613
terminationGracePeriodSeconds: -1112599546012453731
timeoutSeconds: 1943254244
name: "321"
ports:
- containerPort: -651405950
- containerPort: -1371690155
hostIP: "327"
hostPort: 1805682547
hostPort: 2032588794
name: "326"
protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07
protocol: G昧牱fsǕT衩kƒK07曳wœj堑
readinessProbe:
exec:
command:
- "354"
failureThreshold: 408029351
- "353"
failureThreshold: 902204699
httpGet:
host: "356"
httpHeaders:
- name: "357"
value: "358"
path: "355"
port: -1744546613
scheme: ʓɻŊ
initialDelaySeconds: 1586122127
periodSeconds: 781203691
successThreshold: -216440055
tcpSocket:
host: "359"
port: -259047269
terminationGracePeriodSeconds: 5450105809027610853
timeoutSeconds: -1813456856
resources:
limits:
蠨磼O_h盌3+Œ9两@8Byß: "111"
requests:
ɃŒ: "451"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- ƛ忀z委>,趐V曡88 u怞荊ù
drop:
- 8緔Tj§E蓋Cȗä2 ɲ±
privileged: true
procMount: Ş襵樞úʥ銀
readOnlyRootFilesystem: true
runAsGroup: -7297536356638221066
runAsNonRoot: false
runAsUser: -4564863616644509171
seLinuxOptions:
level: "384"
role: "382"
type: "383"
user: "381"
seccompProfile:
localhostProfile: "388"
type: ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧
windowsOptions:
gmsaCredentialSpec: "386"
gmsaCredentialSpecName: "385"
runAsUserName: "387"
startupProbe:
exec:
command:
- "360"
failureThreshold: 902204699
httpGet:
host: "362"
httpHeaders:
- name: "363"
value: "364"
path: "361"
port: -5241849
scheme: '}颉hȱɷȰW'
path: "354"
port: "355"
scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
initialDelaySeconds: 636493142
periodSeconds: 420595064
successThreshold: 1195176401
tcpSocket:
host: "366"
port: "365"
host: "360"
port: "359"
terminationGracePeriodSeconds: 9196919020604133323
timeoutSeconds: -192358697
resources:
limits:
盌3+Œ: "752"
requests:
)Zq=歍þ: "759"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 蓋Cȗä2 ɲ±m嵘厶sȰÖ
drop:
- ÆɰŞ襵
privileged: true
procMount: 阫Ƈʥ椹ý
readOnlyRootFilesystem: false
runAsGroup: -1624551961163368198
runAsNonRoot: false
runAsUser: -5519662252699559890
seLinuxOptions:
level: "387"
role: "385"
type: "386"
user: "384"
seccompProfile:
localhostProfile: "391"
type: ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷
windowsOptions:
gmsaCredentialSpec: "389"
gmsaCredentialSpecName: "388"
hostProcess: false
runAsUserName: "390"
startupProbe:
exec:
command:
- "361"
failureThreshold: -1222486879
httpGet:
host: "364"
httpHeaders:
- name: "365"
value: "366"
path: "362"
port: "363"
scheme: y#t(ȗŜŲ&
initialDelaySeconds: 156368232
periodSeconds: 44612600
successThreshold: -688929182
tcpSocket:
host: "367"
port: 1387858949
terminationGracePeriodSeconds: 6543873941346781273
timeoutSeconds: -815239246
stdin: true
targetContainerName: "389"
terminationMessagePath: "380"
terminationMessagePolicy: Ƭ婦d
tty: true
stdinOnce: true
targetContainerName: "392"
terminationMessagePath: "383"
terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ
volumeDevices:
- devicePath: "346"
name: "345"
volumeMounts:
- mountPath: "342"
mountPropagation: 葰賦
mountPropagation: 讅缔m葰賦迾娙ƴ4虵p
name: "341"
readOnly: true
subPath: "343"
subPathExpr: "344"
workingDir: "325"
hostAliases:
- hostnames:
- "476"
ip: "475"
- "479"
ip: "478"
hostIPC: true
hostPID: true
hostname: "406"
hostname: "409"
imagePullSecrets:
- name: "405"
- name: "408"
initContainers:
- args:
- "181"
@ -685,11 +683,11 @@ spec:
drop:
- H鯂²静ƲǦŐnj汰8ŕİi騎C"6
privileged: false
procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: false
runAsGroup: 6901713258562004024
runAsNonRoot: true
runAsUser: 9148233193771851687
procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: true
runAsGroup: 4041264710404335706
runAsNonRoot: false
runAsUser: -7299434051955863644
seLinuxOptions:
level: "245"
role: "243"
@ -701,6 +699,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "247"
gmsaCredentialSpecName: "246"
hostProcess: true
runAsUserName: "248"
startupProbe:
exec:
@ -735,64 +734,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "394"
nodeName: "397"
nodeSelector:
"390": "391"
"393": "394"
overhead:
"": "359"
preemptionPolicy: ""
priority: -860768401
priorityClassName: "477"
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "480"
readinessGates:
- conditionType: '@.ȇʟ'
restartPolicy: 鹚蝉茲ʛ饊
runtimeClassName: "482"
schedulerName: "472"
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
runtimeClassName: "485"
schedulerName: "475"
securityContext:
fsGroup: -1867959832193971598
fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!
runAsGroup: 6465579957265382985
fsGroup: 3564097949592109139
fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6
runAsGroup: 2960114664726223450
runAsNonRoot: false
runAsUser: -4904722847506013622
runAsUser: -3496040522639830925
seLinuxOptions:
level: "398"
role: "396"
type: "397"
user: "395"
level: "401"
role: "399"
type: "400"
user: "398"
seccompProfile:
localhostProfile: "404"
type: '`翾''ųŎ群E牬庘颮6(|ǖû'
localhostProfile: "407"
type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ
supplementalGroups:
- -981432507446869083
- 2402603282459663167
sysctls:
- name: "402"
value: "403"
- name: "405"
value: "406"
windowsOptions:
gmsaCredentialSpec: "400"
gmsaCredentialSpecName: "399"
runAsUserName: "401"
serviceAccount: "393"
serviceAccountName: "392"
gmsaCredentialSpec: "403"
gmsaCredentialSpecName: "402"
hostProcess: true
runAsUserName: "404"
serviceAccount: "396"
serviceAccountName: "395"
setHostnameAsFQDN: true
shareProcessNamespace: false
subdomain: "407"
terminationGracePeriodSeconds: 1736985756995615785
shareProcessNamespace: true
subdomain: "410"
terminationGracePeriodSeconds: 3296766428578159624
tolerations:
- effect: ɮ-nʣž吞Ƞ唄®窂爪
key: "473"
operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]
tolerationSeconds: -5154627301352060136
value: "474"
- effect: '慰x:'
key: "476"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "477"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q
operator: Exists
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
matchLabels:
9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG: 4n
maxSkew: -2013945465
topologyKey: "483"
whenUnsatisfiable: '½ǩ '
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "486"
whenUnsatisfiable: ""
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1049,20 +1051,20 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
status:
collisionCount: 1177227691
collisionCount: 1714841371
conditions:
- lastTransitionTime: "2205-11-05T22:21:51Z"
message: "491"
reason: "490"
status: 盧ŶbșʬÇ[輚趞
type: ôD齆O#ȞM<²彾Ǟʈɐ
currentNumberScheduled: 2090664533
desiredNumberScheduled: 1219820375
numberAvailable: 16994744
numberMisscheduled: -1371816595
numberReady: -788475912
numberUnavailable: 340429479
observedGeneration: 6637463221525448952
updatedNumberScheduled: -1684048223
- lastTransitionTime: "2124-10-20T09:17:54Z"
message: "494"
reason: "493"
status: ""
type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ
currentNumberScheduled: -69450448
desiredNumberScheduled: 17761427
numberAvailable: 171558604
numberMisscheduled: -212409426
numberReady: 1329525670
numberUnavailable: -161888815
observedGeneration: -721999650192865404
updatedNumberScheduled: 1162680985

File diff suppressed because it is too large Load Diff

View File

@ -31,10 +31,11 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1559072561
progressDeadlineSeconds: -212409426
minReadySeconds: -212999359
paused: true
progressDeadlineSeconds: 1499408621
replicas: 896585016
revisionHistoryLimit: -629510776
revisionHistoryLimit: -866496758
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@ -45,7 +46,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
type: 卍睊
template:
metadata:
annotations:
@ -78,114 +79,108 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
activeDeadlineSeconds: -5891364351877125204
activeDeadlineSeconds: 5204116807884683873
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "410"
operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW
values:
- "411"
matchFields:
- key: "412"
operator: 顓闉ȦT
values:
- "413"
weight: 1762917570
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "406"
operator: ""
operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃
values:
- "407"
matchFields:
- key: "408"
operator: ɦ燻踸陴Sĕ濦ʓɻ
operator: ƒK07曳w
values:
- "409"
weight: 1805682547
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "402"
operator: ""
values:
- "403"
matchFields:
- key: "404"
operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ
values:
- "405"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
operator: In
values:
- H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr
operator: DoesNotExist
matchLabels:
z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c
namespaceSelector:
matchExpressions:
- key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
operator: In
values:
- 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
- key: C-_20
operator: Exists
matchLabels:
vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t
namespaces:
- "434"
topologyKey: "435"
weight: 888976270
- "430"
topologyKey: "431"
weight: -450654683
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33
operator: NotIn
values:
- 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
- key: 67F3p2_-_AmD-.0P
operator: DoesNotExist
matchLabels:
8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5
namespaceSelector:
matchExpressions:
- key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj
operator: Exists
matchLabels:
4eq5: ""
6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r
namespaces:
- "420"
topologyKey: "421"
- "416"
topologyKey: "417"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 6W74-R_Z_Tz.a3_Ho
operator: Exists
- key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
namespaceSelector:
matchExpressions:
- key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
operator: In
values:
- x3___-..f5-6x-_-o_6O_If-5_-_.F
- key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
operator: DoesNotExist
matchLabels:
h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
namespaces:
- "462"
topologyKey: "463"
weight: -1668452490
- "458"
topologyKey: "459"
weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
operator: Exists
matchLabels:
5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
namespaceSelector:
matchExpressions:
- key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
- key: 4b699/B9n.2
operator: In
values:
- V._qN__A_f_-B3_U__L.KH6K.RwsfI2
- MM7-.e.x
matchLabels:
u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q
namespaceSelector:
matchExpressions:
- key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
operator: DoesNotExist
matchLabels:
B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
namespaces:
- "448"
topologyKey: "449"
- "444"
topologyKey: "445"
automountServiceAccountToken: true
containers:
- args:
@ -199,372 +194,372 @@ spec:
configMapKeyRef:
key: "262"
name: "261"
optional: true
optional: false
fieldRef:
apiVersion: "257"
fieldPath: "258"
resourceFieldRef:
containerName: "259"
divisor: "185"
divisor: "271"
resource: "260"
secretKeyRef:
key: "264"
name: "263"
optional: false
optional: true
envFrom:
- configMapRef:
name: "253"
optional: false
optional: true
prefix: "252"
secretRef:
name: "254"
optional: false
image: "246"
imagePullPolicy: i绝5哇芆斩
imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle:
postStart:
exec:
command:
- "292"
- "291"
httpGet:
host: "295"
host: "293"
httpHeaders:
- name: "296"
value: "297"
path: "293"
port: "294"
scheme: 鯂²静
- name: "294"
value: "295"
path: "292"
port: -1021949447
scheme: B芭
tcpSocket:
host: "298"
port: -402384013
host: "297"
port: "296"
preStop:
exec:
command:
- "299"
- "298"
httpGet:
host: "302"
host: "301"
httpHeaders:
- name: "303"
value: "304"
path: "300"
port: "301"
scheme: 鏻砅邻爥
- name: "302"
value: "303"
path: "299"
port: "300"
scheme: yƕ丆録²Ŏ)
tcpSocket:
host: "305"
port: -305362540
host: "304"
port: 507384491
livenessProbe:
exec:
command:
- "271"
failureThreshold: 1993268896
failureThreshold: 1156888068
httpGet:
host: "274"
host: "273"
httpHeaders:
- name: "275"
value: "276"
- name: "274"
value: "275"
path: "272"
port: "273"
scheme:
initialDelaySeconds: 711020087
periodSeconds: -1965247100
successThreshold: 218453478
port: 1907998540
scheme: ',ŕ'
initialDelaySeconds: -253326525
periodSeconds: 887319241
successThreshold: 1559618829
tcpSocket:
host: "277"
port: 1315054653
terminationGracePeriodSeconds: -9140155223242250138
timeoutSeconds: 1103049140
port: "276"
terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 567263590
name: "245"
ports:
- containerPort: -370386363
- containerPort: 1714588921
hostIP: "251"
hostPort: -1462219068
hostPort: -370386363
name: "250"
protocol: wƯ貾坢'跩aŕ翑0展}
protocol: Ư貾
readinessProbe:
exec:
command:
- "278"
failureThreshold: 1456461851
failureThreshold: 422133388
httpGet:
host: "280"
httpHeaders:
- name: "281"
value: "282"
path: "279"
port: -1315487077
scheme: ğ_
initialDelaySeconds: 1272940694
periodSeconds: 422133388
successThreshold: 1952458416
port: 1315054653
scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1905181464
periodSeconds: 1272940694
successThreshold: -385597677
tcpSocket:
host: "284"
port: "283"
terminationGracePeriodSeconds: -6078441689118311403
timeoutSeconds: -385597677
terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -1730959016
resources:
limits:
鬶l獕;跣Hǝcw: "242"
庰%皧V: "116"
requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637"
"": "289"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ""
- p鋄5弢ȹ均i绝5
drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
privileged: false
procMount: W賁Ěɭɪǹ0
- ""
privileged: true
procMount: ş
readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404
runAsGroup: 7023916302283403328
runAsNonRoot: false
runAsUser: -7936947433725476327
runAsUser: -3385088507022597813
seLinuxOptions:
level: "310"
role: "308"
type: "309"
user: "307"
level: "309"
role: "307"
type: "308"
user: "306"
seccompProfile:
localhostProfile: "314"
type: ',ƷƣMț譎懚XW疪鑳'
localhostProfile: "313"
type: 諔迮ƙ
windowsOptions:
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
runAsUserName: "313"
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
hostProcess: false
runAsUserName: "312"
startupProbe:
exec:
command:
- "285"
failureThreshold: 620822482
failureThreshold: 353361793
httpGet:
host: "287"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
port: 1013673874
scheme: ə娯Ȱ囌{
initialDelaySeconds: -205176266
periodSeconds: -116469891
successThreshold: 311083651
tcpSocket:
host: "291"
port: "290"
terminationGracePeriodSeconds: -2203905759223555727
timeoutSeconds: 386804041
stdin: true
host: "290"
port: -1829146875
terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 490479437
stdinOnce: true
terminationMessagePath: "306"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
tty: true
terminationMessagePath: "305"
terminationMessagePolicy: "3"
volumeDevices:
- devicePath: "270"
name: "269"
volumeMounts:
- mountPath: "266"
mountPropagation: ""
mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "265"
readOnly: true
subPath: "267"
subPathExpr: "268"
workingDir: "249"
dnsConfig:
nameservers:
- "476"
- "472"
options:
- name: "478"
value: "479"
- name: "474"
value: "475"
searches:
- "477"
dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s
enableServiceLinks: false
- "473"
dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b
enableServiceLinks: true
ephemeralContainers:
- args:
- "318"
command:
- "317"
command:
- "316"
env:
- name: "325"
value: "326"
- name: "324"
value: "325"
valueFrom:
configMapKeyRef:
key: "332"
name: "331"
optional: false
key: "331"
name: "330"
optional: true
fieldRef:
apiVersion: "327"
fieldPath: "328"
apiVersion: "326"
fieldPath: "327"
resourceFieldRef:
containerName: "329"
divisor: "360"
resource: "330"
containerName: "328"
divisor: "66"
resource: "329"
secretKeyRef:
key: "334"
name: "333"
key: "333"
name: "332"
optional: false
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
prefix: "322"
secretRef:
name: "324"
optional: false
image: "316"
imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
image: "315"
imagePullPolicy: 阠$嬏
lifecycle:
postStart:
exec:
command:
- "363"
- "360"
httpGet:
host: "365"
host: "362"
httpHeaders:
- name: "366"
value: "367"
path: "364"
port: 466267060
scheme: wy¶熀ďJZ漤ŗ坟Ů<y鯶縆ł
- name: "363"
value: "364"
path: "361"
port: 890223061
scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ
tcpSocket:
host: "369"
port: "368"
host: "366"
port: "365"
preStop:
exec:
command:
- "370"
- "367"
httpGet:
host: "373"
host: "369"
httpHeaders:
- name: "374"
value: "375"
path: "371"
port: "372"
scheme: Ē3Nh×DJɶ羹ƞʓ%ʝ
- name: "370"
value: "371"
path: "368"
port: 797714018
scheme: vÄÚ×
tcpSocket:
host: "377"
port: "376"
host: "373"
port: "372"
livenessProbe:
exec:
command:
- "341"
failureThreshold: 240657401
- "340"
failureThreshold: -1508967300
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "342"
port: -1842062977
scheme: 輔3璾ėȜv1b繐汚磉反-n覦
initialDelaySeconds: -1161185537
periodSeconds: 1611386356
successThreshold: 821341581
path: "341"
port: "342"
initialDelaySeconds: -1843539391
periodSeconds: -1758095966
successThreshold: 1627026804
tcpSocket:
host: "347"
port: "346"
terminationGracePeriodSeconds: 7806703309589874498
timeoutSeconds: 1928937303
name: "315"
host: "346"
port: -819013491
terminationGracePeriodSeconds: -4548040070833300341
timeoutSeconds: 1238925115
name: "314"
ports:
- containerPort: 455919108
hostIP: "321"
hostPort: 217308913
name: "320"
protocol: 崍h趭(娕u
- containerPort: 1137109081
hostIP: "320"
hostPort: -488127393
name: "319"
protocol: 丽饾| 鞤ɱď
readinessProbe:
exec:
command:
- "348"
failureThreshold: 1605974497
- "347"
failureThreshold: -47594442
httpGet:
host: "351"
host: "349"
httpHeaders:
- name: "352"
value: "353"
path: "349"
port: "350"
scheme: Ik(dŊiɢzĮ蛋I
initialDelaySeconds: 571693619
periodSeconds: -2028546276
successThreshold: -2128305760
- name: "350"
value: "351"
path: "348"
port: -186532794
scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė
initialDelaySeconds: -751455207
periodSeconds: 646133945
successThreshold: -506710067
tcpSocket:
host: "355"
port: "354"
terminationGracePeriodSeconds: 2002344837004307079
timeoutSeconds: 1643238856
host: "353"
port: "352"
terminationGracePeriodSeconds: -8866033802256420471
timeoutSeconds: -894026356
resources:
limits:
fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
ƣMț譎懚X: "93"
requests:
蕎': "62"
曣ŋayåe躒訙: "484"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃
- ¶熀ďJZ漤
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
- ""
privileged: true
procMount: 槃JŵǤ桒ɴ鉂WJ
readOnlyRootFilesystem: true
runAsGroup: -8721643037453811760
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: 5680561050872693436
seLinuxOptions:
level: "382"
role: "380"
type: "381"
user: "379"
level: "378"
role: "376"
type: "377"
user: "375"
seccompProfile:
localhostProfile: "386"
type: ǒđ>*劶?jĎĭ
localhostProfile: "382"
type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ
windowsOptions:
gmsaCredentialSpec: "384"
gmsaCredentialSpecName: "383"
runAsUserName: "385"
gmsaCredentialSpec: "380"
gmsaCredentialSpecName: "379"
hostProcess: false
runAsUserName: "381"
startupProbe:
exec:
command:
- "356"
failureThreshold: 1447314009
- "354"
failureThreshold: 1190831814
httpGet:
host: "359"
host: "356"
httpHeaders:
- name: "360"
value: "361"
path: "357"
port: "358"
scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂
initialDelaySeconds: 235623869
periodSeconds: -505848936
successThreshold: -1819021257
- name: "357"
value: "358"
path: "355"
port: -1789721862
scheme: 閈誹ʅ蕉ɼ
initialDelaySeconds: 1518001294
periodSeconds: -2068583194
successThreshold: -29073009
tcpSocket:
host: "362"
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
targetContainerName: "387"
terminationMessagePath: "378"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
host: "359"
port: 374862544
terminationGracePeriodSeconds: 7262727411813417219
timeoutSeconds: 1467189105
targetContainerName: "383"
terminationMessagePath: "374"
terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ
volumeDevices:
- devicePath: "340"
name: "339"
- devicePath: "339"
name: "338"
volumeMounts:
- mountPath: "336"
mountPropagation: Ǚ(
name: "335"
readOnly: true
subPath: "337"
subPathExpr: "338"
workingDir: "319"
- mountPath: "335"
mountPropagation: (娕uE增猍
name: "334"
subPath: "336"
subPathExpr: "337"
workingDir: "318"
hostAliases:
- hostnames:
- "474"
ip: "473"
- "470"
ip: "469"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "404"
hostname: "400"
imagePullSecrets:
- name: "403"
- name: "399"
initContainers:
- args:
- "181"
@ -692,11 +687,11 @@ spec:
drop:
- ʁ岼昕ĬÇ
privileged: true
procMount: Z鐫û咡W<敄lu
procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858
runAsNonRoot: true
runAsUser: -857934902638099053
runAsGroup: -6406791857291159870
runAsNonRoot: false
runAsUser: 161123823296532265
seLinuxOptions:
level: "240"
role: "238"
@ -704,10 +699,11 @@ spec:
user: "237"
seccompProfile:
localhostProfile: "244"
type: 榝$î.Ȏ蝪ʜ5遰
type: î.Ȏ蝪ʜ5遰=
windowsOptions:
gmsaCredentialSpec: "242"
gmsaCredentialSpecName: "241"
hostProcess: false
runAsUserName: "243"
startupProbe:
exec:
@ -730,6 +726,7 @@ spec:
port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096
stdin: true
stdinOnce: true
terminationMessagePath: "236"
terminationMessagePolicy: ĸ輦唊
@ -745,66 +742,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "392"
nodeName: "388"
nodeSelector:
"388": "389"
"384": "385"
overhead:
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "475"
炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
priority: -1756088332
priorityClassName: "471"
readinessGates:
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: ƱÁR»淹揀
runtimeClassName: "480"
schedulerName: "470"
- conditionType: '#sM網'
restartPolicy: ȏâ磠
runtimeClassName: "476"
schedulerName: "466"
securityContext:
fsGroup: 6713296993350540686
fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ
runAsGroup: -3587143030436465588
fsGroup: 2946116477552625615
fsGroupChangePolicy: $鬬$矐_敕
runAsGroup: -935274303703112577
runAsNonRoot: true
runAsUser: 4466809078783855686
runAsUser: -3072254610148392250
seLinuxOptions:
level: "396"
role: "394"
type: "395"
user: "393"
level: "392"
role: "390"
type: "391"
user: "389"
seccompProfile:
localhostProfile: "402"
type: m¨z鋎靀G¿əW#ļǹʅŚO虀^
localhostProfile: "398"
type: 嵞嬯t{Eɾ敹Ȯ-湷D谹
supplementalGroups:
- 4820130167691486230
- 5215323049148402377
sysctls:
- name: "400"
value: "401"
- name: "396"
value: "397"
windowsOptions:
gmsaCredentialSpec: "398"
gmsaCredentialSpecName: "397"
runAsUserName: "399"
serviceAccount: "391"
serviceAccountName: "390"
setHostnameAsFQDN: true
gmsaCredentialSpec: "394"
gmsaCredentialSpecName: "393"
hostProcess: false
runAsUserName: "395"
serviceAccount: "387"
serviceAccountName: "386"
setHostnameAsFQDN: false
shareProcessNamespace: false
subdomain: "405"
terminationGracePeriodSeconds: 2008726498083002362
subdomain: "401"
terminationGracePeriodSeconds: 5614430095732678823
tolerations:
- effect: '慰x:'
key: "471"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "472"
- effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸
key: "467"
operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ
tolerationSeconds: -3147305732428645642
value: "468"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- key: KTlO.__0PX
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
- V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "481"
whenUnsatisfiable: ""
47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
maxSkew: -447559705
topologyKey: "477"
whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1060,17 +1058,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: 171558604
collisionCount: -1889018254
availableReplicas: 1659111388
collisionCount: 16994744
conditions:
- lastTransitionTime: "2391-11-11T11:52:22Z"
lastUpdateTime: "2346-11-18T09:51:55Z"
message: "489"
reason: "488"
status: 氞唬蹵ɥeȿĦ`垨Džɞ堹ǖ*Oɑ
type: ?鳢.ǀŭ瘢颦
observedGeneration: -2967151415957453677
readyReplicas: 1162680985
replicas: 1329525670
unavailableReplicas: -161888815
updatedReplicas: -1169406076
- lastTransitionTime: "2196-06-26T01:09:43Z"
lastUpdateTime: "2294-09-29T07:15:12Z"
message: "485"
reason: "484"
status: 嘯龡班悦ʀ臺穔
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ
observedGeneration: 4061426462677728903
readyReplicas: -1813284990
replicas: 208086661
unavailableReplicas: -717288184
updatedReplicas: 1598926042

File diff suppressed because it is too large Load Diff

View File

@ -73,116 +73,112 @@ spec:
selfLink: "29"
uid: ʬ
spec:
activeDeadlineSeconds: 579099652389333099
activeDeadlineSeconds: 3305070661619041050
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "408"
operator: 霎ȃň
- key: "407"
operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values:
- "409"
- "408"
matchFields:
- key: "410"
operator: ʓ滨
- key: "409"
operator: '[y#t('
values:
- "411"
weight: -259047269
- "410"
weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "404"
operator: 灭ƴɦ燻踸陴Sĕ
- key: "403"
operator: ʓɻŊ0蚢鑸鶲Ãqb轫
values:
- "405"
- "404"
matchFields:
- key: "406"
operator: 筿ɾ
- key: "405"
operator: ' '
values:
- "407"
- "406"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: Q_--v-3-BzO5z80n_HtW
operator: NotIn
values:
- 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
- key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
operator: Exists
matchLabels:
8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2: PE..24-O._.v._9-cz.-Y6T4gz
1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
namespaceSelector:
matchExpressions:
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W
operator: In
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
- key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
operator: DoesNotExist
matchLabels:
? f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9
: P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA
Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
namespaces:
- "432"
topologyKey: "433"
weight: 2001693468
- "431"
topologyKey: "432"
weight: -234140
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 3QC1--L--v_Z--ZgC
operator: Exists
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels:
KA-._d._.Um.-__0: 5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I
rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaceSelector:
matchExpressions:
- key: 7Vz_6.Hz_V_.r_v_._X
operator: Exists
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
operator: DoesNotExist
matchLabels:
1rhm-5y--z-0/b17ca-_p-y.eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX
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:
- "418"
topologyKey: "419"
- "417"
topologyKey: "418"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 8v---a9j23/9
operator: In
values:
- y__y.9O.L-.m.3h
- key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
operator: DoesNotExist
matchLabels:
o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H: gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq
1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
namespaceSelector:
matchExpressions:
- key: 6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG
operator: Exists
- key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
operator: DoesNotExist
matchLabels:
VM5..-N_H_55..--E3_2D-1DW__o_8: kzB7U_.Q.45cy-.._K
? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
: I-._g_.._-hKc.OB_F_--.._m_-9
namespaces:
- "460"
topologyKey: "461"
weight: 1920802622
- "459"
topologyKey: "460"
weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: T
operator: NotIn
values:
- ""
matchLabels:
4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C
namespaceSelector:
matchExpressions:
- key: vSW_4-__h
- key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
operator: In
values:
- m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
- u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
matchLabels:
T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ
n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
namespaceSelector:
matchExpressions:
- key: N7.81_-._-_8_.._._a9
operator: In
values:
- vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
matchLabels:
m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
namespaces:
- "446"
topologyKey: "447"
automountServiceAccountToken: true
- "445"
topologyKey: "446"
automountServiceAccountToken: false
containers:
- args:
- "249"
@ -201,7 +197,7 @@ spec:
fieldPath: "259"
resourceFieldRef:
containerName: "260"
divisor: "9"
divisor: "861"
resource: "261"
secretKeyRef:
key: "265"
@ -214,196 +210,197 @@ spec:
prefix: "253"
secretRef:
name: "255"
optional: true
optional: false
image: "247"
imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭
imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭
lifecycle:
postStart:
exec:
command:
- "291"
- "293"
httpGet:
host: "294"
host: "295"
httpHeaders:
- name: "295"
value: "296"
path: "292"
port: "293"
scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
- name: "296"
value: "297"
path: "294"
port: -1699531929
scheme: Z涬P­蜷ɔ幩šeS
tcpSocket:
host: "297"
port: 1167615307
host: "298"
port: 155090390
preStop:
exec:
command:
- "298"
- "299"
httpGet:
host: "300"
host: "302"
httpHeaders:
- name: "301"
value: "302"
path: "299"
port: -115833863
scheme: ì
- name: "303"
value: "304"
path: "300"
port: "301"
tcpSocket:
host: "304"
port: "303"
host: "305"
port: -727263154
livenessProbe:
exec:
command:
- "272"
failureThreshold: -1129218498
failureThreshold: 472742933
httpGet:
host: "274"
host: "275"
httpHeaders:
- name: "275"
value: "276"
- name: "276"
value: "277"
path: "273"
port: -1468297794
scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ
initialDelaySeconds: 1308698792
periodSeconds: -934378634
successThreshold: -1453143878
port: "274"
scheme: 冓鍓贯
initialDelaySeconds: 1290950685
periodSeconds: 1058960779
successThreshold: -2133441986
tcpSocket:
host: "278"
port: "277"
terminationGracePeriodSeconds: 2471155705902100229
timeoutSeconds: 1401790459
host: "279"
port: "278"
terminationGracePeriodSeconds: 217739466937954194
timeoutSeconds: 12533543
name: "246"
ports:
- containerPort: -1784617397
- containerPort: -614161319
hostIP: "252"
hostPort: 465972736
hostPort: 59244165
name: "251"
protocol: Ƭƶ氩Ȩ<6
protocol: Ȩ<6鄰簳°Ļǟi&
readinessProbe:
exec:
command:
- "279"
failureThreshold: 323903711
- "280"
failureThreshold: 1843491416
httpGet:
host: "281"
host: "282"
httpHeaders:
- name: "282"
value: "283"
path: "280"
port: -614098868
scheme: ȗÔÂɘɢ
initialDelaySeconds: -942399354
periodSeconds: -1803854120
successThreshold: -1412915219
- name: "283"
value: "284"
path: "281"
port: 1401790459
scheme: ǵɐ鰥Z
initialDelaySeconds: -614098868
periodSeconds: 846286700
successThreshold: 1080545253
tcpSocket:
host: "284"
port: 802134138
terminationGracePeriodSeconds: -9192251189672401053
timeoutSeconds: 1264624019
host: "285"
port: -1103045151
terminationGracePeriodSeconds: -5175286970144973961
timeoutSeconds: 234253676
resources:
limits:
lNKƙ順\E¦队偯J僳徥淳: "93"
¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178"
requests:
媀瓄&翜舞拉Œɥ颶妧Ö闊: "472"
Ö闊 鰔澝qV: "752"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ņ
drop:
- )DŽ髐njʉBn(fǂ
drop:
- 曣ŋayåe躒訙
privileged: false
procMount: Ǫʓ)ǂť嗆u
readOnlyRootFilesystem: true
runAsGroup: -495558749504439559
runAsNonRoot: false
runAsUser: -6717020695319852049
procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
readOnlyRootFilesystem: false
runAsGroup: 6245571390016329382
runAsNonRoot: true
runAsUser: 1083662227773909466
seLinuxOptions:
level: "309"
role: "307"
type: "308"
user: "306"
level: "310"
role: "308"
type: "309"
user: "307"
seccompProfile:
localhostProfile: "313"
type: 晲T[irȎ3Ĕ\
localhostProfile: "314"
type: '|蕎''佉賞ǧ'
windowsOptions:
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
runAsUserName: "312"
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
hostProcess: true
runAsUserName: "313"
startupProbe:
exec:
command:
- "285"
failureThreshold: 1658749995
- "286"
failureThreshold: -793616601
httpGet:
host: "287"
host: "289"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: -992558278
scheme: 鯂²静
initialDelaySeconds: -181601395
periodSeconds: 1851229369
successThreshold: -560238386
- name: "290"
value: "291"
path: "287"
port: "288"
scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj
initialDelaySeconds: 1658749995
periodSeconds: 809683205
successThreshold: -1615316902
tcpSocket:
host: "290"
port: -402384013
terminationGracePeriodSeconds: -4030490994049395944
timeoutSeconds: -617381112
terminationMessagePath: "305"
terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
tty: true
host: "292"
port: -560238386
terminationGracePeriodSeconds: -2242897509815578930
timeoutSeconds: -938421813
stdin: true
terminationMessagePath: "306"
terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4
volumeDevices:
- devicePath: "271"
name: "270"
volumeMounts:
- mountPath: "267"
mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃
mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "266"
readOnly: true
subPath: "268"
subPathExpr: "269"
workingDir: "250"
dnsConfig:
nameservers:
- "474"
- "473"
options:
- name: "476"
value: "477"
- name: "475"
value: "476"
searches:
- "475"
dnsPolicy: '''蠨磼O_h盌3+Œ9两@8'
- "474"
dnsPolicy: +Œ9两
enableServiceLinks: false
ephemeralContainers:
- args:
- "317"
- "318"
command:
- "316"
- "317"
env:
- name: "324"
value: "325"
- name: "325"
value: "326"
valueFrom:
configMapKeyRef:
key: "331"
name: "330"
key: "332"
name: "331"
optional: true
fieldRef:
apiVersion: "326"
fieldPath: "327"
apiVersion: "327"
fieldPath: "328"
resourceFieldRef:
containerName: "328"
divisor: "69"
resource: "329"
containerName: "329"
divisor: "992"
resource: "330"
secretKeyRef:
key: "333"
name: "332"
optional: false
key: "334"
name: "333"
optional: true
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
image: "315"
optional: true
prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: ǰ詀ǿ忀oɎƺL
lifecycle:
postStart:
@ -411,85 +408,85 @@ spec:
command:
- "361"
httpGet:
host: "364"
host: "363"
httpHeaders:
- name: "365"
value: "366"
- name: "364"
value: "365"
path: "362"
port: "363"
scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$#
port: 1445923603
scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q
tcpSocket:
host: "368"
port: "367"
host: "367"
port: "366"
preStop:
exec:
command:
- "369"
- "368"
httpGet:
host: "371"
httpHeaders:
- name: "372"
value: "373"
path: "370"
port: 1791758702
scheme: tl敷斢杧ż鯀
path: "369"
port: "370"
scheme: 杧ż鯀1'
tcpSocket:
host: "375"
port: "374"
host: "374"
port: 1297979953
livenessProbe:
exec:
command:
- "340"
failureThreshold: -36573584
- "341"
failureThreshold: 2046765799
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "341"
port: "342"
scheme: ȥ}礤铟怖ý萜Ǖ
initialDelaySeconds: -1922458514
periodSeconds: 692511776
successThreshold: -1231653807
path: "342"
port: 1529027685
scheme: żLj捲攻xƂ9阠$嬏wy¶熀
initialDelaySeconds: -2106399359
periodSeconds: -1038975198
successThreshold: 1821835340
tcpSocket:
host: "346"
port: -1088996269
terminationGracePeriodSeconds: -2524837786321986358
timeoutSeconds: 1480364858
name: "314"
port: -1912967242
terminationGracePeriodSeconds: -6946775447206795219
timeoutSeconds: 1443270783
name: "315"
ports:
- containerPort: -1918622971
hostIP: "320"
hostPort: -1656699070
name: "319"
protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz
- containerPort: -1842062977
hostIP: "321"
hostPort: -1920304485
name: "320"
protocol: 輔3璾ėȜv1b繐汚磉反-n覦
readinessProbe:
exec:
command:
- "347"
failureThreshold: 1443270783
failureThreshold: 1671084780
httpGet:
host: "349"
host: "350"
httpHeaders:
- name: "350"
value: "351"
- name: "351"
value: "352"
path: "348"
port: 1219644543
scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy
initialDelaySeconds: 652646450
periodSeconds: -1912967242
successThreshold: -2106399359
port: "349"
scheme: Ƒ[澔
initialDelaySeconds: -952255430
periodSeconds: -824007302
successThreshold: -359713104
tcpSocket:
host: "353"
port: "352"
terminationGracePeriodSeconds: -4462364494060795190
timeoutSeconds: 757223010
port: 1288391156
terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 1568034275
resources:
limits:
1b: "328"
ʨIk(dŊiɢzĮ蛋I滞: "394"
requests:
'}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699"
ɞȥ}礤铟怖ý萜Ǖ: "305"
securityContext:
allowPrivilegeEscalation: false
capabilities:
@ -498,68 +495,68 @@ spec:
drop:
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true
procMount: s44矕Ƈè*鑏=
procMount: s44矕Ƈè
readOnlyRootFilesystem: false
runAsGroup: -1232960403847883886
runAsNonRoot: true
runAsUser: 2114633499332155907
runAsGroup: 73764735411458498
runAsNonRoot: false
runAsUser: 4224635496843945227
seLinuxOptions:
level: "380"
role: "378"
type: "379"
user: "377"
level: "379"
role: "377"
type: "378"
user: "376"
seccompProfile:
localhostProfile: "384"
type: ʨ|ǓÓ敆OɈÏ 瞍髃#
localhostProfile: "383"
type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions:
gmsaCredentialSpec: "382"
gmsaCredentialSpecName: "381"
runAsUserName: "383"
gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "380"
hostProcess: true
runAsUserName: "382"
startupProbe:
exec:
command:
- "354"
failureThreshold: 64459150
failureThreshold: -1031303729
httpGet:
host: "356"
httpHeaders:
- name: "357"
value: "358"
path: "355"
port: -902839620
scheme: 縆łƑ[澔槃JŵǤ桒ɴ鉂W
initialDelaySeconds: -574742201
periodSeconds: -514169648
successThreshold: -1186167291
port: -514169648
scheme: '&疀'
initialDelaySeconds: -39292476
periodSeconds: -1312249623
successThreshold: -1089435479
tcpSocket:
host: "360"
port: "359"
terminationGracePeriodSeconds: -4166164136222066963
timeoutSeconds: -1182912186
stdin: true
targetContainerName: "385"
terminationMessagePath: "376"
terminationMessagePolicy: 鸔ɧWǘ炙
terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: 801902541
targetContainerName: "384"
terminationMessagePath: "375"
terminationMessagePolicy: ǘ炙
tty: true
volumeDevices:
- devicePath: "339"
name: "338"
- devicePath: "340"
name: "339"
volumeMounts:
- mountPath: "335"
mountPropagation: Ik(dŊiɢzĮ蛋I
name: "334"
- mountPath: "336"
mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m
name: "335"
readOnly: true
subPath: "336"
subPathExpr: "337"
workingDir: "318"
subPath: "337"
subPathExpr: "338"
workingDir: "319"
hostAliases:
- hostnames:
- "472"
ip: "471"
hostNetwork: true
hostname: "402"
- "471"
ip: "470"
hostPID: true
hostname: "401"
imagePullSecrets:
- name: "401"
- name: "400"
initContainers:
- args:
- "181"
@ -687,11 +684,11 @@ spec:
drop:
- W:ĸ輦唊#v
privileged: false
procMount: Ÿ8T 苧yñKJɐ扵
procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ
readOnlyRootFilesystem: true
runAsGroup: 8839567045362091290
runAsGroup: -1629447906545846003
runAsNonRoot: true
runAsUser: 1946087648860511217
runAsUser: 7510677649797968740
seLinuxOptions:
level: "241"
role: "239"
@ -699,10 +696,11 @@ spec:
user: "238"
seccompProfile:
localhostProfile: "245"
type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
type: 腩墺Ò媁荭gw忊|E剒蔞|表徶
windowsOptions:
gmsaCredentialSpec: "243"
gmsaCredentialSpecName: "242"
hostProcess: true
runAsUserName: "244"
startupProbe:
exec:
@ -728,7 +726,6 @@ spec:
stdin: true
terminationMessagePath: "237"
terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
tty: true
volumeDevices:
- devicePath: "203"
name: "202"
@ -740,66 +737,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "390"
nodeName: "389"
nodeSelector:
"386": "387"
"385": "386"
overhead:
»Š: "727"
preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA
priority: 1188651641
priorityClassName: "473"
D輷: "792"
preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 347613368
priorityClassName: "472"
readinessGates:
- conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW
restartPolicy: W歹s梊ɥʋăƻ
runtimeClassName: "478"
schedulerName: "468"
- conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "477"
schedulerName: "467"
securityContext:
fsGroup: -8322686588708543096
fsGroupChangePolicy: 4虵p蓋沥7uPƒ
runAsGroup: -2549376519991319825
fsGroup: -3964669311891901178
fsGroupChangePolicy: ƴ4虵p
runAsGroup: 3230705132538051674
runAsNonRoot: true
runAsUser: 3011215457607075123
runAsUser: 3438266910774132295
seLinuxOptions:
level: "394"
role: "392"
type: "393"
user: "391"
level: "393"
role: "391"
type: "392"
user: "390"
seccompProfile:
localhostProfile: "400"
type: ""
localhostProfile: "399"
type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups:
- 8667724420266764868
- -1600417733583164525
sysctls:
- name: "398"
value: "399"
- name: "397"
value: "398"
windowsOptions:
gmsaCredentialSpec: "396"
gmsaCredentialSpecName: "395"
runAsUserName: "397"
serviceAccount: "389"
serviceAccountName: "388"
gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "394"
hostProcess: false
runAsUserName: "396"
serviceAccount: "388"
serviceAccountName: "387"
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "403"
terminationGracePeriodSeconds: 1031455728822209328
subdomain: "402"
terminationGracePeriodSeconds: -8335674866227004872
tolerations:
- effect: ;牆詒ĸąsƶ
key: "469"
operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ
tolerationSeconds: -456102350746071856
value: "470"
- effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "468"
operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: 3252034671163905138
value: "469"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: br..1.--S-w-5_..D.pz_-ad
operator: In
- key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
operator: NotIn
values:
- Q.__y644
- h.v._5.vB-.-7-.6Jv-86___3
matchLabels:
z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0: g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T
maxSkew: -388643187
topologyKey: "479"
whenUnsatisfiable: i僠噚恗N
n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -484382570
topologyKey: "478"
whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1051,14 +1049,14 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: 876226690
availableReplicas: -2060941196
conditions:
- lastTransitionTime: "2951-06-01T06:00:17Z"
message: "487"
reason: "486"
status: '%ÿ¼璤ňɈȀę'
type: C`牯雫
fullyLabeledReplicas: 516555648
observedGeneration: 1436288218546692842
readyReplicas: 2104777337
replicas: -2095627603
- lastTransitionTime: "2597-11-21T15:14:16Z"
message: "486"
reason: "485"
status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎
type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN
fullyLabeledReplicas: 415168801
observedGeneration: 7426283174216567769
readyReplicas: 1448332644
replicas: 2106170541

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -738,21 +738,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "261",
"gmsaCredentialSpec": "262",
"runAsUserName": "263"
"runAsUserName": "263",
"hostProcess": false
},
"runAsUser": -3342656999442156006,
"runAsGroup": -5569844914519516591,
"runAsUser": 8833778257967181711,
"runAsGroup": -5647743520459672618,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
"procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "队偯J僳徥淳4揻",
"seccompProfile": {
"type": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
"type": "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ",
"localhostProfile": "264"
}
},
"stdin": true,
"tty": true
"stdinOnce": true
}
],
"containers": [
@ -769,8 +770,9 @@
"ports": [
{
"name": "270",
"hostPort": -825277526,
"containerPort": 1157117817,
"hostPort": 1156888068,
"containerPort": -1296077882,
"protocol": "頸",
"hostIP": "271"
}
],
@ -779,7 +781,7 @@
"prefix": "272",
"configMapRef": {
"name": "273",
"optional": false
"optional": true
},
"secretRef": {
"name": "274",
@ -799,12 +801,12 @@
"resourceFieldRef": {
"containerName": "279",
"resource": "280",
"divisor": "107"
"divisor": "50"
},
"configMapKeyRef": {
"name": "281",
"key": "282",
"optional": false
"optional": true
},
"secretKeyRef": {
"name": "283",
@ -816,19 +818,18 @@
],
"resources": {
"limits": {
"琕鶫:顇ə娯Ȱ囌{": "853"
"´摖ȱ": "528"
},
"requests": {
"Z龏´DÒȗÔÂɘɢ鬍熖B芭花": "372"
"鍓贯澔 ƺ蛜6Ɖ飴": "86"
}
},
"volumeMounts": [
{
"name": "285",
"readOnly": true,
"mountPath": "286",
"subPath": "287",
"mountPropagation": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻",
"mountPropagation": "",
"subPathExpr": "288"
}
],
@ -846,54 +847,55 @@
},
"httpGet": {
"path": "292",
"port": "293",
"host": "294",
"scheme": "C\"6x$1s",
"port": -1453143878,
"host": "293",
"scheme": "鰥Z龏´DÒȗ",
"httpHeaders": [
{
"name": "295",
"value": "296"
"name": "294",
"value": "295"
}
]
},
"tcpSocket": {
"port": "297",
"host": "298"
"port": 1843491416,
"host": "296"
},
"initialDelaySeconds": -860435782,
"timeoutSeconds": 1067125211,
"periodSeconds": -2088645849,
"successThreshold": 1900201288,
"failureThreshold": -766915393,
"terminationGracePeriodSeconds": 3557544419897236324
"initialDelaySeconds": -1204965397,
"timeoutSeconds": -494895708,
"periodSeconds": -1021949447,
"successThreshold": 802134138,
"failureThreshold": -942399354,
"terminationGracePeriodSeconds": 5431518803727886665
},
"readinessProbe": {
"exec": {
"command": [
"299"
"297"
]
},
"httpGet": {
"path": "300",
"port": -311014176,
"host": "301",
"path": "298",
"port": "299",
"host": "300",
"scheme": "J",
"httpHeaders": [
{
"name": "302",
"value": "303"
"name": "301",
"value": "302"
}
]
},
"tcpSocket": {
"port": 1076497581,
"port": "303",
"host": "304"
},
"initialDelaySeconds": 95144287,
"timeoutSeconds": 363405643,
"periodSeconds": 1635382953,
"successThreshold": -727263154,
"failureThreshold": -1449289597,
"terminationGracePeriodSeconds": 6328236602200940742
"initialDelaySeconds": 657418949,
"timeoutSeconds": -992558278,
"periodSeconds": 287654902,
"successThreshold": -2062708879,
"failureThreshold": 215186711,
"terminationGracePeriodSeconds": -607313695104609402
},
"startupProbe": {
"exec": {
@ -903,9 +905,9 @@
},
"httpGet": {
"path": "306",
"port": 248533396,
"port": -617381112,
"host": "307",
"scheme": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
"scheme": "8ŕİi騎C\"6x",
"httpHeaders": [
{
"name": "308",
@ -914,15 +916,15 @@
]
},
"tcpSocket": {
"port": -674445196,
"port": -852140121,
"host": "310"
},
"initialDelaySeconds": 1239158543,
"timeoutSeconds": -543432015,
"periodSeconds": -515370067,
"successThreshold": 2073046460,
"failureThreshold": 1692740191,
"terminationGracePeriodSeconds": -1195705267535749940
"initialDelaySeconds": 1606930340,
"timeoutSeconds": 940930263,
"periodSeconds": -860435782,
"successThreshold": 1067125211,
"failureThreshold": -2088645849,
"terminationGracePeriodSeconds": 8161302388850132593
},
"lifecycle": {
"postStart": {
@ -933,392 +935,394 @@
},
"httpGet": {
"path": "312",
"port": "313",
"host": "314",
"scheme": "Ǣ曣ŋayåe躒訙",
"port": 1167615307,
"host": "313",
"scheme": "vEȤƏ埮p",
"httpHeaders": [
{
"name": "315",
"value": "316"
"name": "314",
"value": "315"
}
]
},
"tcpSocket": {
"port": "317",
"host": "318"
"port": "316",
"host": "317"
}
},
"preStop": {
"exec": {
"command": [
"319"
"318"
]
},
"httpGet": {
"path": "320",
"port": "321",
"host": "322",
"scheme": "uE增猍ǵ xǨŴ",
"path": "319",
"port": 1575106083,
"host": "320",
"scheme": "ş",
"httpHeaders": [
{
"name": "323",
"value": "324"
"name": "321",
"value": "322"
}
]
},
"tcpSocket": {
"port": 2112112129,
"host": "325"
"port": "323",
"host": "324"
}
}
},
"terminationMessagePath": "326",
"terminationMessagePolicy": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗",
"imagePullPolicy": "ĒzŔ瘍Nʊ",
"terminationMessagePath": "325",
"terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
"imagePullPolicy": "ņ",
"securityContext": {
"capabilities": {
"add": [
"璾ėȜv"
"DŽ髐njʉBn(fǂǢ曣"
],
"drop": [
"b繐汚磉反-n覦灲閈誹"
"ay"
]
},
"privileged": true,
"privileged": false,
"seLinuxOptions": {
"user": "327",
"role": "328",
"type": "329",
"level": "330"
"user": "326",
"role": "327",
"type": "328",
"level": "329"
},
"windowsOptions": {
"gmsaCredentialSpecName": "331",
"gmsaCredentialSpec": "332",
"runAsUserName": "333"
"gmsaCredentialSpecName": "330",
"gmsaCredentialSpec": "331",
"runAsUserName": "332",
"hostProcess": true
},
"runAsUser": 8423952810832831481,
"runAsGroup": 7806703309589874498,
"runAsUser": -3576337664396773931,
"runAsGroup": -4786249339103684082,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
"procMount": "k(dŊiɢzĮ蛋I滞廬耐",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "u8晲",
"seccompProfile": {
"type": "焬CQm坊柩",
"localhostProfile": "334"
"type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
"localhostProfile": "333"
}
}
},
"stdin": true
}
],
"ephemeralContainers": [
{
"name": "335",
"image": "336",
"name": "334",
"image": "335",
"command": [
"337"
"336"
],
"args": [
"338"
"337"
],
"workingDir": "339",
"workingDir": "338",
"ports": [
{
"name": "340",
"hostPort": 1141812777,
"containerPort": -1830926023,
"protocol": "®EĨǔvÄÚ×p",
"hostIP": "341"
"name": "339",
"hostPort": 1453852685,
"containerPort": 2037135322,
"protocol": "ǧĒzŔ瘍N",
"hostIP": "340"
}
],
"envFrom": [
{
"prefix": "342",
"prefix": "341",
"configMapRef": {
"name": "343",
"name": "342",
"optional": true
},
"secretRef": {
"name": "344",
"name": "343",
"optional": true
}
}
],
"env": [
{
"name": "345",
"value": "346",
"name": "344",
"value": "345",
"valueFrom": {
"fieldRef": {
"apiVersion": "347",
"fieldPath": "348"
"apiVersion": "346",
"fieldPath": "347"
},
"resourceFieldRef": {
"containerName": "349",
"resource": "350",
"divisor": "60"
"containerName": "348",
"resource": "349",
"divisor": "464"
},
"configMapKeyRef": {
"name": "351",
"key": "352",
"name": "350",
"key": "351",
"optional": true
},
"secretKeyRef": {
"name": "353",
"key": "354",
"optional": true
"name": "352",
"key": "353",
"optional": false
}
}
}
],
"resources": {
"limits": {
"": "262"
"汚磉反-n": "653"
},
"requests": {
"Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶": "1"
"^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
}
},
"volumeMounts": [
{
"name": "355",
"mountPath": "356",
"subPath": "357",
"mountPropagation": "TGÒ鵌Ē3Nh×DJ",
"subPathExpr": "358"
"name": "354",
"mountPath": "355",
"subPath": "356",
"mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
"subPathExpr": "357"
}
],
"volumeDevices": [
{
"name": "359",
"devicePath": "360"
"name": "358",
"devicePath": "359"
}
],
"livenessProbe": {
"exec": {
"command": [
"361"
"360"
]
},
"httpGet": {
"path": "362",
"port": -514169648,
"host": "363",
"scheme": "\u0026疀",
"path": "361",
"port": -1088996269,
"host": "362",
"scheme": "ƘƵŧ1ƟƓ宆!",
"httpHeaders": [
{
"name": "364",
"value": "365"
"name": "363",
"value": "364"
}
]
},
"tcpSocket": {
"port": "366",
"host": "367"
"port": -1836225650,
"host": "365"
},
"initialDelaySeconds": -39292476,
"timeoutSeconds": 801902541,
"periodSeconds": -1312249623,
"successThreshold": -1089435479,
"failureThreshold": -1031303729,
"terminationGracePeriodSeconds": -7317946572666008364
"initialDelaySeconds": -1065853311,
"timeoutSeconds": 559999152,
"periodSeconds": -843639240,
"successThreshold": 1573261475,
"failureThreshold": -1211577347,
"terminationGracePeriodSeconds": 6567123901989213629
},
"readinessProbe": {
"exec": {
"command": [
"368"
"366"
]
},
"httpGet": {
"path": "369",
"port": "370",
"host": "371",
"scheme": "ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢",
"path": "367",
"port": 705333281,
"host": "368",
"scheme": "xƂ9阠",
"httpHeaders": [
{
"name": "372",
"value": "373"
"name": "369",
"value": "370"
}
]
},
"tcpSocket": {
"port": "374",
"host": "375"
"port": -916583020,
"host": "371"
},
"initialDelaySeconds": 2102595797,
"timeoutSeconds": -1921957558,
"periodSeconds": 180543684,
"successThreshold": -1050610482,
"failureThreshold": 1191111236,
"terminationGracePeriodSeconds": 5574781452707956333
"initialDelaySeconds": -606614374,
"timeoutSeconds": -3478003,
"periodSeconds": 498878902,
"successThreshold": 652646450,
"failureThreshold": 757223010,
"terminationGracePeriodSeconds": -8216131738691912586
},
"startupProbe": {
"exec": {
"command": [
"376"
"372"
]
},
"httpGet": {
"path": "377",
"port": "378",
"host": "379",
"scheme": "餸硷",
"path": "373",
"port": "374",
"host": "375",
"scheme": "Ů\u003cy鯶縆łƑ[澔",
"httpHeaders": [
{
"name": "380",
"value": "381"
"name": "376",
"value": "377"
}
]
},
"tcpSocket": {
"port": 731136838,
"host": "382"
"port": 1288391156,
"host": "378"
},
"initialDelaySeconds": 1701169865,
"timeoutSeconds": 685946195,
"periodSeconds": 1871363087,
"successThreshold": -614257963,
"failureThreshold": 1517970305,
"terminationGracePeriodSeconds": -3984053182430357055
"initialDelaySeconds": -952255430,
"timeoutSeconds": 1568034275,
"periodSeconds": -824007302,
"successThreshold": -359713104,
"failureThreshold": 1671084780,
"terminationGracePeriodSeconds": 1571605531283019612
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"383"
"379"
]
},
"httpGet": {
"path": "384",
"port": "385",
"host": "386",
"scheme": "ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ",
"path": "380",
"port": "381",
"host": "382",
"scheme": "%ʝ`ǭ",
"httpHeaders": [
{
"name": "387",
"value": "388"
"name": "383",
"value": "384"
}
]
},
"tcpSocket": {
"port": "389",
"host": "390"
"port": -1467648837,
"host": "385"
}
},
"preStop": {
"exec": {
"command": [
"391"
"386"
]
},
"httpGet": {
"path": "392",
"port": "393",
"host": "394",
"scheme": "cx赮ǒđ\u003e*劶?j",
"path": "387",
"port": "388",
"host": "389",
"scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
"httpHeaders": [
{
"name": "395",
"value": "396"
"name": "390",
"value": "391"
}
]
},
"tcpSocket": {
"port": "397",
"host": "398"
"port": "392",
"host": "393"
}
}
},
"terminationMessagePath": "399",
"terminationMessagePolicy": "¥",
"imagePullPolicy": "Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃",
"terminationMessagePath": "394",
"terminationMessagePolicy": "¯ÁȦtl敷斢",
"imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
"securityContext": {
"capabilities": {
"add": [
"ȕW歹s"
"鬬$矐_敕ű嵞嬯t{Eɾ"
],
"drop": [
"ɥʋăƻ遲"
"Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
]
},
"privileged": true,
"seLinuxOptions": {
"user": "400",
"role": "401",
"type": "402",
"level": "403"
"user": "395",
"role": "396",
"type": "397",
"level": "398"
},
"windowsOptions": {
"gmsaCredentialSpecName": "404",
"gmsaCredentialSpec": "405",
"runAsUserName": "406"
"gmsaCredentialSpecName": "399",
"gmsaCredentialSpec": "400",
"runAsUserName": "401",
"hostProcess": true
},
"runAsUser": 3805707846751185585,
"runAsGroup": 4820130167691486230,
"runAsUser": 4224635496843945227,
"runAsGroup": 73764735411458498,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm",
"allowPrivilegeEscalation": false,
"procMount": "s44矕Ƈè",
"seccompProfile": {
"type": "z鋎",
"localhostProfile": "407"
"type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
"localhostProfile": "402"
}
},
"tty": true,
"targetContainerName": "408"
"targetContainerName": "403"
}
],
"restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸",
"terminationGracePeriodSeconds": -8963807447996144781,
"activeDeadlineSeconds": -5539971415578447792,
"dnsPolicy": "6",
"restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
"terminationGracePeriodSeconds": -8335674866227004872,
"activeDeadlineSeconds": 3305070661619041050,
"dnsPolicy": "+Œ9两",
"nodeSelector": {
"409": "410"
"404": "405"
},
"serviceAccountName": "411",
"serviceAccount": "412",
"serviceAccountName": "406",
"serviceAccount": "407",
"automountServiceAccountToken": false,
"nodeName": "413",
"hostNetwork": true,
"nodeName": "408",
"hostPID": true,
"hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "414",
"role": "415",
"type": "416",
"level": "417"
"user": "409",
"role": "410",
"type": "411",
"level": "412"
},
"windowsOptions": {
"gmsaCredentialSpecName": "418",
"gmsaCredentialSpec": "419",
"runAsUserName": "420"
"gmsaCredentialSpecName": "413",
"gmsaCredentialSpec": "414",
"runAsUserName": "415",
"hostProcess": false
},
"runAsUser": 4290717681745188904,
"runAsGroup": 3355244307027629244,
"runAsNonRoot": false,
"runAsUser": 3438266910774132295,
"runAsGroup": 3230705132538051674,
"runAsNonRoot": true,
"supplementalGroups": [
-7106117411092125093
-1600417733583164525
],
"fsGroup": -9164240834267238973,
"fsGroup": -3964669311891901178,
"sysctls": [
{
"name": "421",
"value": "422"
"name": "416",
"value": "417"
}
],
"fsGroupChangePolicy": "",
"fsGroupChangePolicy": "ƴ4虵p",
"seccompProfile": {
"type": "d'呪",
"localhostProfile": "423"
"type": "沥7uPƒw©ɴĶ烷Ľthp",
"localhostProfile": "418"
}
},
"imagePullSecrets": [
{
"name": "424"
"name": "419"
}
],
"hostname": "425",
"subdomain": "426",
"hostname": "420",
"subdomain": "421",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -1326,19 +1330,19 @@
{
"matchExpressions": [
{
"key": "427",
"operator": "W瀤oɢ嫎¸殚篎3o8[y",
"key": "422",
"operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
"values": [
"428"
"423"
]
}
],
"matchFields": [
{
"key": "429",
"operator": "ï驿笈",
"key": "424",
"operator": " ",
"values": [
"430"
"425"
]
}
]
@ -1347,23 +1351,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -1009377808,
"weight": -5241849,
"preference": {
"matchExpressions": [
{
"key": "431",
"operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪",
"key": "426",
"operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
"values": [
"432"
"427"
]
}
],
"matchFields": [
{
"key": "433",
"operator": "惍EʦŊĊ娮rȧ",
"key": "428",
"operator": "[y#t(",
"values": [
"434"
"429"
]
}
]
@ -1376,7 +1380,7 @@
{
"labelSelector": {
"matchLabels": {
"u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": ""
"rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
},
"matchExpressions": [
{
@ -1389,9 +1393,9 @@
]
},
"namespaces": [
"441"
"436"
],
"topologyKey": "442",
"topologyKey": "437",
"namespaceSelector": {
"matchLabels": {
"0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
@ -1421,9 +1425,9 @@
]
},
"namespaces": [
"455"
"450"
],
"topologyKey": "456",
"topologyKey": "451",
"namespaceSelector": {
"matchLabels": {
"Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
@ -1457,9 +1461,9 @@
]
},
"namespaces": [
"469"
"464"
],
"topologyKey": "470",
"topologyKey": "465",
"namespaceSelector": {
"matchLabels": {
"m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
@ -1492,9 +1496,9 @@
]
},
"namespaces": [
"483"
"478"
],
"topologyKey": "484",
"topologyKey": "479",
"namespaceSelector": {
"matchLabels": {
"o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
@ -1511,37 +1515,37 @@
]
}
},
"schedulerName": "491",
"schedulerName": "486",
"tolerations": [
{
"key": "492",
"key": "487",
"operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
"value": "493",
"value": "488",
"effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
"tolerationSeconds": 3252034671163905138
}
],
"hostAliases": [
{
"ip": "494",
"ip": "489",
"hostnames": [
"495"
"490"
]
}
],
"priorityClassName": "496",
"priorityClassName": "491",
"priority": 347613368,
"dnsConfig": {
"nameservers": [
"497"
"492"
],
"searches": [
"498"
"493"
],
"options": [
{
"name": "499",
"value": "500"
"name": "494",
"value": "495"
}
]
},
@ -1550,7 +1554,7 @@
"conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
}
],
"runtimeClassName": "501",
"runtimeClassName": "496",
"enableServiceLinks": false,
"preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
"overhead": {
@ -1559,7 +1563,7 @@
"topologySpreadConstraints": [
{
"maxSkew": -484382570,
"topologyKey": "502",
"topologyKey": "497",
"whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
"labelSelector": {
"matchLabels": {
@ -1591,13 +1595,13 @@
"status": {
"active": [
{
"kind": "509",
"namespace": "510",
"name": "511",
"kind": "504",
"namespace": "505",
"name": "506",
"uid": "暉Ŝ!ȣ绰",
"apiVersion": "512",
"resourceVersion": "513",
"fieldPath": "514"
"apiVersion": "507",
"resourceVersion": "508",
"fieldPath": "509"
}
]
}

View File

@ -110,34 +110,34 @@ spec:
selfLink: "48"
uid: A
spec:
activeDeadlineSeconds: -5539971415578447792
activeDeadlineSeconds: 3305070661619041050
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "431"
operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪
- key: "426"
operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values:
- "432"
- "427"
matchFields:
- key: "433"
operator: 惍EʦŊĊ娮rȧ
- key: "428"
operator: '[y#t('
values:
- "434"
weight: -1009377808
- "429"
weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "427"
operator: W瀤oɢ嫎¸殚篎3o8[y
- key: "422"
operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
values:
- "428"
- "423"
matchFields:
- key: "429"
operator: ï驿笈
- key: "424"
operator: ' '
values:
- "430"
- "425"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -154,8 +154,8 @@ spec:
matchLabels:
Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
namespaces:
- "455"
topologyKey: "456"
- "450"
topologyKey: "451"
weight: -234140
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -165,7 +165,7 @@ spec:
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels:
u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: ""
rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaceSelector:
matchExpressions:
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
@ -173,8 +173,8 @@ spec:
matchLabels:
0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
namespaces:
- "441"
topologyKey: "442"
- "436"
topologyKey: "437"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -192,8 +192,8 @@ spec:
? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
: I-._g_.._-hKc.OB_F_--.._m_-9
namespaces:
- "483"
topologyKey: "484"
- "478"
topologyKey: "479"
weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -213,8 +213,8 @@ spec:
matchLabels:
m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
namespaces:
- "469"
topologyKey: "470"
- "464"
topologyKey: "465"
automountServiceAccountToken: false
containers:
- args:
@ -228,13 +228,13 @@ spec:
configMapKeyRef:
key: "282"
name: "281"
optional: false
optional: true
fieldRef:
apiVersion: "277"
fieldPath: "278"
resourceFieldRef:
containerName: "279"
divisor: "107"
divisor: "50"
resource: "280"
secretKeyRef:
key: "284"
@ -243,354 +243,356 @@ spec:
envFrom:
- configMapRef:
name: "273"
optional: false
optional: true
prefix: "272"
secretRef:
name: "274"
optional: false
image: "266"
imagePullPolicy: ĒzŔ瘍Nʊ
imagePullPolicy: ņ
lifecycle:
postStart:
exec:
command:
- "311"
httpGet:
host: "314"
host: "313"
httpHeaders:
- name: "315"
value: "316"
- name: "314"
value: "315"
path: "312"
port: "313"
scheme: Ǣ曣ŋayåe躒訙
port: 1167615307
scheme: vEȤƏ埮p
tcpSocket:
host: "318"
port: "317"
host: "317"
port: "316"
preStop:
exec:
command:
- "319"
- "318"
httpGet:
host: "322"
host: "320"
httpHeaders:
- name: "323"
value: "324"
path: "320"
port: "321"
scheme: uE增猍ǵ xǨŴ
- name: "321"
value: "322"
path: "319"
port: 1575106083
scheme: ş
tcpSocket:
host: "325"
port: 2112112129
host: "324"
port: "323"
livenessProbe:
exec:
command:
- "291"
failureThreshold: -766915393
failureThreshold: -942399354
httpGet:
host: "294"
host: "293"
httpHeaders:
- name: "295"
value: "296"
- name: "294"
value: "295"
path: "292"
port: "293"
scheme: C"6x$1s
initialDelaySeconds: -860435782
periodSeconds: -2088645849
successThreshold: 1900201288
port: -1453143878
scheme: 鰥Z龏´DÒȗ
initialDelaySeconds: -1204965397
periodSeconds: -1021949447
successThreshold: 802134138
tcpSocket:
host: "298"
port: "297"
terminationGracePeriodSeconds: 3557544419897236324
timeoutSeconds: 1067125211
host: "296"
port: 1843491416
terminationGracePeriodSeconds: 5431518803727886665
timeoutSeconds: -494895708
name: "265"
ports:
- containerPort: 1157117817
- containerPort: -1296077882
hostIP: "271"
hostPort: -825277526
hostPort: 1156888068
name: "270"
protocol:
readinessProbe:
exec:
command:
- "299"
failureThreshold: -1449289597
- "297"
failureThreshold: 215186711
httpGet:
host: "301"
host: "300"
httpHeaders:
- name: "302"
value: "303"
path: "300"
port: -311014176
initialDelaySeconds: 95144287
periodSeconds: 1635382953
successThreshold: -727263154
- name: "301"
value: "302"
path: "298"
port: "299"
scheme: J
initialDelaySeconds: 657418949
periodSeconds: 287654902
successThreshold: -2062708879
tcpSocket:
host: "304"
port: 1076497581
terminationGracePeriodSeconds: 6328236602200940742
timeoutSeconds: 363405643
port: "303"
terminationGracePeriodSeconds: -607313695104609402
timeoutSeconds: -992558278
resources:
limits:
琕鶫:顇ə娯Ȱ囌{: "853"
´摖ȱ: "528"
requests:
Z龏´DÒȗÔÂɘɢ鬍熖B芭花: "372"
鍓贯澔 ƺ蛜6Ɖ飴: "86"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- 璾ėȜv
- DŽ髐njʉBn(fǂǢ曣
drop:
- b繐汚磉反-n覦灲閈誹
privileged: true
procMount: k(dŊiɢzĮ蛋I滞廬耐
readOnlyRootFilesystem: true
runAsGroup: 7806703309589874498
- ay
privileged: false
procMount: u8晲
readOnlyRootFilesystem: false
runAsGroup: -4786249339103684082
runAsNonRoot: true
runAsUser: 8423952810832831481
runAsUser: -3576337664396773931
seLinuxOptions:
level: "330"
role: "328"
type: "329"
user: "327"
level: "329"
role: "327"
type: "328"
user: "326"
seccompProfile:
localhostProfile: "334"
type: 焬CQm坊柩
localhostProfile: "333"
type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
windowsOptions:
gmsaCredentialSpec: "332"
gmsaCredentialSpecName: "331"
runAsUserName: "333"
gmsaCredentialSpec: "331"
gmsaCredentialSpecName: "330"
hostProcess: true
runAsUserName: "332"
startupProbe:
exec:
command:
- "305"
failureThreshold: 1692740191
failureThreshold: -2088645849
httpGet:
host: "307"
httpHeaders:
- name: "308"
value: "309"
path: "306"
port: 248533396
scheme: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
initialDelaySeconds: 1239158543
periodSeconds: -515370067
successThreshold: 2073046460
port: -617381112
scheme: 8ŕİi騎C"6x
initialDelaySeconds: 1606930340
periodSeconds: -860435782
successThreshold: 1067125211
tcpSocket:
host: "310"
port: -674445196
terminationGracePeriodSeconds: -1195705267535749940
timeoutSeconds: -543432015
terminationMessagePath: "326"
terminationMessagePolicy: ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗
port: -852140121
terminationGracePeriodSeconds: 8161302388850132593
timeoutSeconds: 940930263
stdin: true
terminationMessagePath: "325"
terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
volumeDevices:
- devicePath: "290"
name: "289"
volumeMounts:
- mountPath: "286"
mountPropagation: 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻
mountPropagation: ""
name: "285"
readOnly: true
subPath: "287"
subPathExpr: "288"
workingDir: "269"
dnsConfig:
nameservers:
- "497"
- "492"
options:
- name: "499"
value: "500"
- name: "494"
value: "495"
searches:
- "498"
dnsPolicy: "6"
- "493"
dnsPolicy: +Œ9两
enableServiceLinks: false
ephemeralContainers:
- args:
- "338"
command:
- "337"
command:
- "336"
env:
- name: "345"
value: "346"
- name: "344"
value: "345"
valueFrom:
configMapKeyRef:
key: "352"
name: "351"
key: "351"
name: "350"
optional: true
fieldRef:
apiVersion: "347"
fieldPath: "348"
apiVersion: "346"
fieldPath: "347"
resourceFieldRef:
containerName: "349"
divisor: "60"
resource: "350"
containerName: "348"
divisor: "464"
resource: "349"
secretKeyRef:
key: "354"
name: "353"
optional: true
key: "353"
name: "352"
optional: false
envFrom:
- configMapRef:
name: "342"
optional: true
prefix: "341"
secretRef:
name: "343"
optional: true
prefix: "342"
secretRef:
name: "344"
optional: true
image: "336"
imagePullPolicy: Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃
image: "335"
imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
lifecycle:
postStart:
exec:
command:
- "383"
- "379"
httpGet:
host: "386"
host: "382"
httpHeaders:
- name: "387"
value: "388"
path: "384"
port: "385"
scheme: ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ
- name: "383"
value: "384"
path: "380"
port: "381"
scheme: '%ʝ`ǭ'
tcpSocket:
host: "390"
port: "389"
host: "385"
port: -1467648837
preStop:
exec:
command:
- "391"
- "386"
httpGet:
host: "394"
host: "389"
httpHeaders:
- name: "395"
value: "396"
path: "392"
port: "393"
scheme: cx赮ǒđ>*劶?j
- name: "390"
value: "391"
path: "387"
port: "388"
scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
tcpSocket:
host: "398"
port: "397"
host: "393"
port: "392"
livenessProbe:
exec:
command:
- "361"
failureThreshold: -1031303729
- "360"
failureThreshold: -1211577347
httpGet:
host: "363"
host: "362"
httpHeaders:
- name: "364"
value: "365"
path: "362"
port: -514169648
scheme: '&疀'
initialDelaySeconds: -39292476
periodSeconds: -1312249623
successThreshold: -1089435479
- name: "363"
value: "364"
path: "361"
port: -1088996269
scheme: ƘƵŧ1ƟƓ宆!
initialDelaySeconds: -1065853311
periodSeconds: -843639240
successThreshold: 1573261475
tcpSocket:
host: "367"
port: "366"
terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: 801902541
name: "335"
host: "365"
port: -1836225650
terminationGracePeriodSeconds: 6567123901989213629
timeoutSeconds: 559999152
name: "334"
ports:
- containerPort: -1830926023
hostIP: "341"
hostPort: 1141812777
name: "340"
protocol: ®EĨǔvÄÚ×p
- containerPort: 2037135322
hostIP: "340"
hostPort: 1453852685
name: "339"
protocol: ǧĒzŔ瘍N
readinessProbe:
exec:
command:
- "368"
failureThreshold: 1191111236
- "366"
failureThreshold: 757223010
httpGet:
host: "371"
host: "368"
httpHeaders:
- name: "372"
value: "373"
path: "369"
port: "370"
scheme: ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
initialDelaySeconds: 2102595797
periodSeconds: 180543684
successThreshold: -1050610482
- name: "369"
value: "370"
path: "367"
port: 705333281
scheme: xƂ9阠
initialDelaySeconds: -606614374
periodSeconds: 498878902
successThreshold: 652646450
tcpSocket:
host: "375"
port: "374"
terminationGracePeriodSeconds: 5574781452707956333
timeoutSeconds: -1921957558
host: "371"
port: -916583020
terminationGracePeriodSeconds: -8216131738691912586
timeoutSeconds: -3478003
resources:
limits:
"": "262"
汚磉反-n: "653"
requests:
Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů<y鯶: "1"
^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ȕW歹s
- 鬬$矐_敕ű嵞嬯t{Eɾ
drop:
- ɥʋăƻ遲
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true
procMount: Ů嫠!@@)Zq=歍þ螗ɃŒGm
procMount: s44矕Ƈè
readOnlyRootFilesystem: false
runAsGroup: 4820130167691486230
runAsGroup: 73764735411458498
runAsNonRoot: false
runAsUser: 3805707846751185585
runAsUser: 4224635496843945227
seLinuxOptions:
level: "403"
role: "401"
type: "402"
user: "400"
level: "398"
role: "396"
type: "397"
user: "395"
seccompProfile:
localhostProfile: "407"
type: z鋎
localhostProfile: "402"
type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions:
gmsaCredentialSpec: "405"
gmsaCredentialSpecName: "404"
runAsUserName: "406"
gmsaCredentialSpec: "400"
gmsaCredentialSpecName: "399"
hostProcess: true
runAsUserName: "401"
startupProbe:
exec:
command:
- "376"
failureThreshold: 1517970305
- "372"
failureThreshold: 1671084780
httpGet:
host: "379"
host: "375"
httpHeaders:
- name: "380"
value: "381"
path: "377"
port: "378"
scheme: 餸硷
initialDelaySeconds: 1701169865
periodSeconds: 1871363087
successThreshold: -614257963
- name: "376"
value: "377"
path: "373"
port: "374"
scheme: Ů<y鯶縆łƑ[澔
initialDelaySeconds: -952255430
periodSeconds: -824007302
successThreshold: -359713104
tcpSocket:
host: "382"
port: 731136838
terminationGracePeriodSeconds: -3984053182430357055
timeoutSeconds: 685946195
targetContainerName: "408"
terminationMessagePath: "399"
terminationMessagePolicy: ¥
host: "378"
port: 1288391156
terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 1568034275
targetContainerName: "403"
terminationMessagePath: "394"
terminationMessagePolicy: ¯ÁȦtl敷斢
tty: true
volumeDevices:
- devicePath: "360"
name: "359"
- devicePath: "359"
name: "358"
volumeMounts:
- mountPath: "356"
mountPropagation: TGÒ鵌Ē3Nh×DJ
name: "355"
subPath: "357"
subPathExpr: "358"
workingDir: "339"
- mountPath: "355"
mountPropagation: 蛋I滞廬耐鷞焬CQm坊柩
name: "354"
subPath: "356"
subPathExpr: "357"
workingDir: "338"
hostAliases:
- hostnames:
- "495"
ip: "494"
hostIPC: true
hostNetwork: true
- "490"
ip: "489"
hostPID: true
hostname: "425"
hostname: "420"
imagePullSecrets:
- name: "424"
- name: "419"
initContainers:
- args:
- "200"
@ -711,18 +713,18 @@ spec:
requests:
I\p[: "853"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
drop:
- 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥
privileged: false
procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ
readOnlyRootFilesystem: true
runAsGroup: -5569844914519516591
procMount: 队偯J僳徥淳4揻
readOnlyRootFilesystem: false
runAsGroup: -5647743520459672618
runAsNonRoot: true
runAsUser: -3342656999442156006
runAsUser: 8833778257967181711
seLinuxOptions:
level: "260"
role: "258"
@ -730,10 +732,11 @@ spec:
user: "257"
seccompProfile:
localhostProfile: "264"
type: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
type: $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ
windowsOptions:
gmsaCredentialSpec: "262"
gmsaCredentialSpecName: "261"
hostProcess: false
runAsUserName: "263"
startupProbe:
exec:
@ -756,9 +759,9 @@ spec:
terminationGracePeriodSeconds: 6347577485454457915
timeoutSeconds: -200461294
stdin: true
stdinOnce: true
terminationMessagePath: "256"
terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄
tty: true
volumeDevices:
- devicePath: "222"
name: "221"
@ -770,54 +773,55 @@ spec:
subPath: "219"
subPathExpr: "220"
workingDir: "201"
nodeName: "413"
nodeName: "408"
nodeSelector:
"409": "410"
"404": "405"
overhead:
D輷: "792"
preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 347613368
priorityClassName: "496"
priorityClassName: "491"
readinessGates:
- conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸
runtimeClassName: "501"
schedulerName: "491"
restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "496"
schedulerName: "486"
securityContext:
fsGroup: -9164240834267238973
fsGroupChangePolicy: ""
runAsGroup: 3355244307027629244
runAsNonRoot: false
runAsUser: 4290717681745188904
fsGroup: -3964669311891901178
fsGroupChangePolicy: ƴ4虵p
runAsGroup: 3230705132538051674
runAsNonRoot: true
runAsUser: 3438266910774132295
seLinuxOptions:
level: "417"
role: "415"
type: "416"
user: "414"
level: "412"
role: "410"
type: "411"
user: "409"
seccompProfile:
localhostProfile: "423"
type: d'呪
localhostProfile: "418"
type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups:
- -7106117411092125093
- -1600417733583164525
sysctls:
- name: "421"
value: "422"
- name: "416"
value: "417"
windowsOptions:
gmsaCredentialSpec: "419"
gmsaCredentialSpecName: "418"
runAsUserName: "420"
serviceAccount: "412"
serviceAccountName: "411"
gmsaCredentialSpec: "414"
gmsaCredentialSpecName: "413"
hostProcess: false
runAsUserName: "415"
serviceAccount: "407"
serviceAccountName: "406"
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "426"
terminationGracePeriodSeconds: -8963807447996144781
subdomain: "421"
terminationGracePeriodSeconds: -8335674866227004872
tolerations:
- effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "492"
key: "487"
operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: 3252034671163905138
value: "493"
value: "488"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
@ -828,7 +832,7 @@ spec:
matchLabels:
n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -484382570
topologyKey: "502"
topologyKey: "497"
whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes:
- awsElasticBlockStore:
@ -1090,10 +1094,10 @@ spec:
suspend: true
status:
active:
- apiVersion: "512"
fieldPath: "514"
kind: "509"
name: "511"
namespace: "510"
resourceVersion: "513"
- apiVersion: "507"
fieldPath: "509"
kind: "504"
name: "506"
namespace: "505"
resourceVersion: "508"
uid: 暉Ŝ!ȣ绰

File diff suppressed because it is too large Load Diff

View File

@ -33,7 +33,7 @@ metadata:
spec:
activeDeadlineSeconds: -5584804243908071872
backoffLimit: -783752440
completionMode: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
completionMode: ""
completions: 1305381319
manualSelector: true
parallelism: 896585016
@ -45,7 +45,7 @@ spec:
- 3_bQw.-dG6c-.x
matchLabels:
hjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4: 3L.u
suspend: true
suspend: false
template:
metadata:
annotations:
@ -78,109 +78,112 @@ spec:
selfLink: "29"
uid: ɸ=ǤÆ碛,1
spec:
activeDeadlineSeconds: 7695545029085197807
activeDeadlineSeconds: -3936694093978979945
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "407"
operator: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
- key: "412"
operator: ij\
values:
- "408"
- "413"
matchFields:
- key: "409"
operator: kƒK07曳wœj堑ūM鈱ɖ'蠨磼
- key: "414"
operator: ż鯀1
values:
- "410"
weight: 1045190247
- "415"
weight: -316155142
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "403"
operator: 鏋蛹Ƚȿ醏g遧
- key: "408"
operator: ȾD虓氙磂tńČȷǻ.wȏâ磠Ƴ崖S«
values:
- "404"
- "409"
matchFields:
- key: "405"
operator: Ļo:{柯?B俋¬h`職铳s44矕
- key: "410"
operator:
values:
- "406"
- "411"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L
- key: wq--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-b7/C...8-_0__5HG2_5XOAX.gUq2
operator: Exists
matchLabels:
73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C: r-v-3-BO
v---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f33/Z: jz_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4
namespaceSelector:
matchExpressions:
- key: RT.0zo
operator: DoesNotExist
- key: L4K..-68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
operator: In
values:
- 7-.-_I-F.Pt
matchLabels:
r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr: 5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h4
namespaces:
- "431"
topologyKey: "432"
weight: -555161071
- "436"
topologyKey: "437"
weight: -1731963575
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 3--51
operator: NotIn
values:
- C.-e16-O5
- key: Jd._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68
operator: Exists
matchLabels:
e6-1--0s-t1e--mv56c27-23---gl.3x-b--55039780bdw0-1-47rrw8-5ts-7-b-p-5-5wmi-4xs-0-5ki/9..3_t_-l..-.DG7r-3.----._4__O: u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q
? w--2--82--cj-1-s--op34-yy28-38xmu5nx4s--41-7--65m8-1x129v.5kr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cgr6q/z._8M0U1z
: X--56-7
namespaceSelector:
matchExpressions:
- key: 8mtxb__-ex-_1_-ODgC_1-_8__3
- key: 1rhm-5y--z-0/5eQ9
operator: DoesNotExist
matchLabels:
93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM
x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5: bB3_.b17ca-p
namespaces:
- "417"
topologyKey: "418"
- "422"
topologyKey: "423"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
- key: dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A
operator: Exists
matchLabels:
ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
BQ.9-_.m7-Q____vSW_4-__h: w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj
namespaceSelector:
matchExpressions:
- key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
operator: Exists
- key: 006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W
operator: NotIn
values:
- z87_2---2.E.p9-.-3.__a.bl_--..-A
matchLabels:
E35H__.B_E: U..u8gwbk
8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO
namespaces:
- "459"
topologyKey: "460"
weight: 339079271
- "464"
topologyKey: "465"
weight: -1832836223
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
operator: DoesNotExist
- key: O-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.o
operator: Exists
matchLabels:
FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
aP41_.-.-AQ._r.-_Rw1k8KLu..ly--J-_.ZCRT.0z-oe.G79.3bU_._nV345: y-u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dP
namespaceSelector:
matchExpressions:
- key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
- key: 7-ufi-7/3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--C
operator: NotIn
values:
- u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
- 0--_qv4--_.6_N_9X-B.s8.B
matchLabels:
p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
bid-7x0u738--7w-tdt-u-0----p6l-3-znd-8b-dg--1035ad1od/Nn_U-...1P_.8: 8_2v89U--8.3N_.n1.--.._-x4
namespaces:
- "445"
topologyKey: "446"
automountServiceAccountToken: true
- "450"
topologyKey: "451"
automountServiceAccountToken: false
containers:
- args:
- "251"
@ -193,13 +196,13 @@ spec:
configMapKeyRef:
key: "265"
name: "264"
optional: false
optional: true
fieldRef:
apiVersion: "260"
fieldPath: "261"
resourceFieldRef:
containerName: "262"
divisor: "668"
divisor: "509"
resource: "263"
secretKeyRef:
key: "267"
@ -208,11 +211,11 @@ spec:
envFrom:
- configMapRef:
name: "256"
optional: false
optional: true
prefix: "255"
secretRef:
name: "257"
optional: true
optional: false
image: "249"
imagePullPolicy: 澝qV訆Ǝżŧ
lifecycle:
@ -221,85 +224,85 @@ spec:
command:
- "294"
httpGet:
host: "296"
host: "297"
httpHeaders:
- name: "297"
value: "298"
- name: "298"
value: "299"
path: "295"
port: 1165327504
scheme: 庰%皧V
port: "296"
scheme: V垾现葢ŵ橨鬶l
tcpSocket:
host: "299"
port: -260262954
host: "301"
port: "300"
preStop:
exec:
command:
- "300"
- "302"
httpGet:
host: "303"
host: "305"
httpHeaders:
- name: "304"
value: "305"
path: "301"
port: "302"
scheme: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ
- name: "306"
value: "307"
path: "303"
port: "304"
scheme: 淳4揻-$ɽ丟×x锏ɟ
tcpSocket:
host: "306"
host: "308"
port: 1907998540
livenessProbe:
exec:
command:
- "274"
failureThreshold: -179937987
failureThreshold: 1274622498
httpGet:
host: "276"
host: "277"
httpHeaders:
- name: "277"
value: "278"
- name: "278"
value: "279"
path: "275"
port: -743369977
scheme: '>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ4'
initialDelaySeconds: 887398685
periodSeconds: -1139949896
successThreshold: 1274622498
port: "276"
scheme: 佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ
initialDelaySeconds: -1224991707
periodSeconds: -612420031
successThreshold: -1139949896
tcpSocket:
host: "279"
port: -1224991707
terminationGracePeriodSeconds: -8210022364156100044
timeoutSeconds: -612420031
host: "280"
port: -379385405
terminationGracePeriodSeconds: -772827768292101457
timeoutSeconds: 887398685
name: "248"
ports:
- containerPort: -630252364
- containerPort: -1213051101
hostIP: "254"
hostPort: -720450949
hostPort: -970312425
name: "253"
protocol: dz娝嘚庎D}埽uʎȺ眖R#yV'WK
protocol: 埽uʎȺ眖R
readinessProbe:
exec:
command:
- "280"
failureThreshold: 1004325340
- "281"
failureThreshold: 764360370
httpGet:
host: "282"
host: "283"
httpHeaders:
- name: "283"
value: "284"
path: "281"
port: 474715842
scheme: Jɐ扵Gƚ绤fʀļ腩墺Ò媁荭gw
initialDelaySeconds: -1122739822
periodSeconds: -1532958330
successThreshold: -438588982
- name: "284"
value: "285"
path: "282"
port: -1871050070
scheme: KJɐ扵Gƚ绤fʀļ腩墺
initialDelaySeconds: -631862664
periodSeconds: -53728881
successThreshold: -52739417
tcpSocket:
host: "286"
port: "285"
terminationGracePeriodSeconds: -5640668310341845616
timeoutSeconds: -1761398388
host: "287"
port: "286"
terminationGracePeriodSeconds: -4822130814617082943
timeoutSeconds: 1056531337
resources:
limits:
輓Ɔȓ蹣ɐǛv+8: "375"
Ůĺ}潷ʒ胵輓: "404"
requests:
'[颐o啛更偢ɇ': "21"
1ØœȠƬQg鄠: "488"
securityContext:
allowPrivilegeEscalation: false
capabilities:
@ -308,45 +311,48 @@ spec:
drop:
- ƺ蛜6Ɖ飴ɎiǨź
privileged: true
procMount: ȗÔÂɘɢ
procMount: ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏
readOnlyRootFilesystem: false
runAsGroup: 2471155705902100229
runAsNonRoot: true
runAsUser: 6461287015868628542
runAsGroup: 2830586634171662902
runAsNonRoot: false
runAsUser: 3716388262106582789
seLinuxOptions:
level: "311"
role: "309"
type: "310"
user: "308"
level: "313"
role: "311"
type: "312"
user: "310"
seccompProfile:
localhostProfile: "315"
type: 熖B芭花ª瘡蟦JBʟ鍏H
localhostProfile: "317"
type: ²静
windowsOptions:
gmsaCredentialSpec: "313"
gmsaCredentialSpecName: "312"
runAsUserName: "314"
gmsaCredentialSpec: "315"
gmsaCredentialSpecName: "314"
hostProcess: true
runAsUserName: "316"
startupProbe:
exec:
command:
- "287"
failureThreshold: -1666819085
- "288"
failureThreshold: 704287801
httpGet:
host: "289"
host: "290"
httpHeaders:
- name: "290"
value: "291"
path: "288"
port: 1941923625
initialDelaySeconds: 452673549
periodSeconds: -125932767
successThreshold: -18758819
- name: "291"
value: "292"
path: "289"
port: 1004325340
scheme: 徶đ寳议Ƭƶ氩Ȩ
initialDelaySeconds: -1666819085
periodSeconds: 1777326813
successThreshold: -1471289102
tcpSocket:
host: "293"
port: "292"
terminationGracePeriodSeconds: -1212012606981050727
timeoutSeconds: 627670321
port: -18758819
terminationGracePeriodSeconds: 8549738818875784336
timeoutSeconds: -282193676
stdin: true
stdinOnce: true
terminationMessagePath: "307"
terminationMessagePath: "309"
terminationMessagePolicy: ',ŕ'
tty: true
volumeDevices:
@ -354,7 +360,7 @@ spec:
name: "272"
volumeMounts:
- mountPath: "269"
mountPropagation: +
mountPropagation: '>郵[+扴ȨŮ'
name: "268"
readOnly: true
subPath: "270"
@ -362,204 +368,203 @@ spec:
workingDir: "252"
dnsConfig:
nameservers:
- "473"
- "478"
options:
- name: "475"
value: "476"
- name: "480"
value: "481"
searches:
- "474"
dnsPolicy: 9ij\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ
- "479"
dnsPolicy:
enableServiceLinks: false
ephemeralContainers:
- args:
- "319"
- "321"
command:
- "318"
- "320"
env:
- name: "326"
value: "327"
- name: "328"
value: "329"
valueFrom:
configMapKeyRef:
key: "333"
name: "332"
optional: false
fieldRef:
apiVersion: "328"
fieldPath: "329"
resourceFieldRef:
containerName: "330"
divisor: "956"
resource: "331"
secretKeyRef:
key: "335"
name: "334"
optional: true
optional: false
fieldRef:
apiVersion: "330"
fieldPath: "331"
resourceFieldRef:
containerName: "332"
divisor: "817"
resource: "333"
secretKeyRef:
key: "337"
name: "336"
optional: false
envFrom:
- configMapRef:
name: "324"
optional: true
prefix: "323"
secretRef:
name: "325"
name: "326"
optional: false
image: "317"
imagePullPolicy: G鄧蜢暳ǽ
prefix: "325"
secretRef:
name: "327"
optional: true
image: "319"
imagePullPolicy: ŭƽ眝{æ盪泙若`l}Ñ蠂Ü[ƛ^輅9
lifecycle:
postStart:
exec:
command:
- "362"
- "366"
httpGet:
host: "364"
host: "368"
httpHeaders:
- name: "365"
value: "366"
path: "363"
port: 702968201
scheme: Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ
- name: "369"
value: "370"
path: "367"
port: -637630736
scheme: Ŵ壶ƵfȽÃ茓pȓɻ
tcpSocket:
host: "367"
port: 1993058773
host: "372"
port: "371"
preStop:
exec:
command:
- "368"
- "373"
httpGet:
host: "370"
host: "376"
httpHeaders:
- name: "371"
value: "372"
path: "369"
port: 2115799218
scheme: ɢzĮ蛋I滞廬耐鷞焬CQm坊柩劄奼[
- name: "377"
value: "378"
path: "374"
port: "375"
scheme: Ǹ|蕎'佉賞ǧĒz
tcpSocket:
host: "374"
port: "373"
host: "379"
port: -1920304485
livenessProbe:
exec:
command:
- "342"
failureThreshold: -1379762675
- "344"
failureThreshold: 595289079
httpGet:
host: "344"
httpHeaders:
- name: "345"
value: "346"
path: "343"
port: -1491762290
scheme: Bn(fǂǢ曣ŋayåe躒訙Ǫ
initialDelaySeconds: -17241638
periodSeconds: 597943993
successThreshold: -1237718434
tcpSocket:
host: "347"
port: 739175678
terminationGracePeriodSeconds: -3735660420379502501
timeoutSeconds: 1454160406
name: "316"
httpHeaders:
- name: "348"
value: "349"
path: "345"
port: "346"
scheme: pɵ{
initialDelaySeconds: 1221583046
periodSeconds: 1802356198
successThreshold: -5838370
tcpSocket:
host: "351"
port: "350"
terminationGracePeriodSeconds: -7062605330414484831
timeoutSeconds: -1861307253
name: "318"
ports:
- containerPort: -181601395
hostIP: "322"
hostPort: -402384013
name: "321"
protocol: 汰8ŕİi騎C"6x$1s
- containerPort: 1851229369
hostIP: "324"
hostPort: -617381112
name: "323"
protocol: ŕİi騎C
readinessProbe:
exec:
command:
- "348"
failureThreshold: 1831638296
- "352"
failureThreshold: -1491762290
httpGet:
host: "351"
httpHeaders:
- name: "352"
value: "353"
path: "349"
port: "350"
scheme: Ȏ3Ĕ\ɢX鰨
initialDelaySeconds: 1031506256
periodSeconds: -954508651
successThreshold: 1597200284
tcpSocket:
host: "354"
port: -1918622971
terminationGracePeriodSeconds: 760480547754807445
timeoutSeconds: -186532794
httpHeaders:
- name: "355"
value: "356"
path: "353"
port: -1952582931
scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
initialDelaySeconds: 748460736
periodSeconds: 864674728
successThreshold: -707765804
tcpSocket:
host: "358"
port: "357"
terminationGracePeriodSeconds: -6530634860612550556
timeoutSeconds: 1601057463
resources:
limits:
5哇芆斩ìh4ɊHȖ|ʐş: "879"
"": "243"
requests:
ȭCV擭銆jʒǚ鍰\縑ɀ撑¼蠾8餑噭: "157"
ɔ幩še: "641"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- ""
- ƈ眽炊礫Ƽ¨Ix糂腂
drop:
- 攻xƂ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů<
- ǚŜEuEy竬ʆɞ
privileged: true
procMount: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
readOnlyRootFilesystem: true
runAsGroup: 4961684277572791542
runAsNonRoot: true
runAsUser: -2391833818948531474
procMount: ǣƘƵŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽż
readOnlyRootFilesystem: false
runAsGroup: 6975450977224404481
runAsNonRoot: false
runAsUser: 2002344837004307079
seLinuxOptions:
level: "379"
role: "377"
type: "378"
user: "376"
level: "384"
role: "382"
type: "383"
user: "381"
seccompProfile:
localhostProfile: "383"
type: 虓氙磂tńČȷǻ.wȏâ磠Ƴ崖
localhostProfile: "388"
type: ""
windowsOptions:
gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "380"
runAsUserName: "382"
gmsaCredentialSpec: "386"
gmsaCredentialSpecName: "385"
hostProcess: true
runAsUserName: "387"
startupProbe:
exec:
command:
- "355"
failureThreshold: -751455207
- "359"
failureThreshold: 597943993
httpGet:
host: "358"
httpHeaders:
- name: "359"
value: "360"
path: "356"
port: "357"
scheme: 賞ǧĒzŔ瘍N
initialDelaySeconds: 2073630689
periodSeconds: -1395144116
successThreshold: -684167223
tcpSocket:
host: "361"
port: -531787516
terminationGracePeriodSeconds: -3839813958613977681
timeoutSeconds: -830875556
httpHeaders:
- name: "362"
value: "363"
path: "360"
port: 129997413
scheme: Ǣ曣ŋayåe躒訙
initialDelaySeconds: 2144856253
periodSeconds: -17241638
successThreshold: 1454160406
tcpSocket:
host: "365"
port: "364"
terminationGracePeriodSeconds: -5315960194881172085
timeoutSeconds: 739175678
stdin: true
stdinOnce: true
targetContainerName: "384"
terminationMessagePath: "375"
terminationMessagePolicy: ĝ®EĨǔvÄÚ×p鬷
targetContainerName: "389"
terminationMessagePath: "380"
tty: true
volumeDevices:
- devicePath: "341"
name: "340"
- devicePath: "343"
name: "342"
volumeMounts:
- mountPath: "337"
mountPropagation: ǹ0
name: "336"
subPath: "338"
subPathExpr: "339"
workingDir: "320"
- mountPath: "339"
mountPropagation: ""
name: "338"
readOnly: true
subPath: "340"
subPathExpr: "341"
workingDir: "322"
hostAliases:
- hostnames:
- "471"
ip: "470"
- "476"
ip: "475"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "401"
hostname: "406"
imagePullSecrets:
- name: "400"
- name: "405"
initContainers:
- args:
- "181"
@ -680,18 +685,18 @@ spec:
requests:
Ā<é瞾ʀNŬɨǙÄr: "862"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0
drop:
- Kʝ瘴I\p[ħsĨɆâĺɗ
privileged: true
procMount: A
procMount: 攤/ɸɎ R§耶FfBl
readOnlyRootFilesystem: true
runAsGroup: 6974050994588811875
runAsGroup: 4006793330334483398
runAsNonRoot: true
runAsUser: -3442119660495017037
runAsUser: 8088324525605310061
seLinuxOptions:
level: "243"
role: "241"
@ -699,10 +704,11 @@ spec:
user: "240"
seccompProfile:
localhostProfile: "247"
type: /ɸɎ R§耶FfBls3!
type: 3!Zɾģ毋Ó6
windowsOptions:
gmsaCredentialSpec: "245"
gmsaCredentialSpecName: "244"
hostProcess: true
runAsUserName: "246"
startupProbe:
exec:
@ -725,6 +731,7 @@ spec:
port: "223"
terminationGracePeriodSeconds: 1132874952502226901
timeoutSeconds: -1341523482
stdinOnce: true
terminationMessagePath: "239"
terminationMessagePolicy: U髷裎$MVȟ@7飣奺Ȋ
tty: true
@ -738,65 +745,65 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "389"
nodeName: "394"
nodeSelector:
"385": "386"
"390": "391"
overhead:
隅DžbİEMǶɼ`|褞: "229"
preemptionPolicy: n{
priority: -340583156
priorityClassName: "472"
<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283"
preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa
priority: 878153992
priorityClassName: "477"
readinessGates:
- conditionType: țc£PAÎǨȨ栋
restartPolicy: V
runtimeClassName: "477"
schedulerName: "467"
- conditionType: =ȑ-A敲ʉ
restartPolicy: xƂ9阠
runtimeClassName: "482"
schedulerName: "472"
securityContext:
fsGroup: 1086777894996369636
fsGroupChangePolicy: 嬯t{
runAsGroup: -3984053182430357055
fsGroup: 7768299165267384830
fsGroupChangePolicy: G
runAsGroup: 8790792169692841191
runAsNonRoot: true
runAsUser: -8782526851089538175
runAsUser: -6831737663967002548
seLinuxOptions:
level: "393"
role: "391"
type: "392"
user: "390"
level: "398"
role: "396"
type: "397"
user: "395"
seccompProfile:
localhostProfile: "399"
type: ɾ
localhostProfile: "404"
type: 鵌Ē3Nh×DJɶ羹ƞʓ%ʝ
supplementalGroups:
- -4848183283725048145
- 419368455950991325
sysctls:
- name: "397"
value: "398"
- name: "402"
value: "403"
windowsOptions:
gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "394"
runAsUserName: "396"
serviceAccount: "388"
serviceAccountName: "387"
gmsaCredentialSpec: "400"
gmsaCredentialSpecName: "399"
hostProcess: true
runAsUserName: "401"
serviceAccount: "393"
serviceAccountName: "392"
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "402"
terminationGracePeriodSeconds: 2097799378008387965
shareProcessNamespace: false
subdomain: "407"
terminationGracePeriodSeconds: -1251681867635446860
tolerations:
- key: "468"
operator: ŭʔb'?舍ȃʥx臥]å摞
tolerationSeconds: 3053978290188957517
value: "469"
- effect: 貛香"砻B鷋RȽXv*!ɝ茀Ǩ
key: "473"
operator: Ü
tolerationSeconds: 8594241010639209901
value: "474"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- H1z..j_.r3--T
- key: z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0
operator: DoesNotExist
matchLabels:
H_55..--E3_2D-1DW__o_-.k: "7"
maxSkew: 1486667065
topologyKey: "478"
whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
N-_.F: 09z2
maxSkew: -702578810
topologyKey: "483"
whenUnsatisfiable: Ž氮怉ƥ;"薑Ȣ#闬輙怀¹bCũw
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1047,16 +1054,16 @@ spec:
storagePolicyID: "106"
storagePolicyName: "105"
volumePath: "103"
ttlSecondsAfterFinished: 1020403419
ttlSecondsAfterFinished: -1284862566
status:
active: 157401294
completedIndexes: "487"
active: 543081713
completedIndexes: "492"
conditions:
- lastProbeTime: "2377-08-03T07:30:10Z"
lastTransitionTime: "2619-06-09T02:29:16Z"
message: "486"
reason: "485"
status: bCũw¼ ǫđ槴Ċį軠>桼劑
type: 穌砊ʑȩ硘(ǒ[ȼ罦¦褅
failed: 648978003
succeeded: -702718077
- lastProbeTime: "2427-08-17T22:26:07Z"
lastTransitionTime: "2012-08-22T05:26:31Z"
message: "491"
reason: "490"
status: 翻颌徚J殦殐ƕ蟶ŃēÖ釐駆Ŕƿe魛ĩ
type: ɓ为\Ŧƺ猑\#ȼ縤ɰTaI楅©
failed: 77405208
succeeded: -377965530

View File

@ -738,21 +738,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "261",
"gmsaCredentialSpec": "262",
"runAsUserName": "263"
"runAsUserName": "263",
"hostProcess": false
},
"runAsUser": -3342656999442156006,
"runAsGroup": -5569844914519516591,
"runAsUser": 8833778257967181711,
"runAsGroup": -5647743520459672618,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
"procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "队偯J僳徥淳4揻",
"seccompProfile": {
"type": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
"type": "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ",
"localhostProfile": "264"
}
},
"stdin": true,
"tty": true
"stdinOnce": true
}
],
"containers": [
@ -769,8 +770,9 @@
"ports": [
{
"name": "270",
"hostPort": -825277526,
"containerPort": 1157117817,
"hostPort": 1156888068,
"containerPort": -1296077882,
"protocol": "頸",
"hostIP": "271"
}
],
@ -779,7 +781,7 @@
"prefix": "272",
"configMapRef": {
"name": "273",
"optional": false
"optional": true
},
"secretRef": {
"name": "274",
@ -799,12 +801,12 @@
"resourceFieldRef": {
"containerName": "279",
"resource": "280",
"divisor": "107"
"divisor": "50"
},
"configMapKeyRef": {
"name": "281",
"key": "282",
"optional": false
"optional": true
},
"secretKeyRef": {
"name": "283",
@ -816,19 +818,18 @@
],
"resources": {
"limits": {
"琕鶫:顇ə娯Ȱ囌{": "853"
"´摖ȱ": "528"
},
"requests": {
"Z龏´DÒȗÔÂɘɢ鬍熖B芭花": "372"
"鍓贯澔 ƺ蛜6Ɖ飴": "86"
}
},
"volumeMounts": [
{
"name": "285",
"readOnly": true,
"mountPath": "286",
"subPath": "287",
"mountPropagation": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻",
"mountPropagation": "",
"subPathExpr": "288"
}
],
@ -846,54 +847,55 @@
},
"httpGet": {
"path": "292",
"port": "293",
"host": "294",
"scheme": "C\"6x$1s",
"port": -1453143878,
"host": "293",
"scheme": "鰥Z龏´DÒȗ",
"httpHeaders": [
{
"name": "295",
"value": "296"
"name": "294",
"value": "295"
}
]
},
"tcpSocket": {
"port": "297",
"host": "298"
"port": 1843491416,
"host": "296"
},
"initialDelaySeconds": -860435782,
"timeoutSeconds": 1067125211,
"periodSeconds": -2088645849,
"successThreshold": 1900201288,
"failureThreshold": -766915393,
"terminationGracePeriodSeconds": 3557544419897236324
"initialDelaySeconds": -1204965397,
"timeoutSeconds": -494895708,
"periodSeconds": -1021949447,
"successThreshold": 802134138,
"failureThreshold": -942399354,
"terminationGracePeriodSeconds": 5431518803727886665
},
"readinessProbe": {
"exec": {
"command": [
"299"
"297"
]
},
"httpGet": {
"path": "300",
"port": -311014176,
"host": "301",
"path": "298",
"port": "299",
"host": "300",
"scheme": "J",
"httpHeaders": [
{
"name": "302",
"value": "303"
"name": "301",
"value": "302"
}
]
},
"tcpSocket": {
"port": 1076497581,
"port": "303",
"host": "304"
},
"initialDelaySeconds": 95144287,
"timeoutSeconds": 363405643,
"periodSeconds": 1635382953,
"successThreshold": -727263154,
"failureThreshold": -1449289597,
"terminationGracePeriodSeconds": 6328236602200940742
"initialDelaySeconds": 657418949,
"timeoutSeconds": -992558278,
"periodSeconds": 287654902,
"successThreshold": -2062708879,
"failureThreshold": 215186711,
"terminationGracePeriodSeconds": -607313695104609402
},
"startupProbe": {
"exec": {
@ -903,9 +905,9 @@
},
"httpGet": {
"path": "306",
"port": 248533396,
"port": -617381112,
"host": "307",
"scheme": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
"scheme": "8ŕİi騎C\"6x",
"httpHeaders": [
{
"name": "308",
@ -914,15 +916,15 @@
]
},
"tcpSocket": {
"port": -674445196,
"port": -852140121,
"host": "310"
},
"initialDelaySeconds": 1239158543,
"timeoutSeconds": -543432015,
"periodSeconds": -515370067,
"successThreshold": 2073046460,
"failureThreshold": 1692740191,
"terminationGracePeriodSeconds": -1195705267535749940
"initialDelaySeconds": 1606930340,
"timeoutSeconds": 940930263,
"periodSeconds": -860435782,
"successThreshold": 1067125211,
"failureThreshold": -2088645849,
"terminationGracePeriodSeconds": 8161302388850132593
},
"lifecycle": {
"postStart": {
@ -933,392 +935,394 @@
},
"httpGet": {
"path": "312",
"port": "313",
"host": "314",
"scheme": "Ǣ曣ŋayåe躒訙",
"port": 1167615307,
"host": "313",
"scheme": "vEȤƏ埮p",
"httpHeaders": [
{
"name": "315",
"value": "316"
"name": "314",
"value": "315"
}
]
},
"tcpSocket": {
"port": "317",
"host": "318"
"port": "316",
"host": "317"
}
},
"preStop": {
"exec": {
"command": [
"319"
"318"
]
},
"httpGet": {
"path": "320",
"port": "321",
"host": "322",
"scheme": "uE增猍ǵ xǨŴ",
"path": "319",
"port": 1575106083,
"host": "320",
"scheme": "ş",
"httpHeaders": [
{
"name": "323",
"value": "324"
"name": "321",
"value": "322"
}
]
},
"tcpSocket": {
"port": 2112112129,
"host": "325"
"port": "323",
"host": "324"
}
}
},
"terminationMessagePath": "326",
"terminationMessagePolicy": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗",
"imagePullPolicy": "ĒzŔ瘍Nʊ",
"terminationMessagePath": "325",
"terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
"imagePullPolicy": "ņ",
"securityContext": {
"capabilities": {
"add": [
"璾ėȜv"
"DŽ髐njʉBn(fǂǢ曣"
],
"drop": [
"b繐汚磉反-n覦灲閈誹"
"ay"
]
},
"privileged": true,
"privileged": false,
"seLinuxOptions": {
"user": "327",
"role": "328",
"type": "329",
"level": "330"
"user": "326",
"role": "327",
"type": "328",
"level": "329"
},
"windowsOptions": {
"gmsaCredentialSpecName": "331",
"gmsaCredentialSpec": "332",
"runAsUserName": "333"
"gmsaCredentialSpecName": "330",
"gmsaCredentialSpec": "331",
"runAsUserName": "332",
"hostProcess": true
},
"runAsUser": 8423952810832831481,
"runAsGroup": 7806703309589874498,
"runAsUser": -3576337664396773931,
"runAsGroup": -4786249339103684082,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
"procMount": "k(dŊiɢzĮ蛋I滞廬耐",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "u8晲",
"seccompProfile": {
"type": "焬CQm坊柩",
"localhostProfile": "334"
"type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
"localhostProfile": "333"
}
}
},
"stdin": true
}
],
"ephemeralContainers": [
{
"name": "335",
"image": "336",
"name": "334",
"image": "335",
"command": [
"337"
"336"
],
"args": [
"338"
"337"
],
"workingDir": "339",
"workingDir": "338",
"ports": [
{
"name": "340",
"hostPort": 1141812777,
"containerPort": -1830926023,
"protocol": "®EĨǔvÄÚ×p",
"hostIP": "341"
"name": "339",
"hostPort": 1453852685,
"containerPort": 2037135322,
"protocol": "ǧĒzŔ瘍N",
"hostIP": "340"
}
],
"envFrom": [
{
"prefix": "342",
"prefix": "341",
"configMapRef": {
"name": "343",
"name": "342",
"optional": true
},
"secretRef": {
"name": "344",
"name": "343",
"optional": true
}
}
],
"env": [
{
"name": "345",
"value": "346",
"name": "344",
"value": "345",
"valueFrom": {
"fieldRef": {
"apiVersion": "347",
"fieldPath": "348"
"apiVersion": "346",
"fieldPath": "347"
},
"resourceFieldRef": {
"containerName": "349",
"resource": "350",
"divisor": "60"
"containerName": "348",
"resource": "349",
"divisor": "464"
},
"configMapKeyRef": {
"name": "351",
"key": "352",
"name": "350",
"key": "351",
"optional": true
},
"secretKeyRef": {
"name": "353",
"key": "354",
"optional": true
"name": "352",
"key": "353",
"optional": false
}
}
}
],
"resources": {
"limits": {
"": "262"
"汚磉反-n": "653"
},
"requests": {
"Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶": "1"
"^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
}
},
"volumeMounts": [
{
"name": "355",
"mountPath": "356",
"subPath": "357",
"mountPropagation": "TGÒ鵌Ē3Nh×DJ",
"subPathExpr": "358"
"name": "354",
"mountPath": "355",
"subPath": "356",
"mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
"subPathExpr": "357"
}
],
"volumeDevices": [
{
"name": "359",
"devicePath": "360"
"name": "358",
"devicePath": "359"
}
],
"livenessProbe": {
"exec": {
"command": [
"361"
"360"
]
},
"httpGet": {
"path": "362",
"port": -514169648,
"host": "363",
"scheme": "\u0026疀",
"path": "361",
"port": -1088996269,
"host": "362",
"scheme": "ƘƵŧ1ƟƓ宆!",
"httpHeaders": [
{
"name": "364",
"value": "365"
"name": "363",
"value": "364"
}
]
},
"tcpSocket": {
"port": "366",
"host": "367"
"port": -1836225650,
"host": "365"
},
"initialDelaySeconds": -39292476,
"timeoutSeconds": 801902541,
"periodSeconds": -1312249623,
"successThreshold": -1089435479,
"failureThreshold": -1031303729,
"terminationGracePeriodSeconds": -7317946572666008364
"initialDelaySeconds": -1065853311,
"timeoutSeconds": 559999152,
"periodSeconds": -843639240,
"successThreshold": 1573261475,
"failureThreshold": -1211577347,
"terminationGracePeriodSeconds": 6567123901989213629
},
"readinessProbe": {
"exec": {
"command": [
"368"
"366"
]
},
"httpGet": {
"path": "369",
"port": "370",
"host": "371",
"scheme": "ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢",
"path": "367",
"port": 705333281,
"host": "368",
"scheme": "xƂ9阠",
"httpHeaders": [
{
"name": "372",
"value": "373"
"name": "369",
"value": "370"
}
]
},
"tcpSocket": {
"port": "374",
"host": "375"
"port": -916583020,
"host": "371"
},
"initialDelaySeconds": 2102595797,
"timeoutSeconds": -1921957558,
"periodSeconds": 180543684,
"successThreshold": -1050610482,
"failureThreshold": 1191111236,
"terminationGracePeriodSeconds": 5574781452707956333
"initialDelaySeconds": -606614374,
"timeoutSeconds": -3478003,
"periodSeconds": 498878902,
"successThreshold": 652646450,
"failureThreshold": 757223010,
"terminationGracePeriodSeconds": -8216131738691912586
},
"startupProbe": {
"exec": {
"command": [
"376"
"372"
]
},
"httpGet": {
"path": "377",
"port": "378",
"host": "379",
"scheme": "餸硷",
"path": "373",
"port": "374",
"host": "375",
"scheme": "Ů\u003cy鯶縆łƑ[澔",
"httpHeaders": [
{
"name": "380",
"value": "381"
"name": "376",
"value": "377"
}
]
},
"tcpSocket": {
"port": 731136838,
"host": "382"
"port": 1288391156,
"host": "378"
},
"initialDelaySeconds": 1701169865,
"timeoutSeconds": 685946195,
"periodSeconds": 1871363087,
"successThreshold": -614257963,
"failureThreshold": 1517970305,
"terminationGracePeriodSeconds": -3984053182430357055
"initialDelaySeconds": -952255430,
"timeoutSeconds": 1568034275,
"periodSeconds": -824007302,
"successThreshold": -359713104,
"failureThreshold": 1671084780,
"terminationGracePeriodSeconds": 1571605531283019612
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"383"
"379"
]
},
"httpGet": {
"path": "384",
"port": "385",
"host": "386",
"scheme": "ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ",
"path": "380",
"port": "381",
"host": "382",
"scheme": "%ʝ`ǭ",
"httpHeaders": [
{
"name": "387",
"value": "388"
"name": "383",
"value": "384"
}
]
},
"tcpSocket": {
"port": "389",
"host": "390"
"port": -1467648837,
"host": "385"
}
},
"preStop": {
"exec": {
"command": [
"391"
"386"
]
},
"httpGet": {
"path": "392",
"port": "393",
"host": "394",
"scheme": "cx赮ǒđ\u003e*劶?j",
"path": "387",
"port": "388",
"host": "389",
"scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
"httpHeaders": [
{
"name": "395",
"value": "396"
"name": "390",
"value": "391"
}
]
},
"tcpSocket": {
"port": "397",
"host": "398"
"port": "392",
"host": "393"
}
}
},
"terminationMessagePath": "399",
"terminationMessagePolicy": "¥",
"imagePullPolicy": "Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃",
"terminationMessagePath": "394",
"terminationMessagePolicy": "¯ÁȦtl敷斢",
"imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
"securityContext": {
"capabilities": {
"add": [
"ȕW歹s"
"鬬$矐_敕ű嵞嬯t{Eɾ"
],
"drop": [
"ɥʋăƻ遲"
"Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
]
},
"privileged": true,
"seLinuxOptions": {
"user": "400",
"role": "401",
"type": "402",
"level": "403"
"user": "395",
"role": "396",
"type": "397",
"level": "398"
},
"windowsOptions": {
"gmsaCredentialSpecName": "404",
"gmsaCredentialSpec": "405",
"runAsUserName": "406"
"gmsaCredentialSpecName": "399",
"gmsaCredentialSpec": "400",
"runAsUserName": "401",
"hostProcess": true
},
"runAsUser": 3805707846751185585,
"runAsGroup": 4820130167691486230,
"runAsUser": 4224635496843945227,
"runAsGroup": 73764735411458498,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm",
"allowPrivilegeEscalation": false,
"procMount": "s44矕Ƈè",
"seccompProfile": {
"type": "z鋎",
"localhostProfile": "407"
"type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
"localhostProfile": "402"
}
},
"tty": true,
"targetContainerName": "408"
"targetContainerName": "403"
}
],
"restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸",
"terminationGracePeriodSeconds": -8963807447996144781,
"activeDeadlineSeconds": -5539971415578447792,
"dnsPolicy": "6",
"restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
"terminationGracePeriodSeconds": -8335674866227004872,
"activeDeadlineSeconds": 3305070661619041050,
"dnsPolicy": "+Œ9两",
"nodeSelector": {
"409": "410"
"404": "405"
},
"serviceAccountName": "411",
"serviceAccount": "412",
"serviceAccountName": "406",
"serviceAccount": "407",
"automountServiceAccountToken": false,
"nodeName": "413",
"hostNetwork": true,
"nodeName": "408",
"hostPID": true,
"hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "414",
"role": "415",
"type": "416",
"level": "417"
"user": "409",
"role": "410",
"type": "411",
"level": "412"
},
"windowsOptions": {
"gmsaCredentialSpecName": "418",
"gmsaCredentialSpec": "419",
"runAsUserName": "420"
"gmsaCredentialSpecName": "413",
"gmsaCredentialSpec": "414",
"runAsUserName": "415",
"hostProcess": false
},
"runAsUser": 4290717681745188904,
"runAsGroup": 3355244307027629244,
"runAsNonRoot": false,
"runAsUser": 3438266910774132295,
"runAsGroup": 3230705132538051674,
"runAsNonRoot": true,
"supplementalGroups": [
-7106117411092125093
-1600417733583164525
],
"fsGroup": -9164240834267238973,
"fsGroup": -3964669311891901178,
"sysctls": [
{
"name": "421",
"value": "422"
"name": "416",
"value": "417"
}
],
"fsGroupChangePolicy": "",
"fsGroupChangePolicy": "ƴ4虵p",
"seccompProfile": {
"type": "d'呪",
"localhostProfile": "423"
"type": "沥7uPƒw©ɴĶ烷Ľthp",
"localhostProfile": "418"
}
},
"imagePullSecrets": [
{
"name": "424"
"name": "419"
}
],
"hostname": "425",
"subdomain": "426",
"hostname": "420",
"subdomain": "421",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -1326,19 +1330,19 @@
{
"matchExpressions": [
{
"key": "427",
"operator": "W瀤oɢ嫎¸殚篎3o8[y",
"key": "422",
"operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
"values": [
"428"
"423"
]
}
],
"matchFields": [
{
"key": "429",
"operator": "ï驿笈",
"key": "424",
"operator": " ",
"values": [
"430"
"425"
]
}
]
@ -1347,23 +1351,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -1009377808,
"weight": -5241849,
"preference": {
"matchExpressions": [
{
"key": "431",
"operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪",
"key": "426",
"operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
"values": [
"432"
"427"
]
}
],
"matchFields": [
{
"key": "433",
"operator": "惍EʦŊĊ娮rȧ",
"key": "428",
"operator": "[y#t(",
"values": [
"434"
"429"
]
}
]
@ -1376,7 +1380,7 @@
{
"labelSelector": {
"matchLabels": {
"u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c": ""
"rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
},
"matchExpressions": [
{
@ -1389,9 +1393,9 @@
]
},
"namespaces": [
"441"
"436"
],
"topologyKey": "442",
"topologyKey": "437",
"namespaceSelector": {
"matchLabels": {
"0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
@ -1421,9 +1425,9 @@
]
},
"namespaces": [
"455"
"450"
],
"topologyKey": "456",
"topologyKey": "451",
"namespaceSelector": {
"matchLabels": {
"Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
@ -1457,9 +1461,9 @@
]
},
"namespaces": [
"469"
"464"
],
"topologyKey": "470",
"topologyKey": "465",
"namespaceSelector": {
"matchLabels": {
"m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
@ -1492,9 +1496,9 @@
]
},
"namespaces": [
"483"
"478"
],
"topologyKey": "484",
"topologyKey": "479",
"namespaceSelector": {
"matchLabels": {
"o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
@ -1511,37 +1515,37 @@
]
}
},
"schedulerName": "491",
"schedulerName": "486",
"tolerations": [
{
"key": "492",
"key": "487",
"operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
"value": "493",
"value": "488",
"effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
"tolerationSeconds": 3252034671163905138
}
],
"hostAliases": [
{
"ip": "494",
"ip": "489",
"hostnames": [
"495"
"490"
]
}
],
"priorityClassName": "496",
"priorityClassName": "491",
"priority": 347613368,
"dnsConfig": {
"nameservers": [
"497"
"492"
],
"searches": [
"498"
"493"
],
"options": [
{
"name": "499",
"value": "500"
"name": "494",
"value": "495"
}
]
},
@ -1550,7 +1554,7 @@
"conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
}
],
"runtimeClassName": "501",
"runtimeClassName": "496",
"enableServiceLinks": false,
"preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
"overhead": {
@ -1559,7 +1563,7 @@
"topologySpreadConstraints": [
{
"maxSkew": -484382570,
"topologyKey": "502",
"topologyKey": "497",
"whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
"labelSelector": {
"matchLabels": {
@ -1591,13 +1595,13 @@
"status": {
"active": [
{
"kind": "509",
"namespace": "510",
"name": "511",
"kind": "504",
"namespace": "505",
"name": "506",
"uid": "暉Ŝ!ȣ绰",
"apiVersion": "512",
"resourceVersion": "513",
"fieldPath": "514"
"apiVersion": "507",
"resourceVersion": "508",
"fieldPath": "509"
}
]
}

View File

@ -110,34 +110,34 @@ spec:
selfLink: "48"
uid: A
spec:
activeDeadlineSeconds: -5539971415578447792
activeDeadlineSeconds: 3305070661619041050
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "431"
operator: a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪
- key: "426"
operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values:
- "432"
- "427"
matchFields:
- key: "433"
operator: 惍EʦŊĊ娮rȧ
- key: "428"
operator: '[y#t('
values:
- "434"
weight: -1009377808
- "429"
weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "427"
operator: W瀤oɢ嫎¸殚篎3o8[y
- key: "422"
operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
values:
- "428"
- "423"
matchFields:
- key: "429"
operator: ï驿笈
- key: "424"
operator: ' '
values:
- "430"
- "425"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -154,8 +154,8 @@ spec:
matchLabels:
Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
namespaces:
- "455"
topologyKey: "456"
- "450"
topologyKey: "451"
weight: -234140
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -165,7 +165,7 @@ spec:
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels:
u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq.c: ""
rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaceSelector:
matchExpressions:
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
@ -173,8 +173,8 @@ spec:
matchLabels:
0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
namespaces:
- "441"
topologyKey: "442"
- "436"
topologyKey: "437"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -192,8 +192,8 @@ spec:
? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
: I-._g_.._-hKc.OB_F_--.._m_-9
namespaces:
- "483"
topologyKey: "484"
- "478"
topologyKey: "479"
weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -213,8 +213,8 @@ spec:
matchLabels:
m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
namespaces:
- "469"
topologyKey: "470"
- "464"
topologyKey: "465"
automountServiceAccountToken: false
containers:
- args:
@ -228,13 +228,13 @@ spec:
configMapKeyRef:
key: "282"
name: "281"
optional: false
optional: true
fieldRef:
apiVersion: "277"
fieldPath: "278"
resourceFieldRef:
containerName: "279"
divisor: "107"
divisor: "50"
resource: "280"
secretKeyRef:
key: "284"
@ -243,354 +243,356 @@ spec:
envFrom:
- configMapRef:
name: "273"
optional: false
optional: true
prefix: "272"
secretRef:
name: "274"
optional: false
image: "266"
imagePullPolicy: ĒzŔ瘍Nʊ
imagePullPolicy: ņ
lifecycle:
postStart:
exec:
command:
- "311"
httpGet:
host: "314"
host: "313"
httpHeaders:
- name: "315"
value: "316"
- name: "314"
value: "315"
path: "312"
port: "313"
scheme: Ǣ曣ŋayåe躒訙
port: 1167615307
scheme: vEȤƏ埮p
tcpSocket:
host: "318"
port: "317"
host: "317"
port: "316"
preStop:
exec:
command:
- "319"
- "318"
httpGet:
host: "322"
host: "320"
httpHeaders:
- name: "323"
value: "324"
path: "320"
port: "321"
scheme: uE增猍ǵ xǨŴ
- name: "321"
value: "322"
path: "319"
port: 1575106083
scheme: ş
tcpSocket:
host: "325"
port: 2112112129
host: "324"
port: "323"
livenessProbe:
exec:
command:
- "291"
failureThreshold: -766915393
failureThreshold: -942399354
httpGet:
host: "294"
host: "293"
httpHeaders:
- name: "295"
value: "296"
- name: "294"
value: "295"
path: "292"
port: "293"
scheme: C"6x$1s
initialDelaySeconds: -860435782
periodSeconds: -2088645849
successThreshold: 1900201288
port: -1453143878
scheme: 鰥Z龏´DÒȗ
initialDelaySeconds: -1204965397
periodSeconds: -1021949447
successThreshold: 802134138
tcpSocket:
host: "298"
port: "297"
terminationGracePeriodSeconds: 3557544419897236324
timeoutSeconds: 1067125211
host: "296"
port: 1843491416
terminationGracePeriodSeconds: 5431518803727886665
timeoutSeconds: -494895708
name: "265"
ports:
- containerPort: 1157117817
- containerPort: -1296077882
hostIP: "271"
hostPort: -825277526
hostPort: 1156888068
name: "270"
protocol:
readinessProbe:
exec:
command:
- "299"
failureThreshold: -1449289597
- "297"
failureThreshold: 215186711
httpGet:
host: "301"
host: "300"
httpHeaders:
- name: "302"
value: "303"
path: "300"
port: -311014176
initialDelaySeconds: 95144287
periodSeconds: 1635382953
successThreshold: -727263154
- name: "301"
value: "302"
path: "298"
port: "299"
scheme: J
initialDelaySeconds: 657418949
periodSeconds: 287654902
successThreshold: -2062708879
tcpSocket:
host: "304"
port: 1076497581
terminationGracePeriodSeconds: 6328236602200940742
timeoutSeconds: 363405643
port: "303"
terminationGracePeriodSeconds: -607313695104609402
timeoutSeconds: -992558278
resources:
limits:
琕鶫:顇ə娯Ȱ囌{: "853"
´摖ȱ: "528"
requests:
Z龏´DÒȗÔÂɘɢ鬍熖B芭花: "372"
鍓贯澔 ƺ蛜6Ɖ飴: "86"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- 璾ėȜv
- DŽ髐njʉBn(fǂǢ曣
drop:
- b繐汚磉反-n覦灲閈誹
privileged: true
procMount: k(dŊiɢzĮ蛋I滞廬耐
readOnlyRootFilesystem: true
runAsGroup: 7806703309589874498
- ay
privileged: false
procMount: u8晲
readOnlyRootFilesystem: false
runAsGroup: -4786249339103684082
runAsNonRoot: true
runAsUser: 8423952810832831481
runAsUser: -3576337664396773931
seLinuxOptions:
level: "330"
role: "328"
type: "329"
user: "327"
level: "329"
role: "327"
type: "328"
user: "326"
seccompProfile:
localhostProfile: "334"
type: 焬CQm坊柩
localhostProfile: "333"
type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
windowsOptions:
gmsaCredentialSpec: "332"
gmsaCredentialSpecName: "331"
runAsUserName: "333"
gmsaCredentialSpec: "331"
gmsaCredentialSpecName: "330"
hostProcess: true
runAsUserName: "332"
startupProbe:
exec:
command:
- "305"
failureThreshold: 1692740191
failureThreshold: -2088645849
httpGet:
host: "307"
httpHeaders:
- name: "308"
value: "309"
path: "306"
port: 248533396
scheme: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
initialDelaySeconds: 1239158543
periodSeconds: -515370067
successThreshold: 2073046460
port: -617381112
scheme: 8ŕİi騎C"6x
initialDelaySeconds: 1606930340
periodSeconds: -860435782
successThreshold: 1067125211
tcpSocket:
host: "310"
port: -674445196
terminationGracePeriodSeconds: -1195705267535749940
timeoutSeconds: -543432015
terminationMessagePath: "326"
terminationMessagePolicy: ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗
port: -852140121
terminationGracePeriodSeconds: 8161302388850132593
timeoutSeconds: 940930263
stdin: true
terminationMessagePath: "325"
terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
volumeDevices:
- devicePath: "290"
name: "289"
volumeMounts:
- mountPath: "286"
mountPropagation: 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻
mountPropagation: ""
name: "285"
readOnly: true
subPath: "287"
subPathExpr: "288"
workingDir: "269"
dnsConfig:
nameservers:
- "497"
- "492"
options:
- name: "499"
value: "500"
- name: "494"
value: "495"
searches:
- "498"
dnsPolicy: "6"
- "493"
dnsPolicy: +Œ9两
enableServiceLinks: false
ephemeralContainers:
- args:
- "338"
command:
- "337"
command:
- "336"
env:
- name: "345"
value: "346"
- name: "344"
value: "345"
valueFrom:
configMapKeyRef:
key: "352"
name: "351"
key: "351"
name: "350"
optional: true
fieldRef:
apiVersion: "347"
fieldPath: "348"
apiVersion: "346"
fieldPath: "347"
resourceFieldRef:
containerName: "349"
divisor: "60"
resource: "350"
containerName: "348"
divisor: "464"
resource: "349"
secretKeyRef:
key: "354"
name: "353"
optional: true
key: "353"
name: "352"
optional: false
envFrom:
- configMapRef:
name: "342"
optional: true
prefix: "341"
secretRef:
name: "343"
optional: true
prefix: "342"
secretRef:
name: "344"
optional: true
image: "336"
imagePullPolicy: Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃
image: "335"
imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
lifecycle:
postStart:
exec:
command:
- "383"
- "379"
httpGet:
host: "386"
host: "382"
httpHeaders:
- name: "387"
value: "388"
path: "384"
port: "385"
scheme: ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ
- name: "383"
value: "384"
path: "380"
port: "381"
scheme: '%ʝ`ǭ'
tcpSocket:
host: "390"
port: "389"
host: "385"
port: -1467648837
preStop:
exec:
command:
- "391"
- "386"
httpGet:
host: "394"
host: "389"
httpHeaders:
- name: "395"
value: "396"
path: "392"
port: "393"
scheme: cx赮ǒđ>*劶?j
- name: "390"
value: "391"
path: "387"
port: "388"
scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
tcpSocket:
host: "398"
port: "397"
host: "393"
port: "392"
livenessProbe:
exec:
command:
- "361"
failureThreshold: -1031303729
- "360"
failureThreshold: -1211577347
httpGet:
host: "363"
host: "362"
httpHeaders:
- name: "364"
value: "365"
path: "362"
port: -514169648
scheme: '&疀'
initialDelaySeconds: -39292476
periodSeconds: -1312249623
successThreshold: -1089435479
- name: "363"
value: "364"
path: "361"
port: -1088996269
scheme: ƘƵŧ1ƟƓ宆!
initialDelaySeconds: -1065853311
periodSeconds: -843639240
successThreshold: 1573261475
tcpSocket:
host: "367"
port: "366"
terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: 801902541
name: "335"
host: "365"
port: -1836225650
terminationGracePeriodSeconds: 6567123901989213629
timeoutSeconds: 559999152
name: "334"
ports:
- containerPort: -1830926023
hostIP: "341"
hostPort: 1141812777
name: "340"
protocol: ®EĨǔvÄÚ×p
- containerPort: 2037135322
hostIP: "340"
hostPort: 1453852685
name: "339"
protocol: ǧĒzŔ瘍N
readinessProbe:
exec:
command:
- "368"
failureThreshold: 1191111236
- "366"
failureThreshold: 757223010
httpGet:
host: "371"
host: "368"
httpHeaders:
- name: "372"
value: "373"
path: "369"
port: "370"
scheme: ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
initialDelaySeconds: 2102595797
periodSeconds: 180543684
successThreshold: -1050610482
- name: "369"
value: "370"
path: "367"
port: 705333281
scheme: xƂ9阠
initialDelaySeconds: -606614374
periodSeconds: 498878902
successThreshold: 652646450
tcpSocket:
host: "375"
port: "374"
terminationGracePeriodSeconds: 5574781452707956333
timeoutSeconds: -1921957558
host: "371"
port: -916583020
terminationGracePeriodSeconds: -8216131738691912586
timeoutSeconds: -3478003
resources:
limits:
"": "262"
汚磉反-n: "653"
requests:
Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů<y鯶: "1"
^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ȕW歹s
- 鬬$矐_敕ű嵞嬯t{Eɾ
drop:
- ɥʋăƻ遲
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true
procMount: Ů嫠!@@)Zq=歍þ螗ɃŒGm
procMount: s44矕Ƈè
readOnlyRootFilesystem: false
runAsGroup: 4820130167691486230
runAsGroup: 73764735411458498
runAsNonRoot: false
runAsUser: 3805707846751185585
runAsUser: 4224635496843945227
seLinuxOptions:
level: "403"
role: "401"
type: "402"
user: "400"
level: "398"
role: "396"
type: "397"
user: "395"
seccompProfile:
localhostProfile: "407"
type: z鋎
localhostProfile: "402"
type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions:
gmsaCredentialSpec: "405"
gmsaCredentialSpecName: "404"
runAsUserName: "406"
gmsaCredentialSpec: "400"
gmsaCredentialSpecName: "399"
hostProcess: true
runAsUserName: "401"
startupProbe:
exec:
command:
- "376"
failureThreshold: 1517970305
- "372"
failureThreshold: 1671084780
httpGet:
host: "379"
host: "375"
httpHeaders:
- name: "380"
value: "381"
path: "377"
port: "378"
scheme: 餸硷
initialDelaySeconds: 1701169865
periodSeconds: 1871363087
successThreshold: -614257963
- name: "376"
value: "377"
path: "373"
port: "374"
scheme: Ů<y鯶縆łƑ[澔
initialDelaySeconds: -952255430
periodSeconds: -824007302
successThreshold: -359713104
tcpSocket:
host: "382"
port: 731136838
terminationGracePeriodSeconds: -3984053182430357055
timeoutSeconds: 685946195
targetContainerName: "408"
terminationMessagePath: "399"
terminationMessagePolicy: ¥
host: "378"
port: 1288391156
terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 1568034275
targetContainerName: "403"
terminationMessagePath: "394"
terminationMessagePolicy: ¯ÁȦtl敷斢
tty: true
volumeDevices:
- devicePath: "360"
name: "359"
- devicePath: "359"
name: "358"
volumeMounts:
- mountPath: "356"
mountPropagation: TGÒ鵌Ē3Nh×DJ
name: "355"
subPath: "357"
subPathExpr: "358"
workingDir: "339"
- mountPath: "355"
mountPropagation: 蛋I滞廬耐鷞焬CQm坊柩
name: "354"
subPath: "356"
subPathExpr: "357"
workingDir: "338"
hostAliases:
- hostnames:
- "495"
ip: "494"
hostIPC: true
hostNetwork: true
- "490"
ip: "489"
hostPID: true
hostname: "425"
hostname: "420"
imagePullSecrets:
- name: "424"
- name: "419"
initContainers:
- args:
- "200"
@ -711,18 +713,18 @@ spec:
requests:
I\p[: "853"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
drop:
- 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥
privileged: false
procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ
readOnlyRootFilesystem: true
runAsGroup: -5569844914519516591
procMount: 队偯J僳徥淳4揻
readOnlyRootFilesystem: false
runAsGroup: -5647743520459672618
runAsNonRoot: true
runAsUser: -3342656999442156006
runAsUser: 8833778257967181711
seLinuxOptions:
level: "260"
role: "258"
@ -730,10 +732,11 @@ spec:
user: "257"
seccompProfile:
localhostProfile: "264"
type: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
type: $ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ
windowsOptions:
gmsaCredentialSpec: "262"
gmsaCredentialSpecName: "261"
hostProcess: false
runAsUserName: "263"
startupProbe:
exec:
@ -756,9 +759,9 @@ spec:
terminationGracePeriodSeconds: 6347577485454457915
timeoutSeconds: -200461294
stdin: true
stdinOnce: true
terminationMessagePath: "256"
terminationMessagePolicy: t叀碧闳ȩr嚧ʣq埄
tty: true
volumeDevices:
- devicePath: "222"
name: "221"
@ -770,54 +773,55 @@ spec:
subPath: "219"
subPathExpr: "220"
workingDir: "201"
nodeName: "413"
nodeName: "408"
nodeSelector:
"409": "410"
"404": "405"
overhead:
D輷: "792"
preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 347613368
priorityClassName: "496"
priorityClassName: "491"
readinessGates:
- conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸
runtimeClassName: "501"
schedulerName: "491"
restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "496"
schedulerName: "486"
securityContext:
fsGroup: -9164240834267238973
fsGroupChangePolicy: ""
runAsGroup: 3355244307027629244
runAsNonRoot: false
runAsUser: 4290717681745188904
fsGroup: -3964669311891901178
fsGroupChangePolicy: ƴ4虵p
runAsGroup: 3230705132538051674
runAsNonRoot: true
runAsUser: 3438266910774132295
seLinuxOptions:
level: "417"
role: "415"
type: "416"
user: "414"
level: "412"
role: "410"
type: "411"
user: "409"
seccompProfile:
localhostProfile: "423"
type: d'呪
localhostProfile: "418"
type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups:
- -7106117411092125093
- -1600417733583164525
sysctls:
- name: "421"
value: "422"
- name: "416"
value: "417"
windowsOptions:
gmsaCredentialSpec: "419"
gmsaCredentialSpecName: "418"
runAsUserName: "420"
serviceAccount: "412"
serviceAccountName: "411"
gmsaCredentialSpec: "414"
gmsaCredentialSpecName: "413"
hostProcess: false
runAsUserName: "415"
serviceAccount: "407"
serviceAccountName: "406"
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "426"
terminationGracePeriodSeconds: -8963807447996144781
subdomain: "421"
terminationGracePeriodSeconds: -8335674866227004872
tolerations:
- effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "492"
key: "487"
operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: 3252034671163905138
value: "493"
value: "488"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
@ -828,7 +832,7 @@ spec:
matchLabels:
n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -484382570
topologyKey: "502"
topologyKey: "497"
whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes:
- awsElasticBlockStore:
@ -1090,10 +1094,10 @@ spec:
suspend: true
status:
active:
- apiVersion: "512"
fieldPath: "514"
kind: "509"
name: "511"
namespace: "510"
resourceVersion: "513"
- apiVersion: "507"
fieldPath: "509"
kind: "504"
name: "506"
namespace: "505"
resourceVersion: "508"
uid: 暉Ŝ!ȣ绰

View File

@ -736,19 +736,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "263",
"gmsaCredentialSpec": "264",
"runAsUserName": "265"
"runAsUserName": "265",
"hostProcess": false
},
"runAsUser": 5431518803727886665,
"runAsGroup": -545284475172904979,
"runAsNonRoot": false,
"runAsUser": -7747494447986851160,
"runAsGroup": 802922970712269023,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "",
"allowPrivilegeEscalation": false,
"procMount": "録²Ŏ)/灩聋3趐囨鏻砅邻爥",
"seccompProfile": {
"type": "²Ŏ)/灩聋3趐囨",
"type": "ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS",
"localhostProfile": "266"
}
}
},
"stdin": true,
"tty": true
}
],
"containers": [
@ -765,9 +768,9 @@
"ports": [
{
"name": "272",
"hostPort": -1733181402,
"containerPort": -1365158918,
"protocol": "OǨ繫ʎǑyZ",
"hostPort": -2130294761,
"containerPort": -788152336,
"protocol": "ɵ",
"hostIP": "273"
}
],
@ -776,11 +779,11 @@
"prefix": "274",
"configMapRef": {
"name": "275",
"optional": false
"optional": true
},
"secretRef": {
"name": "276",
"optional": true
"optional": false
}
}
],
@ -796,12 +799,12 @@
"resourceFieldRef": {
"containerName": "281",
"resource": "282",
"divisor": "516"
"divisor": "879"
},
"configMapKeyRef": {
"name": "283",
"key": "284",
"optional": true
"optional": false
},
"secretKeyRef": {
"name": "285",
@ -813,19 +816,18 @@
],
"resources": {
"limits": {
"": "991"
"擭銆jʒǚ鍰\\縑": "992"
},
"requests": {
"斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ": "850"
"鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ": "400"
}
},
"volumeMounts": [
{
"name": "287",
"readOnly": true,
"mountPath": "288",
"subPath": "289",
"mountPropagation": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"mountPropagation": "(fǂǢ曣ŋayå",
"subPathExpr": "290"
}
],
@ -843,9 +845,9 @@
},
"httpGet": {
"path": "294",
"port": -543432015,
"port": 1616390418,
"host": "295",
"scheme": "ƷƣMț",
"scheme": "趭(娕uE增猍ǵ x",
"httpHeaders": [
{
"name": "296",
@ -857,12 +859,12 @@
"port": "298",
"host": "299"
},
"initialDelaySeconds": -211480108,
"timeoutSeconds": -200074798,
"periodSeconds": 556036216,
"successThreshold": -1838917931,
"failureThreshold": -1563928252,
"terminationGracePeriodSeconds": -1301089041686500367
"initialDelaySeconds": -1320027474,
"timeoutSeconds": -1750169306,
"periodSeconds": 2112112129,
"successThreshold": 528603974,
"failureThreshold": -342387625,
"terminationGracePeriodSeconds": 7999187157758442620
},
"readinessProbe": {
"exec": {
@ -872,9 +874,9 @@
},
"httpGet": {
"path": "301",
"port": 455919108,
"port": -647531549,
"host": "302",
"scheme": "崍h趭(娕u",
"scheme": "ʠɜ瞍阎lğ Ņ",
"httpHeaders": [
{
"name": "303",
@ -883,27 +885,27 @@
]
},
"tcpSocket": {
"port": 805162379,
"host": "305"
"port": "305",
"host": "306"
},
"initialDelaySeconds": 1486914884,
"timeoutSeconds": -641001381,
"periodSeconds": -977348956,
"successThreshold": -637630736,
"failureThreshold": 601942575,
"terminationGracePeriodSeconds": -5669474827175536499
"initialDelaySeconds": -602411444,
"timeoutSeconds": -1519458130,
"periodSeconds": 711356517,
"successThreshold": -598179789,
"failureThreshold": 317211081,
"terminationGracePeriodSeconds": -8307777636454344321
},
"startupProbe": {
"exec": {
"command": [
"306"
"307"
]
},
"httpGet": {
"path": "307",
"port": "308",
"path": "308",
"port": 65094252,
"host": "309",
"scheme": "Ã茓pȓɻ",
"scheme": "æ盪泙若`l}Ñ蠂Ü",
"httpHeaders": [
{
"name": "310",
@ -912,37 +914,37 @@
]
},
"tcpSocket": {
"port": "312",
"host": "313"
"port": 1388874570,
"host": "312"
},
"initialDelaySeconds": 1737172479,
"timeoutSeconds": -767058113,
"periodSeconds": 1223564938,
"successThreshold": 1241693652,
"failureThreshold": 1803882645,
"terminationGracePeriodSeconds": 8011596308221389971
"initialDelaySeconds": 1618861163,
"timeoutSeconds": 413903479,
"periodSeconds": 1708236944,
"successThreshold": -1192140557,
"failureThreshold": 1961354355,
"terminationGracePeriodSeconds": -8493878174888297652
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"314"
"313"
]
},
"httpGet": {
"path": "315",
"port": "316",
"host": "317",
"scheme": "ĒzŔ瘍Nʊ",
"path": "314",
"port": "315",
"host": "316",
"scheme": "Ik(dŊiɢzĮ蛋I",
"httpHeaders": [
{
"name": "318",
"value": "319"
"name": "317",
"value": "318"
}
]
},
"tcpSocket": {
"port": 2073630689,
"port": "319",
"host": "320"
}
},
@ -956,7 +958,7 @@
"path": "322",
"port": "323",
"host": "324",
"scheme": "泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ",
"scheme": "}礤铟怖ý萜Ǖc8ǣ",
"httpHeaders": [
{
"name": "325",
@ -971,15 +973,15 @@
}
},
"terminationMessagePath": "329",
"terminationMessagePolicy": "Ƽ¨Ix糂腂ǂǚŜEu",
"imagePullPolicy": "I滞廬耐鷞焬CQm坊柩劄奼[",
"terminationMessagePolicy": "ŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽżLj捲攻",
"imagePullPolicy": "U",
"securityContext": {
"capabilities": {
"add": [
"ĝ®EĨǔvÄÚ×p鬷"
"襕ċ桉桃喕蠲$ɛ溢臜裡×銵"
],
"drop": [
"罂o3ǰ廋i乳'ȘUɻ;襕ċ桉桃"
"紑浘牬釼aTGÒ鵌Ē3Nh×DJɶ羹ƞ"
]
},
"privileged": true,
@ -992,20 +994,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "334",
"gmsaCredentialSpec": "335",
"runAsUserName": "336"
"runAsUserName": "336",
"hostProcess": true
},
"runAsUser": 2803095162614904173,
"runAsGroup": -1207159809527615562,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "-紑浘牬釼aTGÒ鵌",
"runAsUser": -4166164136222066963,
"runAsGroup": 6462962492290658756,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "筇ȟP",
"seccompProfile": {
"type": "3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶",
"type": "/a殆诵H玲鑠ĭ$",
"localhostProfile": "337"
}
},
"stdin": true
"stdinOnce": true,
"tty": true
}
],
"ephemeralContainers": [
@ -1022,9 +1026,9 @@
"ports": [
{
"name": "343",
"hostPort": -257245030,
"containerPort": -166419777,
"protocol": "a殆诵H玲",
"hostPort": 488431979,
"containerPort": -253063948,
"protocol": "橱9ij\\Ď愝Ű藛b磾s",
"hostIP": "344"
}
],
@ -1037,7 +1041,7 @@
},
"secretRef": {
"name": "347",
"optional": false
"optional": true
}
}
],
@ -1053,12 +1057,12 @@
"resourceFieldRef": {
"containerName": "352",
"resource": "353",
"divisor": "274"
"divisor": "522"
},
"configMapKeyRef": {
"name": "354",
"key": "355",
"optional": false
"optional": true
},
"secretKeyRef": {
"name": "356",
@ -1070,10 +1074,10 @@
],
"resources": {
"limits": {
"9ij\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ": "895"
"ƺL肄$鬬$矐_敕ű嵞嬯": "84"
},
"requests": {
"櫞繡旹翃ɾ氒ĺʈʫ羶剹Ɗ": "151"
"姰l咑耖p^鏋蛹Ƚȿ": "232"
}
},
"volumeMounts": [
@ -1082,7 +1086,7 @@
"readOnly": true,
"mountPath": "359",
"subPath": "360",
"mountPropagation": "{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬɸ",
"mountPropagation": "ƬɸĻo:{柯?B俋¬h`職",
"subPathExpr": "361"
}
],
@ -1102,7 +1106,7 @@
"path": "365",
"port": "366",
"host": "367",
"scheme": "cx赮ǒđ\u003e*劶?j",
"scheme": "¥",
"httpHeaders": [
{
"name": "368",
@ -1114,12 +1118,12 @@
"port": "370",
"host": "371"
},
"initialDelaySeconds": 1008425444,
"timeoutSeconds": -821592382,
"periodSeconds": 1678953375,
"successThreshold": 1045190247,
"failureThreshold": 1805682547,
"terminationGracePeriodSeconds": -2797767251501326723
"initialDelaySeconds": 1045190247,
"timeoutSeconds": 1805682547,
"periodSeconds": -651405950,
"successThreshold": 1903147240,
"failureThreshold": 178262944,
"terminationGracePeriodSeconds": 7591592723235237403
},
"readinessProbe": {
"exec": {
@ -1129,26 +1133,26 @@
},
"httpGet": {
"path": "373",
"port": 2032588794,
"host": "374",
"scheme": "鍃G昧牱",
"port": "374",
"host": "375",
"scheme": "昧牱fsǕT衩kƒK0",
"httpHeaders": [
{
"name": "375",
"value": "376"
"name": "376",
"value": "377"
}
]
},
"tcpSocket": {
"port": "377",
"port": -629974246,
"host": "378"
},
"initialDelaySeconds": -215316554,
"timeoutSeconds": -2141869576,
"periodSeconds": 1521292403,
"successThreshold": -283400620,
"failureThreshold": -394464008,
"terminationGracePeriodSeconds": 911858222236680643
"initialDelaySeconds": 22814565,
"timeoutSeconds": -89787189,
"periodSeconds": -96528156,
"successThreshold": -2043135662,
"failureThreshold": 240154501,
"terminationGracePeriodSeconds": -1988677584282886128
},
"startupProbe": {
"exec": {
@ -1158,9 +1162,9 @@
},
"httpGet": {
"path": "380",
"port": -629974246,
"port": 1885676566,
"host": "381",
"scheme": "œj堑ūM鈱ɖ'蠨磼O_h",
"scheme": "O_h盌3+Œ9两@8Byß讪Ă2",
"httpHeaders": [
{
"name": "382",
@ -1169,15 +1173,15 @@
]
},
"tcpSocket": {
"port": -2033879721,
"port": -281926929,
"host": "384"
},
"initialDelaySeconds": -1026606578,
"timeoutSeconds": -25232164,
"periodSeconds": -645536124,
"successThreshold": 896697276,
"failureThreshold": 279062028,
"terminationGracePeriodSeconds": 4458982675949227932
"initialDelaySeconds": -372626292,
"timeoutSeconds": 2018111855,
"periodSeconds": 1019901190,
"successThreshold": -1625381496,
"failureThreshold": -548803057,
"terminationGracePeriodSeconds": -8201340979270163756
},
"lifecycle": {
"postStart": {
@ -1188,18 +1192,18 @@
},
"httpGet": {
"path": "386",
"port": -1289510276,
"host": "387",
"scheme": "ŒGm¨z鋎靀G",
"port": "387",
"host": "388",
"scheme": "ǹʅŚO虀^背",
"httpHeaders": [
{
"name": "388",
"value": "389"
"name": "389",
"value": "390"
}
]
},
"tcpSocket": {
"port": "390",
"port": -1442230895,
"host": "391"
}
},
@ -1211,9 +1215,9 @@
},
"httpGet": {
"path": "393",
"port": 1289969734,
"port": 1468940509,
"host": "394",
"scheme": "7uPƒw©ɴĶ烷Ľ",
"scheme": "像-觗裓6Ř",
"httpHeaders": [
{
"name": "395",
@ -1222,23 +1226,24 @@
]
},
"tcpSocket": {
"port": 1468940509,
"port": 1762917570,
"host": "397"
}
}
},
"terminationMessagePath": "398",
"terminationMessagePolicy": "像-觗裓6Ř",
"terminationMessagePolicy": "Ų買霎ȃň[\u003eą",
"imagePullPolicy": "ĖRh}颉hȱɷȰW瀤oɢ嫎¸殚篎",
"securityContext": {
"capabilities": {
"add": [
"蚢鑸鶲Ãq"
"8[y#t(ȗŜŲ"
],
"drop": [
"轫ʓ滨ĖRh}颉"
""
]
},
"privileged": false,
"privileged": true,
"seLinuxOptions": {
"user": "399",
"role": "400",
@ -1248,16 +1253,17 @@
"windowsOptions": {
"gmsaCredentialSpecName": "403",
"gmsaCredentialSpec": "404",
"runAsUserName": "405"
"runAsUserName": "405",
"hostProcess": false
},
"runAsUser": -7492598848400758567,
"runAsGroup": -4328915352766545090,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "¸殚篎3",
"runAsUser": 4233308148542782456,
"runAsGroup": -2958928304063527963,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "ǾɁ鍻G鯇ɀ魒Ð扬=惍E",
"seccompProfile": {
"type": "8[y#t(ȗŜŲ",
"type": "ŊĊ娮rȧŹ黷",
"localhostProfile": "406"
}
},
@ -1265,19 +1271,19 @@
"targetContainerName": "407"
}
],
"restartPolicy": "y",
"terminationGracePeriodSeconds": -1357828024706138776,
"activeDeadlineSeconds": -3501425899000054955,
"restartPolicy": ";Ƭ婦d%蹶/ʗp壥Ƥ",
"terminationGracePeriodSeconds": -6472827475835479775,
"activeDeadlineSeconds": -1598226175696024006,
"dnsPolicy": "z委\u003e,趐V曡88 ",
"nodeSelector": {
"408": "409"
},
"serviceAccountName": "410",
"serviceAccount": "411",
"automountServiceAccountToken": true,
"automountServiceAccountToken": false,
"nodeName": "412",
"hostNetwork": true,
"hostIPC": true,
"shareProcessNamespace": true,
"hostPID": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "413",
@ -1288,24 +1294,25 @@
"windowsOptions": {
"gmsaCredentialSpecName": "417",
"gmsaCredentialSpec": "418",
"runAsUserName": "419"
"runAsUserName": "419",
"hostProcess": true
},
"runAsUser": -4962946920772050319,
"runAsGroup": 5200080507234099655,
"runAsUser": -5785208110583552190,
"runAsGroup": -8157642381087094542,
"runAsNonRoot": true,
"supplementalGroups": [
-4548866432246561416
-6356503130840432651
],
"fsGroup": -6276111079389958404,
"fsGroup": -2019276087967685705,
"sysctls": [
{
"name": "420",
"value": "421"
}
],
"fsGroupChangePolicy": "œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ",
"fsGroupChangePolicy": "2 ɲ±m嵘厶sȰÖ埡ÆɰŞ",
"seccompProfile": {
"type": "ʫį淓¯Ą0ƛ忀z委\u003e,趐V曡88 ",
"type": "樞úʥ銀ƨ",
"localhostProfile": "422"
}
},
@ -1324,7 +1331,7 @@
"matchExpressions": [
{
"key": "426",
"operator": "刪q塨Ý-扚聧扈4ƫZɀȩ愉",
"operator": "'o儿Ƭ銭u裡_",
"values": [
"427"
]
@ -1333,7 +1340,7 @@
"matchFields": [
{
"key": "428",
"operator": "m嵘厶sȰÖ埡ÆɰŞ襵樞",
"operator": "L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i",
"values": [
"429"
]
@ -1344,12 +1351,12 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 2082229073,
"weight": -1896690864,
"preference": {
"matchExpressions": [
{
"key": "430",
"operator": "ƨɤ血x柱栦阫Ƈʥ椹",
"operator": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI",
"values": [
"431"
]
@ -1358,7 +1365,7 @@
"matchFields": [
{
"key": "432",
"operator": "_",
"operator": "",
"values": [
"433"
]
@ -1373,14 +1380,14 @@
{
"labelSelector": {
"matchLabels": {
"3--51": "h-K5y_AzOBW.9oE9_6.-v"
"Z___._6..tf-_u-3-_n0..p": "S.K"
},
"matchExpressions": [
{
"key": "064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4",
"operator": "In",
"key": "Fgw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw_7a2",
"operator": "NotIn",
"values": [
"S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7"
"j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.--_-_ve5.m_2d"
]
}
]
@ -1391,15 +1398,12 @@
"topologyKey": "441",
"namespaceSelector": {
"matchLabels": {
"j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp": "H_.39g_.--_-_ve5.m_2_--XZ-x.__.M"
"e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0": "2_I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.7"
},
"matchExpressions": [
{
"key": "Pw_-r75--_-A-oQ",
"operator": "NotIn",
"values": [
"3i__a.O2G_-_K-.03.mp.-10k"
]
"key": "L._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23W",
"operator": "Exists"
}
]
}
@ -1407,16 +1411,19 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 256213209,
"weight": -1250715930,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z": "i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ"
"8-7AlR__8-7_-YD-Q9_-_1": "YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.37"
},
"matchExpressions": [
{
"key": "7Pn-W23-_.z_.._s--_F-BR-.h_-2-s",
"operator": "Exists"
"key": "oe7-7973b--7-n-34-h/C4_-_2G0.-c_C.G.hu",
"operator": "In",
"values": [
"qu.._.105-4_ed-0-iz"
]
}
]
},
@ -1426,11 +1433,11 @@
"topologyKey": "455",
"namespaceSelector": {
"matchLabels": {
"2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t": "V._nV34GH"
"8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w": "61P_.D8_t..-Ww27"
},
"matchExpressions": [
{
"key": "9105-4_ed-0-i_zZsY_o8t5Vl6_..C",
"key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1",
"operator": "DoesNotExist"
}
]
@ -1444,14 +1451,14 @@
{
"labelSelector": {
"matchLabels": {
"q0o.0C_gV.9_G-.-z1YH": "b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA"
"2.u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w": "QCJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT2"
},
"matchExpressions": [
{
"key": "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp",
"key": "wc89k-0-57z4063---k1b6x91-0f-w8l--7c17j.n78aou-jf35-k7cr-mo-dz12----8q--n260pvo8-8---ln-9ei-vi9g-dn--q/4...rBQ.9-_.m7-Q____vSW_4-___-_--x",
"operator": "NotIn",
"values": [
"MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg"
"81_---l_3_-_G-D....js--a---..6bD_M--c.0Q-2"
]
}
]
@ -1462,15 +1469,12 @@
"topologyKey": "469",
"namespaceSelector": {
"matchLabels": {
"4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T": "P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8"
"4-tf---7r88-1--p61cd--s-nu5718--lks7d-x99/8-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-R6_Q": "ai.D7-_5"
},
"matchExpressions": [
{
"key": "0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP",
"operator": "In",
"values": [
"396h8.G__B3"
]
"key": "le-to9e--a-7je9fz87-2jvd23-0p9j1t36--a4bl-gq38v7--a2o5.o-4k0267h5/m06jVZ-uP.t_.O937u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1W",
"operator": "DoesNotExist"
}
]
}
@ -1478,16 +1482,16 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 1856144088,
"weight": 1093414706,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"Q-.-.g-_Z_-nSLq": "4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3"
"75-.._r6M__4-P-g3Jt6e9G.-84": "W-.auZTcwJ._KVpx_0-.mJe__.B-cd2_84-M-_-U...s._K9-.AJ-_8-W"
},
"matchExpressions": [
{
"key": "3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5",
"operator": "Exists"
"key": "3---49t7/87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.--8",
"operator": "DoesNotExist"
}
]
},
@ -1497,12 +1501,15 @@
"topologyKey": "483",
"namespaceSelector": {
"matchLabels": {
"2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6": "px_0-.mJe__.B-cd2_4"
"a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..P": "whQ7be__-.-g5"
},
"matchExpressions": [
{
"key": "1s._K9-.AJ-_8--___b____03_6.K8lY",
"operator": "Exists"
"key": "P__n.__16ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..0",
"operator": "In",
"values": [
"h_qD-J_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DLo"
]
}
]
}
@ -1515,10 +1522,10 @@
"tolerations": [
{
"key": "491",
"operator": "0yVA嬂刲;牆詒ĸąs",
"operator": "ʇɆȏ+\u0026ɃB沅零",
"value": "492",
"effect": "kx-餌勀奷Ŏ",
"tolerationSeconds": -9038755672632113093
"effect": "=Ĉ鳟/d\u0026蒡榤Ⱦ盜ŭ飼",
"tolerationSeconds": 5710269275969351972
}
],
"hostAliases": [
@ -1530,7 +1537,7 @@
}
],
"priorityClassName": "495",
"priority": -1133320634,
"priority": 171558604,
"dnsConfig": {
"nameservers": [
"496"
@ -1547,39 +1554,42 @@
},
"readinessGates": [
{
"conditionType": "į"
"conditionType": "鳢.ǀŭ瘢颦z疵悡nȩ純z邜排A"
}
],
"runtimeClassName": "500",
"enableServiceLinks": true,
"preemptionPolicy": "Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ",
"preemptionPolicy": "{De½t;Äƾ",
"overhead": {
"k_": "725"
"3§T旦y6辱Ŵ鎥": "789"
},
"topologySpreadConstraints": [
{
"maxSkew": -2046521037,
"maxSkew": 1725443144,
"topologyKey": "501",
"whenUnsatisfiable": "\"T#sM網m",
"whenUnsatisfiable": "ƫƍƙơ卍睊Pǎ玒",
"labelSelector": {
"matchLabels": {
"3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5": "019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6"
"1h9-z8-35x38iq/V_-q-L34-_D86-Wg": "51_n4a-n.Q_-.__A9-4l_m.A.Zi___Y__YDuzh9N6-...2_.Qa"
},
"matchExpressions": [
{
"key": "B.rTt7bm9I.-..q-F-.__ck",
"operator": "DoesNotExist"
"key": "086----3-893097-0zy976-0--q-90fo4gk.3f--5nwy-m0---063-r-z-n1l3j-4175-x-0---9/s",
"operator": "In",
"values": [
"79_j570n__.-7_I8.--4-___..1N"
]
}
]
}
}
],
"setHostnameAsFQDN": false
"setHostnameAsFQDN": true
}
},
"ttlSecondsAfterFinished": -2143422853,
"completionMode": "烡Z树Ȁ謁Ƹɮ-nʣž吞Ƞ唄",
"suspend": true
"ttlSecondsAfterFinished": -654972141,
"completionMode": "]ɬ朞ɄƶÁ1!ƜaǓÜ覚镉嵸ɫò",
"suspend": false
}
}
}

View File

@ -64,7 +64,7 @@ template:
spec:
activeDeadlineSeconds: -9086179100394185427
backoffLimit: -1796008812
completionMode: 烡Z树Ȁ謁Ƹɮ-nʣž吞Ƞ唄
completionMode: ']ɬ朞ɄƶÁ1!ƜaǓÜ覚镉嵸ɫò'
completions: -1771909905
manualSelector: false
parallelism: -443114323
@ -76,7 +76,7 @@ template:
- Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8
matchLabels:
g5i9/l-Y._.-444: c2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am64
suspend: true
suspend: false
template:
metadata:
annotations:
@ -109,32 +109,32 @@ template:
selfLink: "47"
uid: Ȗ脵鴈Ō
spec:
activeDeadlineSeconds: -3501425899000054955
activeDeadlineSeconds: -1598226175696024006
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "430"
operator: ƨɤ血x柱栦阫Ƈʥ椹
operator: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
values:
- "431"
matchFields:
- key: "432"
operator: _
operator: ""
values:
- "433"
weight: 2082229073
weight: -1896690864
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "426"
operator: 刪q塨Ý-扚聧扈4ƫZɀȩ愉
operator: '''o儿Ƭ銭u裡_'
values:
- "427"
matchFields:
- key: "428"
operator: m嵘厶sȰÖ埡ÆɰŞ襵樞
operator: L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i
values:
- "429"
podAffinity:
@ -142,37 +142,37 @@ template:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 7Pn-W23-_.z_.._s--_F-BR-.h_-2-s
operator: Exists
- key: oe7-7973b--7-n-34-h/C4_-_2G0.-c_C.G.hu
operator: In
values:
- qu.._.105-4_ed-0-iz
matchLabels:
fY6T4g_-.._Lf2t_m...CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2Z: i_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-__bJ
8-7AlR__8-7_-YD-Q9_-_1: YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.37
namespaceSelector:
matchExpressions:
- key: 9105-4_ed-0-i_zZsY_o8t5Vl6_..C
- key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
operator: DoesNotExist
matchLabels:
2--4-r4p--w1k8--y.e2-08vc--4-7hdum1-f-7-k8q/YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-t: V._nV34GH
8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w: 61P_.D8_t..-Ww27
namespaces:
- "454"
topologyKey: "455"
weight: 256213209
weight: -1250715930
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 064eqk5--f4e4--r1k278l-d-8o1-x-1wl----fr.ajz-659--0l-029/2bIZ__4
operator: In
values:
- S6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw7
matchLabels:
3--51: h-K5y_AzOBW.9oE9_6.-v
namespaceSelector:
matchExpressions:
- key: Pw_-r75--_-A-oQ
- key: Fgw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.--4Z7__i1T.miw_7a2
operator: NotIn
values:
- 3i__a.O2G_-_K-.03.mp.-10k
- j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.--_-_ve5.m_2d
matchLabels:
j_.5.40Rw4gD.._.-x6db-L7.-__-G_2kp: H_.39g_.--_-_ve5.m_2_--XZ-x.__.M
Z___._6..tf-_u-3-_n0..p: S.K
namespaceSelector:
matchExpressions:
- key: L._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23W
operator: Exists
matchLabels:
e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0: 2_I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.7
namespaces:
- "440"
topologyKey: "441"
@ -181,42 +181,41 @@ template:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 3d/6_M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy-5
operator: Exists
- key: 3---49t7/87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.--8
operator: DoesNotExist
matchLabels:
Q-.-.g-_Z_-nSLq: 4P--_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O3
75-.._r6M__4-P-g3Jt6e9G.-84: W-.auZTcwJ._KVpx_0-.mJe__.B-cd2_84-M-_-U...s._K9-.AJ-_8-W
namespaceSelector:
matchExpressions:
- key: 1s._K9-.AJ-_8--___b____03_6.K8lY
operator: Exists
- key: P__n.__16ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..0
operator: In
values:
- h_qD-J_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DLo
matchLabels:
2x-cpor---cigu---4-2-4k0267h-rl-l-u575b93-r6---4g-vg3t.vuo17qre-33-5-u8f0f1q8/6: px_0-.mJe__.B-cd2_4
a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..P: whQ7be__-.-g5
namespaces:
- "482"
topologyKey: "483"
weight: 1856144088
weight: 1093414706
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp
- key: wc89k-0-57z4063---k1b6x91-0f-w8l--7c17j.n78aou-jf35-k7cr-mo-dz12----8q--n260pvo8-8---ln-9ei-vi9g-dn--q/4...rBQ.9-_.m7-Q____vSW_4-___-_--x
operator: NotIn
values:
- MGbG-_-8Qi..9-4.2K_FQ.E--__K-hg
- 81_---l_3_-_G-D....js--a---..6bD_M--c.0Q-2
matchLabels:
q0o.0C_gV.9_G-.-z1YH: b.9x98MM7-.e.Dx._.W-6..4_MU7iLfS-0.9-.-._.1..sA
2.u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w: QCJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT2
namespaceSelector:
matchExpressions:
- key: 0476b---nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d841/R._.3l-_86_u2-7_._qN__A_f_-B3_UP
operator: In
values:
- 396h8.G__B3
- key: le-to9e--a-7je9fz87-2jvd23-0p9j1t36--a4bl-gq38v7--a2o5.o-4k0267h5/m06jVZ-uP.t_.O937u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1W
operator: DoesNotExist
matchLabels:
? 4vk58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-w.57k--e--x--b--1-n4-a--o2h0fy-j-5-5-2nw/1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133T
: P-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_8
4-tf---7r88-1--p61cd--s-nu5718--lks7d-x99/8-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-R6_Q: ai.D7-_5
namespaces:
- "468"
topologyKey: "469"
automountServiceAccountToken: true
automountServiceAccountToken: false
containers:
- args:
- "270"
@ -229,13 +228,13 @@ template:
configMapKeyRef:
key: "284"
name: "283"
optional: true
optional: false
fieldRef:
apiVersion: "279"
fieldPath: "280"
resourceFieldRef:
containerName: "281"
divisor: "516"
divisor: "879"
resource: "282"
secretKeyRef:
key: "286"
@ -244,29 +243,29 @@ template:
envFrom:
- configMapRef:
name: "275"
optional: false
optional: true
prefix: "274"
secretRef:
name: "276"
optional: true
optional: false
image: "268"
imagePullPolicy: I滞廬耐鷞焬CQm坊柩劄奼[
imagePullPolicy: U
lifecycle:
postStart:
exec:
command:
- "314"
- "313"
httpGet:
host: "317"
host: "316"
httpHeaders:
- name: "318"
value: "319"
path: "315"
port: "316"
scheme: ĒzŔ瘍Nʊ
- name: "317"
value: "318"
path: "314"
port: "315"
scheme: Ik(dŊiɢzĮ蛋I
tcpSocket:
host: "320"
port: 2073630689
port: "319"
preStop:
exec:
command:
@ -278,7 +277,7 @@ template:
value: "326"
path: "322"
port: "323"
scheme: 泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ
scheme: '}礤铟怖ý萜Ǖc8ǣ'
tcpSocket:
host: "328"
port: "327"
@ -286,69 +285,69 @@ template:
exec:
command:
- "293"
failureThreshold: -1563928252
failureThreshold: -342387625
httpGet:
host: "295"
httpHeaders:
- name: "296"
value: "297"
path: "294"
port: -543432015
scheme: ƷƣMț
initialDelaySeconds: -211480108
periodSeconds: 556036216
successThreshold: -1838917931
port: 1616390418
scheme: 趭(娕uE增猍ǵ x
initialDelaySeconds: -1320027474
periodSeconds: 2112112129
successThreshold: 528603974
tcpSocket:
host: "299"
port: "298"
terminationGracePeriodSeconds: -1301089041686500367
timeoutSeconds: -200074798
terminationGracePeriodSeconds: 7999187157758442620
timeoutSeconds: -1750169306
name: "267"
ports:
- containerPort: -1365158918
- containerPort: -788152336
hostIP: "273"
hostPort: -1733181402
hostPort: -2130294761
name: "272"
protocol: OǨ繫ʎǑyZ
protocol: ɵ
readinessProbe:
exec:
command:
- "300"
failureThreshold: 601942575
failureThreshold: 317211081
httpGet:
host: "302"
httpHeaders:
- name: "303"
value: "304"
path: "301"
port: 455919108
scheme: 崍h趭(娕u
initialDelaySeconds: 1486914884
periodSeconds: -977348956
successThreshold: -637630736
port: -647531549
scheme: ʠɜ瞍阎lğ Ņ
initialDelaySeconds: -602411444
periodSeconds: 711356517
successThreshold: -598179789
tcpSocket:
host: "305"
port: 805162379
terminationGracePeriodSeconds: -5669474827175536499
timeoutSeconds: -641001381
host: "306"
port: "305"
terminationGracePeriodSeconds: -8307777636454344321
timeoutSeconds: -1519458130
resources:
limits:
"": "991"
擭銆jʒǚ鍰\縑: "992"
requests:
斩ìh4ɊHȖ|ʐşƧ諔迮ƙIJ: "850"
鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ: "400"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- ĝ®EĨǔvÄÚ×p鬷
- 襕ċ桉桃喕蠲$ɛ溢臜裡×銵
drop:
- 罂o3ǰ廋i乳'ȘUɻ;襕ċ桉桃
- 紑浘牬釼aTGÒ鵌Ē3Nh×DJɶ羹ƞ
privileged: true
procMount: -紑浘牬釼aTGÒ鵌
readOnlyRootFilesystem: false
runAsGroup: -1207159809527615562
runAsNonRoot: true
runAsUser: 2803095162614904173
procMount: 筇ȟP
readOnlyRootFilesystem: true
runAsGroup: 6462962492290658756
runAsNonRoot: false
runAsUser: -4166164136222066963
seLinuxOptions:
level: "333"
role: "331"
@ -356,43 +355,44 @@ template:
user: "330"
seccompProfile:
localhostProfile: "337"
type: 3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶
type: /a殆诵H玲鑠ĭ$
windowsOptions:
gmsaCredentialSpec: "335"
gmsaCredentialSpecName: "334"
hostProcess: true
runAsUserName: "336"
startupProbe:
exec:
command:
- "306"
failureThreshold: 1803882645
- "307"
failureThreshold: 1961354355
httpGet:
host: "309"
httpHeaders:
- name: "310"
value: "311"
path: "307"
port: "308"
scheme: Ã茓pȓɻ
initialDelaySeconds: 1737172479
periodSeconds: 1223564938
successThreshold: 1241693652
path: "308"
port: 65094252
scheme: æ盪泙若`l}Ñ蠂Ü
initialDelaySeconds: 1618861163
periodSeconds: 1708236944
successThreshold: -1192140557
tcpSocket:
host: "313"
port: "312"
terminationGracePeriodSeconds: 8011596308221389971
timeoutSeconds: -767058113
stdin: true
host: "312"
port: 1388874570
terminationGracePeriodSeconds: -8493878174888297652
timeoutSeconds: 413903479
stdinOnce: true
terminationMessagePath: "329"
terminationMessagePolicy: Ƽ¨Ix糂腂ǂǚŜEu
terminationMessagePolicy: ŧ1ƟƓ宆!鍲ɋȑoG鄧蜢暳ǽżLj捲攻
tty: true
volumeDevices:
- devicePath: "292"
name: "291"
volumeMounts:
- mountPath: "288"
mountPropagation: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
mountPropagation: (fǂǢ曣ŋayå
name: "287"
readOnly: true
subPath: "289"
subPathExpr: "290"
workingDir: "271"
@ -404,6 +404,7 @@ template:
value: "499"
searches:
- "497"
dnsPolicy: 'z委>,趐V曡88 '
enableServiceLinks: true
ephemeralContainers:
- args:
@ -417,13 +418,13 @@ template:
configMapKeyRef:
key: "355"
name: "354"
optional: false
optional: true
fieldRef:
apiVersion: "350"
fieldPath: "351"
resourceFieldRef:
containerName: "352"
divisor: "274"
divisor: "522"
resource: "353"
secretKeyRef:
key: "357"
@ -436,24 +437,25 @@ template:
prefix: "345"
secretRef:
name: "347"
optional: false
optional: true
image: "339"
imagePullPolicy: ĖRh}颉hȱɷȰW瀤oɢ嫎¸殚篎
lifecycle:
postStart:
exec:
command:
- "385"
httpGet:
host: "387"
host: "388"
httpHeaders:
- name: "388"
value: "389"
- name: "389"
value: "390"
path: "386"
port: -1289510276
scheme: ŒGm¨z鋎靀G
port: "387"
scheme: ǹʅŚO虀^背
tcpSocket:
host: "391"
port: "390"
port: -1442230895
preStop:
exec:
command:
@ -464,16 +466,16 @@ template:
- name: "395"
value: "396"
path: "393"
port: 1289969734
scheme: 7uPƒw©ɴĶ烷Ľ
port: 1468940509
scheme: 像-觗裓6Ř
tcpSocket:
host: "397"
port: 1468940509
port: 1762917570
livenessProbe:
exec:
command:
- "364"
failureThreshold: 1805682547
failureThreshold: 178262944
httpGet:
host: "367"
httpHeaders:
@ -481,61 +483,61 @@ template:
value: "369"
path: "365"
port: "366"
scheme: cx赮ǒđ>*劶?j
initialDelaySeconds: 1008425444
periodSeconds: 1678953375
successThreshold: 1045190247
scheme: ¥
initialDelaySeconds: 1045190247
periodSeconds: -651405950
successThreshold: 1903147240
tcpSocket:
host: "371"
port: "370"
terminationGracePeriodSeconds: -2797767251501326723
timeoutSeconds: -821592382
terminationGracePeriodSeconds: 7591592723235237403
timeoutSeconds: 1805682547
name: "338"
ports:
- containerPort: -166419777
- containerPort: -253063948
hostIP: "344"
hostPort: -257245030
hostPort: 488431979
name: "343"
protocol: a殆诵H玲
protocol: 橱9ij\Ď愝Ű藛b磾s
readinessProbe:
exec:
command:
- "372"
failureThreshold: -394464008
failureThreshold: 240154501
httpGet:
host: "374"
host: "375"
httpHeaders:
- name: "375"
value: "376"
- name: "376"
value: "377"
path: "373"
port: 2032588794
scheme: 鍃G昧牱
initialDelaySeconds: -215316554
periodSeconds: 1521292403
successThreshold: -283400620
port: "374"
scheme: 昧牱fsǕT衩kƒK0
initialDelaySeconds: 22814565
periodSeconds: -96528156
successThreshold: -2043135662
tcpSocket:
host: "378"
port: "377"
terminationGracePeriodSeconds: 911858222236680643
timeoutSeconds: -2141869576
port: -629974246
terminationGracePeriodSeconds: -1988677584282886128
timeoutSeconds: -89787189
resources:
limits:
9ij\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ: "895"
ƺL肄$鬬$矐_敕ű嵞嬯: "84"
requests:
櫞繡旹翃ɾ氒ĺʈʫ羶剹Ɗ: "151"
姰l咑耖p^鏋蛹Ƚȿ: "232"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- 蚢鑸鶲Ãq
- 8[y#t(ȗŜŲ
drop:
- 轫ʓ滨ĖRh}颉
privileged: false
procMount: ¸殚篎3
readOnlyRootFilesystem: true
runAsGroup: -4328915352766545090
runAsNonRoot: true
runAsUser: -7492598848400758567
-
privileged: true
procMount: ǾɁ鍻G鯇ɀ魒Ð扬=惍E
readOnlyRootFilesystem: false
runAsGroup: -2958928304063527963
runAsNonRoot: false
runAsUser: 4233308148542782456
seLinuxOptions:
level: "402"
role: "400"
@ -543,42 +545,43 @@ template:
user: "399"
seccompProfile:
localhostProfile: "406"
type: 8[y#t(ȗŜŲ
type: ŊĊ娮rȧŹ黷
windowsOptions:
gmsaCredentialSpec: "404"
gmsaCredentialSpecName: "403"
hostProcess: false
runAsUserName: "405"
startupProbe:
exec:
command:
- "379"
failureThreshold: 279062028
failureThreshold: -548803057
httpGet:
host: "381"
httpHeaders:
- name: "382"
value: "383"
path: "380"
port: -629974246
scheme: œj堑ūM鈱ɖ'蠨磼O_h
initialDelaySeconds: -1026606578
periodSeconds: -645536124
successThreshold: 896697276
port: 1885676566
scheme: O_h盌3+Œ9两@8Byß讪Ă2
initialDelaySeconds: -372626292
periodSeconds: 1019901190
successThreshold: -1625381496
tcpSocket:
host: "384"
port: -2033879721
terminationGracePeriodSeconds: 4458982675949227932
timeoutSeconds: -25232164
port: -281926929
terminationGracePeriodSeconds: -8201340979270163756
timeoutSeconds: 2018111855
targetContainerName: "407"
terminationMessagePath: "398"
terminationMessagePolicy: 像-觗裓6Ř
terminationMessagePolicy: Ų買霎ȃň[>ą
tty: true
volumeDevices:
- devicePath: "363"
name: "362"
volumeMounts:
- mountPath: "359"
mountPropagation: '{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬɸ'
mountPropagation: ƬɸĻo:{柯?B俋¬h`職
name: "358"
readOnly: true
subPath: "360"
@ -588,8 +591,7 @@ template:
- hostnames:
- "494"
ip: "493"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "424"
imagePullSecrets:
- name: "423"
@ -713,18 +715,18 @@ template:
requests:
昕Ĭ: "524"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ""
drop:
- Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
privileged: false
procMount:
procMount: 録²Ŏ)/灩聋3趐囨鏻砅邻爥
readOnlyRootFilesystem: true
runAsGroup: -545284475172904979
runAsNonRoot: false
runAsUser: 5431518803727886665
runAsGroup: 802922970712269023
runAsNonRoot: true
runAsUser: -7747494447986851160
seLinuxOptions:
level: "262"
role: "260"
@ -732,10 +734,11 @@ template:
user: "259"
seccompProfile:
localhostProfile: "266"
type: ²Ŏ)/灩聋3趐囨
type: ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩šeS
windowsOptions:
gmsaCredentialSpec: "264"
gmsaCredentialSpecName: "263"
hostProcess: false
runAsUserName: "265"
startupProbe:
exec:
@ -758,8 +761,10 @@ template:
port: "242"
terminationGracePeriodSeconds: -1117820874616112287
timeoutSeconds: 1386255869
stdin: true
terminationMessagePath: "258"
terminationMessagePolicy: ²sNƗ¸g
tty: true
volumeDevices:
- devicePath: "221"
name: "220"
@ -774,21 +779,21 @@ template:
nodeSelector:
"408": "409"
overhead:
k_: "725"
preemptionPolicy: Ʀ[螵沊齣薣鰎đƝ):惝ŵ髿ɔ
priority: -1133320634
3§T旦y6辱Ŵ鎥: "789"
preemptionPolicy: '{De½t;Äƾ'
priority: 171558604
priorityClassName: "495"
readinessGates:
- conditionType: į
restartPolicy: "y"
- conditionType: 鳢.ǀŭ瘢颦z疵悡nȩ純z邜排A
restartPolicy: ;Ƭ婦d%蹶/ʗp壥Ƥ
runtimeClassName: "500"
schedulerName: "490"
securityContext:
fsGroup: -6276111079389958404
fsGroupChangePolicy: œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ
runAsGroup: 5200080507234099655
fsGroup: -2019276087967685705
fsGroupChangePolicy: 2 ɲ±m嵘厶sȰÖ埡ÆɰŞ
runAsGroup: -8157642381087094542
runAsNonRoot: true
runAsUser: -4962946920772050319
runAsUser: -5785208110583552190
seLinuxOptions:
level: "416"
role: "414"
@ -796,38 +801,41 @@ template:
user: "413"
seccompProfile:
localhostProfile: "422"
type: 'ʫį淓¯Ą0ƛ忀z委>,趐V曡88 '
type: 樞úʥ銀ƨ
supplementalGroups:
- -4548866432246561416
- -6356503130840432651
sysctls:
- name: "420"
value: "421"
windowsOptions:
gmsaCredentialSpec: "418"
gmsaCredentialSpecName: "417"
hostProcess: true
runAsUserName: "419"
serviceAccount: "411"
serviceAccountName: "410"
setHostnameAsFQDN: false
shareProcessNamespace: true
setHostnameAsFQDN: true
shareProcessNamespace: false
subdomain: "425"
terminationGracePeriodSeconds: -1357828024706138776
terminationGracePeriodSeconds: -6472827475835479775
tolerations:
- effect: kx-餌勀奷Ŏ
- effect: =Ĉ鳟/d&蒡榤Ⱦ盜ŭ飼
key: "491"
operator: 0yVA嬂刲;牆詒ĸąs
tolerationSeconds: -9038755672632113093
operator: ʇɆȏ+&ɃB沅零
tolerationSeconds: 5710269275969351972
value: "492"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: B.rTt7bm9I.-..q-F-.__ck
operator: DoesNotExist
- key: 086----3-893097-0zy976-0--q-90fo4gk.3f--5nwy-m0---063-r-z-n1l3j-4175-x-0---9/s
operator: In
values:
- 79_j570n__.-7_I8.--4-___..1N
matchLabels:
3.hy9---2--e-yya--bj7-l-9aw--2/hs.-_DM__28W-_-.0HfR-_f-5: 019_-gYY._..fP--hQ7be__-.-g-5.-59...7q___n.__16ee.6
maxSkew: -2046521037
1h9-z8-35x38iq/V_-q-L34-_D86-Wg: 51_n4a-n.Q_-.__A9-4l_m.A.Zi___Y__YDuzh9N6-...2_.Qa
maxSkew: 1725443144
topologyKey: "501"
whenUnsatisfiable: '"T#sM網m'
whenUnsatisfiable: ƫƍƙơ卍睊Pǎ玒
volumes:
- awsElasticBlockStore:
fsType: "67"
@ -1082,4 +1090,4 @@ template:
storagePolicyID: "124"
storagePolicyName: "123"
volumePath: "121"
ttlSecondsAfterFinished: -2143422853
ttlSecondsAfterFinished: -654972141

View File

@ -295,6 +295,24 @@
},
"tty": true,
"targetContainerName": "88"
"gmsaCredentialSpecName": "86",
"gmsaCredentialSpec": "87",
"runAsUserName": "88",
"hostProcess": false
},
"runAsUser": -3031446704001093654,
"runAsGroup": 7608666948531988994,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "Ðl恕ɍȇ廄裭4懙鏮嵒ƫS",
"seccompProfile": {
"type": "ɷD¡轫n(鲼ƳÐƣKʘń",
"localhostProfile": "89"
}
},
"stdinOnce": true,
"targetContainerName": "90"
}
]
}

View File

@ -130,6 +130,11 @@ ephemeralContainers:
runAsGroup: 8360795821384820753
runAsNonRoot: false
runAsUser: -1466062763730980131
procMount: Ðl恕ɍȇ廄裭4懙鏮嵒ƫS
readOnlyRootFilesystem: true
runAsGroup: 7608666948531988994
runAsNonRoot: true
runAsUser: -3031446704001093654
seLinuxOptions:
level: "83"
role: "81"
@ -142,6 +147,13 @@ ephemeralContainers:
gmsaCredentialSpec: "85"
gmsaCredentialSpecName: "84"
runAsUserName: "86"
localhostProfile: "89"
type: ɷD¡轫n(鲼ƳÐƣKʘń
windowsOptions:
gmsaCredentialSpec: "87"
gmsaCredentialSpecName: "86"
hostProcess: false
runAsUserName: "88"
startupProbe:
exec:
command:
@ -167,6 +179,11 @@ ephemeralContainers:
terminationMessagePath: "79"
terminationMessagePolicy: ?讦ĭÐ
tty: true
timeoutSeconds: 1229400382
stdinOnce: true
targetContainerName: "90"
terminationMessagePath: "81"
terminationMessagePolicy: ң
volumeDevices:
- devicePath: "45"
name: "44"

File diff suppressed because it is too large Load Diff

View File

@ -31,32 +31,32 @@ metadata:
selfLink: "5"
uid: "7"
spec:
activeDeadlineSeconds: -7299434051955863644
activeDeadlineSeconds: 4288903380102217677
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "389"
operator: 鑳w妕眵笭/9崍h趭
operator: 若`l}
values:
- "390"
matchFields:
- key: "391"
operator: ť嗆u8晲T
operator: ""
values:
- "392"
weight: 257855378
weight: -684167223
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "385"
operator: ņ
operator: ȲǸ|蕎'佉賞ǧĒzŔ
values:
- "386"
matchFields:
- key: "387"
operator: 衷,ƷƣMț譎懚
operator: ƽ眝{
values:
- "388"
podAffinity:
@ -64,39 +64,35 @@ spec:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: xv-5-e-m78o-6-6211-7p--3zm-lx300w-tj-35840-4.x5----0g-q-22r4wye5y/8q_s-1__gw_-z_659GE.l_.23--_6l.-5B
operator: In
values:
- h7.6.-y-s4483Po_L3f1-7_O4.w
matchLabels:
w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a: n9
namespaceSelector:
matchExpressions:
- key: 0n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--.k47My
- key: f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO
operator: DoesNotExist
matchLabels:
n_5023Xl-3Pw_-r75--_-A-o-__y_4: 12..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
23bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/1k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H: 46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e
namespaceSelector:
matchExpressions:
- key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p
operator: DoesNotExist
matchLabels:
54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa
namespaces:
- "413"
topologyKey: "414"
weight: -1097269124
weight: 1357609391
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D
operator: NotIn
values:
- G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
- key: 8609a-e0--1----v8-2/ck..1Q7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F2
operator: DoesNotExist
matchLabels:
x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2: Ns-o779._-k5
x9-35o-1-5w5z3-d----0p---s-9----747o-3.jr-927--m6-k8-c2---2etfh41ca-z-5g2wco28---6/Dup.2L_s-o779._-k-5___-Qq..csh-3--ZT: 6_31-_I-A-_3bz._8M0U1_-__.71-_-9_._XD
namespaceSelector:
matchExpressions:
- key: 2ga-v205p-26-u5wg-gb8a-6-80-4-6849--w-0-24u9.44rm-0uma6-p--d-17-o--776n15-b-3-b/5
- key: C0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B3_.b17ca-p
operator: In
values:
- c
- 3-3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ_K
matchLabels:
70u-1ml.711k9-8609a-e0--1----v8-4--558n1asz-re/OMop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.9_.-M: ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--0
780bdw0-1-47rrw8-5tn.0-1y-tw/O-..6W.VK.sTt.-U_--56-.7D.3_KPg___KA-._d.8: wmiJ4x-_0_5-_.7F3p2_-_AmD-.A
namespaces:
- "399"
topologyKey: "400"
@ -105,35 +101,33 @@ spec:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: x.._-x_4..u2-__3uM77U7._pT-___-_r
- key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
operator: Exists
matchLabels:
8_t..-Ww2q.zK-p5: 8Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._28
ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- key: N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-16
operator: DoesNotExist
- key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
operator: Exists
matchLabels:
46-48e-9-h4-w-qp25--7-n--kfk3x-j9133es/T-_Lq-.5s: M-k5.C.e.._d-Y
E35H__.B_E: U..u8gwbk
namespaces:
- "441"
topologyKey: "442"
weight: -176177167
weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: In
values:
- 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels:
E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e
namespaceSelector:
matchExpressions:
- key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6
- key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
operator: DoesNotExist
matchLabels:
7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz
8--7g0e6-x5-7-a6434---7i-f-d019o1v3-2101s8-j-6j4uvl/5p_B-d--Q5._D6_.d-n_9n.p.2-.-w: 61P_.D8_t..-Ww27
namespaceSelector:
matchExpressions:
- key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7
operator: DoesNotExist
matchLabels:
"8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR
namespaces:
- "427"
topologyKey: "428"
@ -150,13 +144,13 @@ spec:
configMapKeyRef:
key: "242"
name: "241"
optional: false
optional: true
fieldRef:
apiVersion: "237"
fieldPath: "238"
resourceFieldRef:
containerName: "239"
divisor: "193"
divisor: "478"
resource: "240"
secretKeyRef:
key: "244"
@ -165,154 +159,154 @@ spec:
envFrom:
- configMapRef:
name: "233"
optional: false
optional: true
prefix: "232"
secretRef:
name: "234"
optional: true
image: "226"
imagePullPolicy: vt莭琽§ć\ ïì«
imagePullPolicy: ?$矡ȶ网棊ʢ
lifecycle:
postStart:
exec:
command:
- "272"
- "271"
httpGet:
host: "275"
host: "274"
httpHeaders:
- name: "276"
value: "277"
path: "273"
port: "274"
scheme: Ȋɞ-uƻ悖ȩ0Ƹ
- name: "275"
value: "276"
path: "272"
port: "273"
scheme: 粕擓ƖHVe熼'FD
tcpSocket:
host: "279"
port: "278"
host: "278"
port: "277"
preStop:
exec:
command:
- "280"
- "279"
httpGet:
host: "283"
host: "281"
httpHeaders:
- name: "284"
value: "285"
path: "281"
port: "282"
scheme: '>5姣>懔%熷谟'
- name: "282"
value: "283"
path: "280"
port: 100356493
scheme: ƮA攤/ɸɎ R§耶FfB
tcpSocket:
host: "286"
port: -1920661051
host: "285"
port: "284"
livenessProbe:
exec:
command:
- "251"
failureThreshold: 1089147958
failureThreshold: 1427600698
httpGet:
host: "253"
httpHeaders:
- name: "254"
value: "255"
path: "252"
port: 1762266578
initialDelaySeconds: -1294101963
periodSeconds: -103588794
successThreshold: -1045704964
port: 486195690
scheme: 1Ůđ眊ľǎɳ,ǿ飏騀
initialDelaySeconds: 474119379
periodSeconds: -1343558801
successThreshold: 284401429
tcpSocket:
host: "257"
port: "256"
terminationGracePeriodSeconds: -5467651408314215291
timeoutSeconds: -1961863213
host: "256"
port: -490345684
terminationGracePeriodSeconds: -6576869501326512452
timeoutSeconds: 1923334396
name: "225"
ports:
- containerPort: 1843758068
- containerPort: 1348377429
hostIP: "231"
hostPort: 1135182169
hostPort: 804417065
name: "230"
protocol: 瞾ʀNŬɨǙÄr蛏豈Ƀ
protocol: 廷s{Ⱦdz@ùƸʋŀ樺ȃv渟7
readinessProbe:
exec:
command:
- "258"
failureThreshold: 1024248645
- "257"
failureThreshold: -1180080716
httpGet:
host: "260"
httpHeaders:
- name: "261"
value: "262"
path: "259"
port: 747521320
scheme: 棂p儼Ƿ裚瓶釆Ɗ+j忊
initialDelaySeconds: 441998152
periodSeconds: -1453848697
successThreshold: -321513994
path: "258"
port: "259"
scheme: '>5姣>懔%熷谟'
initialDelaySeconds: -1763501586
periodSeconds: -1675041613
successThreshold: 963670270
tcpSocket:
host: "264"
port: "263"
terminationGracePeriodSeconds: 866094339485091956
timeoutSeconds: 747802823
host: "263"
port: -1920661051
terminationGracePeriodSeconds: -6054478692818889553
timeoutSeconds: -337240309
resources:
limits:
Ŵ廷s{Ⱦdz@: "12"
0)鈼¬麄p呝TG;邪匾mɩC[ó瓧嫭: "957"
requests:
粛E煹: "508"
ĨFħ籘Àǒɿʒ: "692"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- 枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F
- Ǖɳɷ9Ì崟¿瘦ɖ緕
drop:
- 剂讼ɓȌʟni酛3Ɓ
privileged: false
procMount: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ
- Í勅跦Opwǩ曬逴褜1ØœȠƬ
privileged: true
procMount:
readOnlyRootFilesystem: true
runAsGroup: -636584014972667630
runAsNonRoot: false
runAsUser: -2000070193364862971
runAsGroup: 4734307467052060549
runAsNonRoot: true
runAsUser: 7864982275050120786
seLinuxOptions:
level: "291"
role: "289"
type: "290"
user: "288"
level: "290"
role: "288"
type: "289"
user: "287"
seccompProfile:
localhostProfile: "295"
type: w
localhostProfile: "294"
type: J
windowsOptions:
gmsaCredentialSpec: "293"
gmsaCredentialSpecName: "292"
runAsUserName: "294"
gmsaCredentialSpec: "292"
gmsaCredentialSpecName: "291"
hostProcess: false
runAsUserName: "293"
startupProbe:
exec:
command:
- "265"
failureThreshold: -1586756233
- "264"
failureThreshold: -406148612
httpGet:
host: "268"
host: "266"
httpHeaders:
- name: "269"
value: "270"
path: "266"
port: "267"
scheme: ʒ刽ʼn掏1ſ盷褎weLJèux榜
initialDelaySeconds: 1157241180
periodSeconds: -1681029343
successThreshold: -1589303862
- name: "267"
value: "268"
path: "265"
port: -1498229293
scheme: LƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻
initialDelaySeconds: -1171167638
periodSeconds: 1179132251
successThreshold: -2123728714
tcpSocket:
host: "271"
port: 486195690
terminationGracePeriodSeconds: 8197254455293781725
timeoutSeconds: -1810997540
host: "270"
port: "269"
terminationGracePeriodSeconds: 241615716805649441
timeoutSeconds: -1336170981
stdin: true
stdinOnce: true
terminationMessagePath: "287"
terminationMessagePolicy: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3
tty: true
terminationMessagePath: "286"
terminationMessagePolicy: 3!Zɾģ毋Ó6
volumeDevices:
- devicePath: "250"
name: "249"
volumeMounts:
- mountPath: "246"
mountPropagation:
mountPropagation: o/樝fw[Řż丩Ž
name: "245"
readOnly: true
subPath: "247"
@ -326,140 +320,139 @@ spec:
value: "458"
searches:
- "456"
dnsPolicy: ±p鋄5弢ȹ均i绝5哇芆
dnsPolicy: 饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM
enableServiceLinks: false
ephemeralContainers:
- args:
- "299"
command:
- "298"
command:
- "297"
env:
- name: "306"
value: "307"
- name: "305"
value: "306"
valueFrom:
configMapKeyRef:
key: "313"
name: "312"
optional: false
key: "312"
name: "311"
optional: true
fieldRef:
apiVersion: "308"
fieldPath: "309"
apiVersion: "307"
fieldPath: "308"
resourceFieldRef:
containerName: "310"
divisor: "142"
resource: "311"
containerName: "309"
divisor: "626"
resource: "310"
secretKeyRef:
key: "315"
name: "314"
optional: false
key: "314"
name: "313"
optional: true
envFrom:
- configMapRef:
name: "304"
name: "303"
optional: false
prefix: "303"
prefix: "302"
secretRef:
name: "305"
optional: false
image: "297"
imagePullPolicy: ×x锏ɟ4Ǒ
name: "304"
optional: true
image: "296"
imagePullPolicy: 囌{屿oiɥ嵐sC
lifecycle:
postStart:
exec:
command:
- "343"
- "342"
httpGet:
host: "345"
host: "344"
httpHeaders:
- name: "346"
value: "347"
path: "344"
port: -282193676
scheme: Ļǟi&
- name: "345"
value: "346"
path: "343"
port: -2128108224
scheme: δ摖
tcpSocket:
host: "349"
port: "348"
host: "348"
port: "347"
preStop:
exec:
command:
- "350"
- "349"
httpGet:
host: "353"
host: "352"
httpHeaders:
- name: "354"
value: "355"
path: "351"
port: "352"
scheme: 垾现葢ŵ橨
- name: "353"
value: "354"
path: "350"
port: "351"
tcpSocket:
host: "356"
port: -1312425203
port: "355"
livenessProbe:
exec:
command:
- "322"
failureThreshold: -1538905728
- "321"
failureThreshold: -2146674095
httpGet:
host: "325"
host: "324"
httpHeaders:
- name: "326"
value: "327"
path: "323"
port: "324"
scheme: Ů+朷Ǝ膯ljVX1虊
initialDelaySeconds: -1748648882
periodSeconds: 1381579966
successThreshold: -1418092595
- name: "325"
value: "326"
path: "322"
port: "323"
scheme: ŕ翑0展}
initialDelaySeconds: -1778952574
periodSeconds: -778272981
successThreshold: 2056774277
tcpSocket:
host: "328"
port: -979584143
terminationGracePeriodSeconds: -1867540518204155332
timeoutSeconds: -239843014
name: "296"
port: "327"
terminationGracePeriodSeconds: -1117820874616112287
timeoutSeconds: 1386255869
name: "295"
ports:
- containerPort: -1962065705
hostIP: "302"
hostPort: 1752155096
name: "301"
protocol: ¿
- containerPort: -1624574056
hostIP: "301"
hostPort: -743369977
name: "300"
protocol: 犵殇ŕ-Ɂ圯W:ĸ輦唊#
readinessProbe:
exec:
command:
- "329"
failureThreshold: 888935190
failureThreshold: 2030115750
httpGet:
host: "332"
host: "331"
httpHeaders:
- name: "333"
value: "334"
- name: "332"
value: "333"
path: "330"
port: "331"
scheme: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
initialDelaySeconds: -244758593
periodSeconds: 104069700
successThreshold: -331594625
port: 303592056
scheme: 獕;跣Hǝcw媀瓄&翜舞拉
initialDelaySeconds: 2066735093
periodSeconds: -940334911
successThreshold: -341287812
tcpSocket:
host: "335"
port: 1574967021
terminationGracePeriodSeconds: 7193904584276385338
timeoutSeconds: 591440053
port: "334"
terminationGracePeriodSeconds: 7933506142593743951
timeoutSeconds: -190183379
resources:
limits:
ǩ: "957"
Ÿ8T 苧yñKJɐ扵: "44"
requests:
Ɔȓ蹣ɐǛv+8Ƥ熪: "951"
û咡W<敄lu|榝$î.Ȏ蝪ʜ5: "723"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
- Ǻ鱎ƙ;Nŕ
drop:
- ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:'
- Jih亏yƕ丆録²
privileged: false
procMount: ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻
procMount: 邻爥蹔ŧOǨ繫ʎǑyZ涬P­蜷ɔ幩
readOnlyRootFilesystem: true
runAsGroup: -499179336506637450
runAsGroup: -4798571027889325171
runAsNonRoot: true
runAsUser: 5620818514944490121
runAsUser: -5099422937845460309
seLinuxOptions:
level: "361"
role: "359"
@ -467,51 +460,53 @@ spec:
user: "358"
seccompProfile:
localhostProfile: "365"
type: ih亏yƕ丆録²
type: eSvEȤƏ埮pɵ{WOŭW灬p
windowsOptions:
gmsaCredentialSpec: "363"
gmsaCredentialSpecName: "362"
hostProcess: true
runAsUserName: "364"
startupProbe:
exec:
command:
- "336"
failureThreshold: 617318981
failureThreshold: 1328165061
httpGet:
host: "339"
host: "338"
httpHeaders:
- name: "340"
value: "341"
- name: "339"
value: "340"
path: "337"
port: "338"
scheme: î.Ȏ蝪ʜ5遰=
initialDelaySeconds: -1462219068
periodSeconds: 1714588921
successThreshold: -1246371817
port: -816630929
initialDelaySeconds: 509813083
periodSeconds: 204229950
successThreshold: 237070189
tcpSocket:
host: "342"
port: 834105836
terminationGracePeriodSeconds: 1856677271350902065
timeoutSeconds: -370386363
stdin: true
host: "341"
port: 1965273344
terminationGracePeriodSeconds: -2419752030496149068
timeoutSeconds: -1389984716
stdinOnce: true
targetContainerName: "366"
terminationMessagePath: "357"
terminationMessagePolicy: ;跣Hǝcw媀瓄&
terminationMessagePolicy: ƺ蛜6Ɖ飴ɎiǨź
tty: true
volumeDevices:
- devicePath: "321"
name: "320"
- devicePath: "320"
name: "319"
volumeMounts:
- mountPath: "317"
mountPropagation: 啛更
name: "316"
subPath: "318"
subPathExpr: "319"
workingDir: "300"
- mountPath: "316"
mountPropagation: 徶đ寳议Ƭƶ氩Ȩ
name: "315"
subPath: "317"
subPathExpr: "318"
workingDir: "299"
hostAliases:
- hostnames:
- "453"
ip: "452"
hostIPC: true
hostNetwork: true
hostname: "383"
imagePullSecrets:
- name: "382"
@ -635,18 +630,18 @@ spec:
requests:
VzÏ抴ŨfZhUʎ浵ɲõ: "303"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- 珝Żwʮ馜ü
drop:
- șƶ4ĩĉş蝿ɖȃ賲鐅臬dH巧
privileged: true
procMount: '鲡:'
procMount: :贅wE@Ȗs«öʮĀ<é瞾
readOnlyRootFilesystem: true
runAsGroup: -6738846580626183558
runAsNonRoot: false
runAsUser: -2402724957580114162
runAsGroup: -4525194116194020035
runAsNonRoot: true
runAsUser: 42649466061901501
seLinuxOptions:
level: "220"
role: "218"
@ -654,10 +649,11 @@ spec:
user: "217"
seccompProfile:
localhostProfile: "224"
type: wE@Ȗs
type: NŬɨǙÄr蛏豈ɃHŠơŴĿ
windowsOptions:
gmsaCredentialSpec: "222"
gmsaCredentialSpecName: "221"
hostProcess: true
runAsUserName: "223"
startupProbe:
exec:
@ -680,6 +676,7 @@ spec:
port: "199"
terminationGracePeriodSeconds: 1919118248821998564
timeoutSeconds: -935589762
stdin: true
stdinOnce: true
terminationMessagePath: "216"
terminationMessagePolicy: ńMǰ溟ɴ扵閝
@ -699,21 +696,21 @@ spec:
nodeSelector:
"367": "368"
overhead:
"": "846"
preemptionPolicy: «ɒó<碡4鏽喡孨ʚé薘-­ɞ逭ɋ¡
priority: -1623129882
隅DžbİEMǶɼ`|褞: "229"
preemptionPolicy: n{
priority: -340583156
priorityClassName: "454"
readinessGates:
- conditionType: d楗鱶镖喗vȥ倉螆ȨX
restartPolicy: /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫
- conditionType: țc£PAÎǨȨ栋
restartPolicy: V擭銆j
runtimeClassName: "459"
schedulerName: "449"
securityContext:
fsGroup: 2556747128430250366
fsGroupChangePolicy: IJ嘢4ʗ
runAsGroup: 5246659233493169699
runAsNonRoot: true
runAsUser: -6224651420440742974
fsGroup: 2373631082804169687
fsGroupChangePolicy: 趭(娕uE增猍ǵ x
runAsGroup: -495558749504439559
runAsNonRoot: false
runAsUser: -6717020695319852049
seLinuxOptions:
level: "375"
role: "373"
@ -721,40 +718,40 @@ spec:
user: "372"
seccompProfile:
localhostProfile: "381"
type: ',丽饾| 鞤ɱďW'
type: Ŵ壶ƵfȽÃ茓pȓɻ
supplementalGroups:
- -7305004673396184610
- 933334675092942213
sysctls:
- name: "379"
value: "380"
windowsOptions:
gmsaCredentialSpec: "377"
gmsaCredentialSpecName: "376"
hostProcess: true
runAsUserName: "378"
serviceAccount: "370"
serviceAccountName: "369"
setHostnameAsFQDN: false
shareProcessNamespace: false
subdomain: "384"
terminationGracePeriodSeconds: -247950237984551522
terminationGracePeriodSeconds: -2096491188749634309
tolerations:
- effect: D?/nēɅĀ埰ʀł!U詨nj1ýǝ
key: "450"
operator: 5谠vÐ仆dždĄ跞肞=ɴC}怢
tolerationSeconds: -7090833765995091747
- key: "450"
operator: ŭʔb'?舍ȃʥx臥]å摞
tolerationSeconds: 3053978290188957517
value: "451"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh
operator: In
- key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- 7.W74-R_Z_Tz.a3_HWo4_6
- H1z..j_.r3--T
matchLabels:
t-nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qc/2-7_._qN__A_f_-B3_U__L.KHK: 35H__.B_6_-U..u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4Po
maxSkew: 1688294622
H_55..--E3_2D-1DW__o_-.k: "7"
maxSkew: 1486667065
topologyKey: "460"
whenUnsatisfiable: 矵&7Ʃɩ
whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "25"
@ -1007,45 +1004,45 @@ spec:
volumePath: "79"
status:
conditions:
- lastProbeTime: "2122-07-22T00:15:32Z"
lastTransitionTime: "2116-05-26T10:14:24Z"
- lastProbeTime: "2446-08-01T12:34:13Z"
lastTransitionTime: "2721-06-15T10:27:00Z"
message: "468"
reason: "467"
status: Ȕ蝬Kȴ
type: H诹ɼ#趶毎卸値å镮ó"壽ȱǒ鉚
status: 闬輙怀¹bCũw¼ ǫđ槴Ċį軠>
type: 偁髕ģƗ鐫?勥穌砊ʑȩ硘(ǒ[
containerStatuses:
- containerID: "502"
image: "500"
imageID: "501"
lastState:
running:
startedAt: "2719-07-17T22:00:10Z"
startedAt: "2018-06-11T20:33:19Z"
terminated:
containerID: "499"
exitCode: -391574961
finishedAt: "2045-05-04T00:27:18Z"
exitCode: 267482175
finishedAt: "2921-08-01T07:23:37Z"
message: "498"
reason: "497"
signal: -933017112
startedAt: "2454-01-24T20:04:32Z"
signal: -724869497
startedAt: "2261-09-25T07:35:50Z"
waiting:
message: "496"
reason: "495"
name: "489"
ready: true
restartCount: 840157370
started: false
ready: false
restartCount: 1996366336
started: true
state:
running:
startedAt: "2465-03-18T23:55:27Z"
startedAt: "2639-07-13T08:26:34Z"
terminated:
containerID: "494"
exitCode: 1254193769
finishedAt: "2007-08-17T02:42:37Z"
exitCode: -477105883
finishedAt: "2270-10-11T19:35:54Z"
message: "493"
reason: "492"
signal: -1393376760
startedAt: "2799-10-17T21:43:53Z"
signal: 1266675441
startedAt: "2760-06-20T08:13:38Z"
waiting:
message: "491"
reason: "490"
@ -1055,33 +1052,33 @@ status:
imageID: "515"
lastState:
running:
startedAt: "2685-03-12T10:07:19Z"
startedAt: "2470-09-16T06:10:29Z"
terminated:
containerID: "513"
exitCode: 2005043090
finishedAt: "2594-07-18T02:53:59Z"
exitCode: -379260195
finishedAt: "2940-09-11T05:49:16Z"
message: "512"
reason: "511"
signal: 728551686
startedAt: "2283-08-08T02:13:39Z"
signal: 1724179157
startedAt: "2713-05-24T08:16:36Z"
waiting:
message: "510"
reason: "509"
name: "503"
ready: true
restartCount: 692446142
restartCount: -579160123
started: false
state:
running:
startedAt: "2269-01-04T20:21:46Z"
startedAt: "2679-03-05T15:56:11Z"
terminated:
containerID: "508"
exitCode: -419737006
finishedAt: "2107-05-30T03:08:00Z"
exitCode: -678247306
finishedAt: "2671-06-02T09:10:05Z"
message: "507"
reason: "506"
signal: 1267525999
startedAt: "2479-09-29T08:36:44Z"
signal: -798353979
startedAt: "2522-07-17T20:42:05Z"
waiting:
message: "505"
reason: "504"
@ -1092,41 +1089,41 @@ status:
imageID: "487"
lastState:
running:
startedAt: "2413-05-17T07:07:15Z"
startedAt: "2909-12-17T10:35:05Z"
terminated:
containerID: "485"
exitCode: -416338651
finishedAt: "2486-05-12T14:50:32Z"
exitCode: 344566548
finishedAt: "2181-04-23T17:08:11Z"
message: "484"
reason: "483"
signal: 1820564266
startedAt: "2855-03-01T08:57:00Z"
signal: -1274159576
startedAt: "2448-03-03T21:49:58Z"
waiting:
message: "482"
reason: "481"
name: "475"
ready: true
restartCount: -1399651668
ready: false
restartCount: 880515121
started: true
state:
running:
startedAt: "2838-07-20T19:58:45Z"
startedAt: "2044-06-19T19:39:57Z"
terminated:
containerID: "480"
exitCode: 537567999
finishedAt: "2233-02-01T14:10:47Z"
exitCode: -702718077
finishedAt: "2953-05-20T20:14:17Z"
message: "479"
reason: "478"
signal: 2082930716
startedAt: "2738-06-23T15:55:19Z"
signal: 648978003
startedAt: "2298-10-11T07:26:38Z"
waiting:
message: "477"
reason: "476"
message: "469"
nominatedNodeName: "471"
phase: å譥a
phase: șa汸<ƋlɋN磋镮ȺPÈ
podIP: "473"
podIPs:
- ip: "474"
qosClass: 哶ɓŖybÑW紋旣Ülɳ涟Ð
qosClass: ɹNL觀嫧酞篐8郫焮3ó緼Ŷ獃夕ƆIJ
reason: "470"

View File

@ -674,21 +674,21 @@
"windowsOptions": {
"gmsaCredentialSpecName": "240",
"gmsaCredentialSpec": "241",
"runAsUserName": "242"
"runAsUserName": "242",
"hostProcess": false
},
"runAsUser": -1471909806757355977,
"runAsGroup": 2673502285499267331,
"runAsUser": 8519427267030036521,
"runAsGroup": -4151726557168738613,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "ux",
"allowPrivilegeEscalation": false,
"procMount": "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ",
"seccompProfile": {
"type": "VƋZ1Ůđ眊ľǎɳ,ǿ飏",
"type": "ǣ萭",
"localhostProfile": "243"
}
},
"stdin": true,
"stdinOnce": true
"stdin": true
}
],
"containers": [
@ -705,9 +705,9 @@
"ports": [
{
"name": "249",
"hostPort": 474119379,
"containerPort": 1923334396,
"protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ",
"hostPort": 70206540,
"containerPort": -1694108493,
"protocol": "ǂ\u003e5姣\u003e懔%熷",
"hostIP": "250"
}
],
@ -716,11 +716,11 @@
"prefix": "251",
"configMapRef": {
"name": "252",
"optional": false
"optional": true
},
"secretRef": {
"name": "253",
"optional": true
"optional": false
}
}
],
@ -736,36 +736,35 @@
"resourceFieldRef": {
"containerName": "258",
"resource": "259",
"divisor": "771"
"divisor": "138"
},
"configMapKeyRef": {
"name": "260",
"key": "261",
"optional": false
"optional": true
},
"secretKeyRef": {
"name": "262",
"key": "263",
"optional": true
"optional": false
}
}
}
],
"resources": {
"limits": {
"吐": "777"
"脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻": "575"
},
"requests": {
"rʤî萨zvt莭琽§ć\\ ïì": "80"
"丯Ƙ枛牐ɺ皚|": "933"
}
},
"volumeMounts": [
{
"name": "264",
"readOnly": true,
"mountPath": "265",
"subPath": "266",
"mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S",
"mountPropagation": "[ħsĨɆâĺɗŹ倗S晒嶗UÐ_Ʈ",
"subPathExpr": "267"
}
],
@ -783,9 +782,8 @@
},
"httpGet": {
"path": "271",
"port": -1285424066,
"port": 1087851818,
"host": "272",
"scheme": "ni酛3ƁÀ",
"httpHeaders": [
{
"name": "273",
@ -932,19 +930,21 @@
"windowsOptions": {
"gmsaCredentialSpecName": "307",
"gmsaCredentialSpec": "308",
"runAsUserName": "309"
"runAsUserName": "309",
"hostProcess": false
},
"runAsUser": -857934902638099053,
"runAsGroup": 8967035373007538858,
"runAsNonRoot": true,
"runAsUser": 161123823296532265,
"runAsGroup": -6406791857291159870,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "Z鐫û咡W\u003c敄lu",
"procMount": "鐫û咡W\u003c敄lu|榝",
"seccompProfile": {
"type": "榝$î.Ȏ蝪ʜ5遰",
"type": "î.Ȏ蝪ʜ5遰=",
"localhostProfile": "310"
}
},
"stdin": true,
"stdinOnce": true,
"tty": true
}
@ -963,9 +963,9 @@
"ports": [
{
"name": "316",
"hostPort": -1462219068,
"containerPort": -370386363,
"protocol": "wƯ貾坢'跩aŕ翑0展}",
"hostPort": -370386363,
"containerPort": 1714588921,
"protocol": "Ư貾",
"hostIP": "317"
}
],
@ -974,7 +974,7 @@
"prefix": "318",
"configMapRef": {
"name": "319",
"optional": false
"optional": true
},
"secretRef": {
"name": "320",
@ -994,35 +994,36 @@
"resourceFieldRef": {
"containerName": "325",
"resource": "326",
"divisor": "185"
"divisor": "271"
},
"configMapKeyRef": {
"name": "327",
"key": "328",
"optional": true
"optional": false
},
"secretKeyRef": {
"name": "329",
"key": "330",
"optional": false
"optional": true
}
}
}
],
"resources": {
"limits": {
"鬶l獕;跣Hǝcw": "242"
"庰%皧V": "116"
},
"requests": {
"$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637"
"": "289"
}
},
"volumeMounts": [
{
"name": "331",
"readOnly": true,
"mountPath": "332",
"subPath": "333",
"mountPropagation": "",
"mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ",
"subPathExpr": "334"
}
],
@ -1040,26 +1041,26 @@
},
"httpGet": {
"path": "338",
"port": "339",
"host": "340",
"scheme": "",
"port": 1907998540,
"host": "339",
"scheme": "",
"httpHeaders": [
{
"name": "341",
"value": "342"
"name": "340",
"value": "341"
}
]
},
"tcpSocket": {
"port": 1315054653,
"port": "342",
"host": "343"
},
"initialDelaySeconds": 711020087,
"timeoutSeconds": 1103049140,
"periodSeconds": -1965247100,
"successThreshold": 218453478,
"failureThreshold": 1993268896,
"terminationGracePeriodSeconds": -9140155223242250138
"initialDelaySeconds": -253326525,
"timeoutSeconds": 567263590,
"periodSeconds": 887319241,
"successThreshold": 1559618829,
"failureThreshold": 1156888068,
"terminationGracePeriodSeconds": -5566612115749133989
},
"readinessProbe": {
"exec": {
@ -1069,9 +1070,9 @@
},
"httpGet": {
"path": "345",
"port": -1315487077,
"port": 1315054653,
"host": "346",
"scheme": "ğ_",
"scheme": "蚃ɣľ)酊龨δ摖ȱ",
"httpHeaders": [
{
"name": "347",
@ -1083,12 +1084,12 @@
"port": "349",
"host": "350"
},
"initialDelaySeconds": 1272940694,
"timeoutSeconds": -385597677,
"periodSeconds": 422133388,
"successThreshold": 1952458416,
"failureThreshold": 1456461851,
"terminationGracePeriodSeconds": -6078441689118311403
"initialDelaySeconds": 1905181464,
"timeoutSeconds": -1730959016,
"periodSeconds": 1272940694,
"successThreshold": -385597677,
"failureThreshold": 422133388,
"terminationGracePeriodSeconds": 8385745044578923915
},
"startupProbe": {
"exec": {
@ -1098,9 +1099,9 @@
},
"httpGet": {
"path": "352",
"port": 1332783160,
"port": 1013673874,
"host": "353",
"scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;",
"scheme": "ə娯Ȱ囌{",
"httpHeaders": [
{
"name": "354",
@ -1109,156 +1110,158 @@
]
},
"tcpSocket": {
"port": "356",
"host": "357"
"port": -1829146875,
"host": "356"
},
"initialDelaySeconds": -300247800,
"timeoutSeconds": 386804041,
"periodSeconds": -126958936,
"successThreshold": 186945072,
"failureThreshold": 620822482,
"terminationGracePeriodSeconds": -2203905759223555727
"initialDelaySeconds": -205176266,
"timeoutSeconds": 490479437,
"periodSeconds": -116469891,
"successThreshold": 311083651,
"failureThreshold": 353361793,
"terminationGracePeriodSeconds": -8939747084334542875
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"358"
"357"
]
},
"httpGet": {
"path": "359",
"port": "360",
"host": "361",
"scheme": "鯂²静",
"path": "358",
"port": -1021949447,
"host": "359",
"scheme": "B芭",
"httpHeaders": [
{
"name": "362",
"value": "363"
"name": "360",
"value": "361"
}
]
},
"tcpSocket": {
"port": -402384013,
"host": "364"
"port": "362",
"host": "363"
}
},
"preStop": {
"exec": {
"command": [
"365"
"364"
]
},
"httpGet": {
"path": "366",
"port": "367",
"host": "368",
"scheme": "鏻砅邻爥",
"path": "365",
"port": "366",
"host": "367",
"scheme": "yƕ丆録²Ŏ)",
"httpHeaders": [
{
"name": "369",
"value": "370"
"name": "368",
"value": "369"
}
]
},
"tcpSocket": {
"port": -305362540,
"host": "371"
"port": 507384491,
"host": "370"
}
}
},
"terminationMessagePath": "372",
"terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩",
"imagePullPolicy": "i绝5哇芆斩",
"terminationMessagePath": "371",
"terminationMessagePolicy": "3",
"imagePullPolicy": "汰8ŕİi騎C\"6x$1s",
"securityContext": {
"capabilities": {
"add": [
""
"p鋄5弢ȹ均i绝5"
],
"drop": [
"ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ"
""
]
},
"privileged": false,
"privileged": true,
"seLinuxOptions": {
"user": "373",
"role": "374",
"type": "375",
"level": "376"
"user": "372",
"role": "373",
"type": "374",
"level": "375"
},
"windowsOptions": {
"gmsaCredentialSpecName": "377",
"gmsaCredentialSpec": "378",
"runAsUserName": "379"
"gmsaCredentialSpecName": "376",
"gmsaCredentialSpec": "377",
"runAsUserName": "378",
"hostProcess": false
},
"runAsUser": -7936947433725476327,
"runAsGroup": -5712715102324619404,
"runAsUser": -3385088507022597813,
"runAsGroup": 7023916302283403328,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "W賁Ěɭɪǹ0",
"allowPrivilegeEscalation": false,
"procMount": "ş",
"seccompProfile": {
"type": ",ƷƣMț譎懚XW疪鑳",
"localhostProfile": "380"
"type": "諔迮ƙ",
"localhostProfile": "379"
}
},
"stdin": true,
"stdinOnce": true,
"tty": true,
"targetContainerName": "381"
"targetContainerName": "380"
}
],
"restartPolicy": "眵笭/9崍h趭(娕uE增猍ǵ x",
"terminationGracePeriodSeconds": 5164725064832182831,
"activeDeadlineSeconds": -5669474827175536499,
"dnsPolicy": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎",
"restartPolicy": "4ʗN,丽饾| 鞤ɱď",
"terminationGracePeriodSeconds": 5667186155078596628,
"activeDeadlineSeconds": 8952305945735902812,
"dnsPolicy": "µņP)DŽ髐njʉBn(fǂǢ",
"nodeSelector": {
"382": "383"
"381": "382"
},
"serviceAccountName": "384",
"serviceAccount": "385",
"serviceAccountName": "383",
"serviceAccount": "384",
"automountServiceAccountToken": false,
"nodeName": "386",
"nodeName": "385",
"hostNetwork": true,
"hostPID": true,
"shareProcessNamespace": false,
"hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "387",
"role": "388",
"type": "389",
"level": "390"
"user": "386",
"role": "387",
"type": "388",
"level": "389"
},
"windowsOptions": {
"gmsaCredentialSpecName": "391",
"gmsaCredentialSpec": "392",
"runAsUserName": "393"
"gmsaCredentialSpecName": "390",
"gmsaCredentialSpec": "391",
"runAsUserName": "392",
"hostProcess": true
},
"runAsUser": 8748656795747647539,
"runAsGroup": 1362411221198469787,
"runAsNonRoot": false,
"runAsUser": 2373631082804169687,
"runAsGroup": 6942343986058351509,
"runAsNonRoot": true,
"supplementalGroups": [
6117757314288468928
3174735363260936461
],
"fsGroup": 692941646129076193,
"fsGroup": -8460346884535567850,
"sysctls": [
{
"name": "394",
"value": "395"
"name": "393",
"value": "394"
}
],
"fsGroupChangePolicy": "Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ",
"fsGroupChangePolicy": "8",
"seccompProfile": {
"type": "箨ʨIk(dŊiɢ",
"localhostProfile": "396"
"type": "T[",
"localhostProfile": "395"
}
},
"imagePullSecrets": [
{
"name": "397"
"name": "396"
}
],
"hostname": "398",
"subdomain": "399",
"hostname": "397",
"subdomain": "398",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -1266,19 +1269,19 @@
{
"matchExpressions": [
{
"key": "400",
"operator": "y竬ʆɞȥ}礤铟怖ý萜Ǖc8",
"key": "399",
"operator": "Ƶf",
"values": [
"401"
"400"
]
}
],
"matchFields": [
{
"key": "402",
"operator": "ĝ®EĨǔvÄÚ×p鬷",
"key": "401",
"operator": "X鰨松/Ȁĵ鴁ĩȲǸ|蕎'佉賞",
"values": [
"403"
"402"
]
}
]
@ -1287,23 +1290,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -843639240,
"weight": -1519458130,
"preference": {
"matchExpressions": [
{
"key": "404",
"operator": "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$",
"key": "403",
"operator": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n",
"values": [
"405"
"404"
]
}
],
"matchFields": [
{
"key": "406",
"operator": "Z漤ŗ坟Ů\u003cy鯶縆ł",
"key": "405",
"operator": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ",
"values": [
"407"
"406"
]
}
]
@ -1316,32 +1319,29 @@
{
"labelSelector": {
"matchLabels": {
"a--g.u-2/p-9-4-Tm.__G-8...__.Q_c8.G.b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-_2": "1Ys_Mop34_-y.H"
"f.-zv._._.5-H.T.-.-.T-V_D_0-K_AS": "NZ_C..7o_x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_9_18"
},
"matchExpressions": [
{
"key": "4.B.__6m",
"operator": "In",
"values": [
"3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn"
]
"key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q",
"operator": "DoesNotExist"
}
]
},
"namespaces": [
"414"
"413"
],
"topologyKey": "415",
"topologyKey": "414",
"namespaceSelector": {
"matchLabels": {
"x-3/6-.7D.3_KPgL": "d._.Um.-__k.5"
"4sE4": "B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6"
},
"matchExpressions": [
{
"key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C",
"operator": "In",
"key": "0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs",
"operator": "NotIn",
"values": [
"p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw"
"6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7"
]
}
]
@ -1350,37 +1350,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 1036096141,
"weight": -688929182,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"3-8o1-x-1wl----f31-0-2t3zw.il-023bm-6l2e5---k5v38/E9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiSo": "X-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2"
"y_-3_L_2--_v2.5p_6": "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q"
},
"matchExpressions": [
{
"key": "Y.39g_.--_-_ve5.m_U",
"key": "3--51",
"operator": "NotIn",
"values": [
"nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
"C.-e16-O5"
]
}
]
},
"namespaces": [
"428"
"427"
],
"topologyKey": "429",
"topologyKey": "428",
"namespaceSelector": {
"matchLabels": {
"0--385h---0-u73phjo--8kb6--ut---p6.t5--9-4-d2-22-0/jcz.-Y6T4gz": "p_.----cp__ac8u.._-__BM.6-.Y7"
"93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM"
},
"matchExpressions": [
{
"key": "1x--i--7-nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w-ke5p-3.nu--17---u7-gl7814ei-07shtq-6---g----9s39z-5/wv3UDf.-4D-5",
"operator": "NotIn",
"values": [
"l67Q.-_t--O.3L.z2-y.-...C4_-_2G8"
]
"key": "8mtxb__-ex-_1_-ODgC_1-_8__3",
"operator": "DoesNotExist"
}
]
}
@ -1393,29 +1390,26 @@
{
"labelSelector": {
"matchLabels": {
"fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5": "TB-d-Q"
"K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0": "u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K"
},
"matchExpressions": [
{
"key": "4b699/B9n.2",
"operator": "In",
"values": [
"MM7-.e.x"
]
"key": "sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V",
"operator": "Exists"
}
]
},
"namespaces": [
"442"
"441"
],
"topologyKey": "443",
"topologyKey": "442",
"namespaceSelector": {
"matchLabels": {
"B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1"
"e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m": "e.Dx._.W-6..4_MU7iLfS0"
},
"matchExpressions": [
{
"key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J",
"key": "P6j.u--.K--g__..b",
"operator": "DoesNotExist"
}
]
@ -1424,34 +1418,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 1131487788,
"weight": -616061040,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p"
"L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u": "j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w"
},
"matchExpressions": [
{
"key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b",
"operator": "NotIn",
"values": [
"u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m"
]
"key": "b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X",
"operator": "Exists"
}
]
},
"namespaces": [
"456"
"455"
],
"topologyKey": "457",
"topologyKey": "456",
"namespaceSelector": {
"matchLabels": {
"7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K"
"97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a": "ZZ__.-_U-.60--o._8H__lB"
},
"matchExpressions": [
{
"key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T",
"operator": "DoesNotExist"
"key": "vi.Z",
"operator": "NotIn",
"values": [
"03l-_86_u2-7_._qN__A_f_-B3_U__L.H"
]
}
]
}
@ -1460,67 +1454,64 @@
]
}
},
"schedulerName": "464",
"schedulerName": "463",
"tolerations": [
{
"key": "465",
"operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ",
"value": "466",
"effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸",
"tolerationSeconds": -3147305732428645642
"key": "464",
"operator": "瘂S淫íŶƭ鬯富Nú顏*z犔kU",
"value": "465",
"effect": "甬Ʈ岢r臣鐐qwïźU痤ȵ",
"tolerationSeconds": -4322909565451750640
}
],
"hostAliases": [
{
"ip": "467",
"ip": "466",
"hostnames": [
"468"
"467"
]
}
],
"priorityClassName": "469",
"priority": -1756088332,
"priorityClassName": "468",
"priority": 780753434,
"dnsConfig": {
"nameservers": [
"470"
"469"
],
"searches": [
"471"
"470"
],
"options": [
{
"name": "472",
"value": "473"
"name": "471",
"value": "472"
}
]
},
"readinessGates": [
{
"conditionType": "#sM網"
"conditionType": "¤趜磕绘翁揌p:oŇE"
}
],
"runtimeClassName": "474",
"enableServiceLinks": true,
"preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡",
"runtimeClassName": "473",
"enableServiceLinks": false,
"preemptionPolicy": "ħ\\",
"overhead": {
"炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452"
"kƱ": "313"
},
"topologySpreadConstraints": [
{
"maxSkew": -447559705,
"topologyKey": "475",
"whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒",
"maxSkew": 1674267790,
"topologyKey": "474",
"whenUnsatisfiable": "G峣搒R谱ʜ篲\u0026ZǘtnjʣǕV",
"labelSelector": {
"matchLabels": {
"47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
"Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i": "Wq-...Oai.D7-_9..8-8yw..__Yb_8"
},
"matchExpressions": [
{
"key": "KTlO.__0PX",
"operator": "In",
"values": [
"V6K_.3_583-6.f-.9-.V..Q-K_6_3"
]
"key": "h---dY7_M_-._M5..-N_H_55..--E3_2D1",
"operator": "DoesNotExist"
}
]
}

View File

@ -62,116 +62,111 @@ template:
selfLink: "23"
uid: SǡƏ
spec:
activeDeadlineSeconds: -5669474827175536499
activeDeadlineSeconds: 8952305945735902812
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "404"
operator: 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$
- key: "403"
operator: Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n
values:
- "405"
- "404"
matchFields:
- key: "406"
operator: Z漤ŗ坟Ů<y鯶縆ł
- key: "405"
operator: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ
values:
- "407"
weight: -843639240
- "406"
weight: -1519458130
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "400"
operator: y竬ʆɞȥ}礤铟怖ý萜Ǖc8
- key: "399"
operator: Ƶf
values:
- "401"
- "400"
matchFields:
- key: "402"
operator: ĝ®EĨǔvÄÚ×p鬷
- key: "401"
operator: X鰨松/Ȁĵ鴁ĩȲǸ|蕎'佉賞
values:
- "403"
- "402"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: Y.39g_.--_-_ve5.m_U
- key: 3--51
operator: NotIn
values:
- nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
- C.-e16-O5
matchLabels:
3-8o1-x-1wl----f31-0-2t3zw.il-023bm-6l2e5---k5v38/E9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiSo: X-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2
y_-3_L_2--_v2.5p_6: u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q
namespaceSelector:
matchExpressions:
- key: 1x--i--7-nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w-ke5p-3.nu--17---u7-gl7814ei-07shtq-6---g----9s39z-5/wv3UDf.-4D-5
operator: NotIn
values:
- l67Q.-_t--O.3L.z2-y.-...C4_-_2G8
- key: 8mtxb__-ex-_1_-ODgC_1-_8__3
operator: DoesNotExist
matchLabels:
0--385h---0-u73phjo--8kb6--ut---p6.t5--9-4-d2-22-0/jcz.-Y6T4gz: p_.----cp__ac8u.._-__BM.6-.Y7
93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM
namespaces:
- "428"
topologyKey: "429"
weight: 1036096141
- "427"
topologyKey: "428"
weight: -688929182
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 4.B.__6m
operator: In
values:
- 3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn
- key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q
operator: DoesNotExist
matchLabels:
a--g.u-2/p-9-4-Tm.__G-8...__.Q_c8.G.b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-_2: 1Ys_Mop34_-y.H
f.-zv._._.5-H.T.-.-.T-V_D_0-K_AS: NZ_C..7o_x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_9_18
namespaceSelector:
matchExpressions:
- key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C
operator: In
- key: 0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs
operator: NotIn
values:
- p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw
- 6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7
matchLabels:
x-3/6-.7D.3_KPgL: d._.Um.-__k.5
4sE4: B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6
namespaces:
- "414"
topologyKey: "415"
- "413"
topologyKey: "414"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
- key: b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X
operator: Exists
matchLabels:
2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u: j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w
namespaceSelector:
matchExpressions:
- key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
operator: DoesNotExist
- key: vi.Z
operator: NotIn
values:
- 03l-_86_u2-7_._qN__A_f_-B3_U__L.H
matchLabels:
7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a: ZZ__.-_U-.60--o._8H__lB
namespaces:
- "456"
topologyKey: "457"
weight: 1131487788
- "455"
topologyKey: "456"
weight: -616061040
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 4b699/B9n.2
operator: In
values:
- MM7-.e.x
- key: sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V
operator: Exists
matchLabels:
fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q
K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0: u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K
namespaceSelector:
matchExpressions:
- key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
- key: P6j.u--.K--g__..b
operator: DoesNotExist
matchLabels:
B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
? e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m
: e.Dx._.W-6..4_MU7iLfS0
namespaces:
- "442"
topologyKey: "443"
- "441"
topologyKey: "442"
automountServiceAccountToken: false
containers:
- args:
@ -185,26 +180,26 @@ template:
configMapKeyRef:
key: "261"
name: "260"
optional: false
optional: true
fieldRef:
apiVersion: "256"
fieldPath: "257"
resourceFieldRef:
containerName: "258"
divisor: "771"
divisor: "138"
resource: "259"
secretKeyRef:
key: "263"
name: "262"
optional: true
optional: false
envFrom:
- configMapRef:
name: "252"
optional: false
optional: true
prefix: "251"
secretRef:
name: "253"
optional: true
optional: false
image: "245"
imagePullPolicy: r嚧
lifecycle:
@ -249,8 +244,7 @@ template:
- name: "273"
value: "274"
path: "271"
port: -1285424066
scheme: ni酛3ƁÀ
port: 1087851818
initialDelaySeconds: -2036074491
periodSeconds: 165047920
successThreshold: -393291312
@ -261,11 +255,11 @@ template:
timeoutSeconds: -148216266
name: "244"
ports:
- containerPort: 1923334396
- containerPort: -1694108493
hostIP: "250"
hostPort: 474119379
hostPort: 70206540
name: "249"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ
protocol: ǂ>5姣>懔%熷
readinessProbe:
exec:
command:
@ -289,9 +283,9 @@ template:
timeoutSeconds: -1745509819
resources:
limits:
: "777"
脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻: "575"
requests:
rʤî萨zvt莭琽§ć\ ïì: "80"
丯Ƙ枛牐ɺ皚|: "933"
securityContext:
allowPrivilegeEscalation: false
capabilities:
@ -300,11 +294,11 @@ template:
drop:
- ʁ岼昕ĬÇ
privileged: true
procMount: Z鐫û咡W<敄lu
procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858
runAsNonRoot: true
runAsUser: -857934902638099053
runAsGroup: -6406791857291159870
runAsNonRoot: false
runAsUser: 161123823296532265
seLinuxOptions:
level: "306"
role: "304"
@ -312,10 +306,11 @@ template:
user: "303"
seccompProfile:
localhostProfile: "310"
type: 榝$î.Ȏ蝪ʜ5遰
type: î.Ȏ蝪ʜ5遰=
windowsOptions:
gmsaCredentialSpec: "308"
gmsaCredentialSpecName: "307"
hostProcess: false
runAsUserName: "309"
startupProbe:
exec:
@ -338,6 +333,7 @@ template:
port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096
stdin: true
stdinOnce: true
terminationMessagePath: "302"
terminationMessagePolicy: ĸ輦唊
@ -347,22 +343,21 @@ template:
name: "268"
volumeMounts:
- mountPath: "265"
mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S
mountPropagation: '[ħsĨɆâĺɗŹ倗S晒嶗UÐ_Ʈ'
name: "264"
readOnly: true
subPath: "266"
subPathExpr: "267"
workingDir: "248"
dnsConfig:
nameservers:
- "470"
- "469"
options:
- name: "472"
value: "473"
- name: "471"
value: "472"
searches:
- "471"
dnsPolicy: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
enableServiceLinks: true
- "470"
dnsPolicy: µņP)DŽ髐njʉBn(fǂǢ
enableServiceLinks: false
ephemeralContainers:
- args:
- "314"
@ -375,183 +370,185 @@ template:
configMapKeyRef:
key: "328"
name: "327"
optional: true
optional: false
fieldRef:
apiVersion: "323"
fieldPath: "324"
resourceFieldRef:
containerName: "325"
divisor: "185"
divisor: "271"
resource: "326"
secretKeyRef:
key: "330"
name: "329"
optional: false
optional: true
envFrom:
- configMapRef:
name: "319"
optional: false
optional: true
prefix: "318"
secretRef:
name: "320"
optional: false
image: "312"
imagePullPolicy: i绝5哇芆斩
imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle:
postStart:
exec:
command:
- "358"
- "357"
httpGet:
host: "361"
host: "359"
httpHeaders:
- name: "362"
value: "363"
path: "359"
port: "360"
scheme: 鯂²静
- name: "360"
value: "361"
path: "358"
port: -1021949447
scheme: B芭
tcpSocket:
host: "364"
port: -402384013
host: "363"
port: "362"
preStop:
exec:
command:
- "365"
- "364"
httpGet:
host: "368"
host: "367"
httpHeaders:
- name: "369"
value: "370"
path: "366"
port: "367"
scheme: 鏻砅邻爥
- name: "368"
value: "369"
path: "365"
port: "366"
scheme: yƕ丆録²Ŏ)
tcpSocket:
host: "371"
port: -305362540
host: "370"
port: 507384491
livenessProbe:
exec:
command:
- "337"
failureThreshold: 1993268896
failureThreshold: 1156888068
httpGet:
host: "340"
host: "339"
httpHeaders:
- name: "341"
value: "342"
- name: "340"
value: "341"
path: "338"
port: "339"
scheme:
initialDelaySeconds: 711020087
periodSeconds: -1965247100
successThreshold: 218453478
port: 1907998540
scheme: ',ŕ'
initialDelaySeconds: -253326525
periodSeconds: 887319241
successThreshold: 1559618829
tcpSocket:
host: "343"
port: 1315054653
terminationGracePeriodSeconds: -9140155223242250138
timeoutSeconds: 1103049140
port: "342"
terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 567263590
name: "311"
ports:
- containerPort: -370386363
- containerPort: 1714588921
hostIP: "317"
hostPort: -1462219068
hostPort: -370386363
name: "316"
protocol: wƯ貾坢'跩aŕ翑0展}
protocol: Ư貾
readinessProbe:
exec:
command:
- "344"
failureThreshold: 1456461851
failureThreshold: 422133388
httpGet:
host: "346"
httpHeaders:
- name: "347"
value: "348"
path: "345"
port: -1315487077
scheme: ğ_
initialDelaySeconds: 1272940694
periodSeconds: 422133388
successThreshold: 1952458416
port: 1315054653
scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1905181464
periodSeconds: 1272940694
successThreshold: -385597677
tcpSocket:
host: "350"
port: "349"
terminationGracePeriodSeconds: -6078441689118311403
timeoutSeconds: -385597677
terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -1730959016
resources:
limits:
鬶l獕;跣Hǝcw: "242"
庰%皧V: "116"
requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637"
"": "289"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ""
- p鋄5弢ȹ均i绝5
drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
privileged: false
procMount: W賁Ěɭɪǹ0
- ""
privileged: true
procMount: ş
readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404
runAsGroup: 7023916302283403328
runAsNonRoot: false
runAsUser: -7936947433725476327
runAsUser: -3385088507022597813
seLinuxOptions:
level: "376"
role: "374"
type: "375"
user: "373"
level: "375"
role: "373"
type: "374"
user: "372"
seccompProfile:
localhostProfile: "380"
type: ',ƷƣMț譎懚XW疪鑳'
localhostProfile: "379"
type: 諔迮ƙ
windowsOptions:
gmsaCredentialSpec: "378"
gmsaCredentialSpecName: "377"
runAsUserName: "379"
gmsaCredentialSpec: "377"
gmsaCredentialSpecName: "376"
hostProcess: false
runAsUserName: "378"
startupProbe:
exec:
command:
- "351"
failureThreshold: 620822482
failureThreshold: 353361793
httpGet:
host: "353"
httpHeaders:
- name: "354"
value: "355"
path: "352"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
port: 1013673874
scheme: ə娯Ȱ囌{
initialDelaySeconds: -205176266
periodSeconds: -116469891
successThreshold: 311083651
tcpSocket:
host: "357"
port: "356"
terminationGracePeriodSeconds: -2203905759223555727
timeoutSeconds: 386804041
stdin: true
host: "356"
port: -1829146875
terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 490479437
stdinOnce: true
targetContainerName: "381"
terminationMessagePath: "372"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
tty: true
targetContainerName: "380"
terminationMessagePath: "371"
terminationMessagePolicy: "3"
volumeDevices:
- devicePath: "336"
name: "335"
volumeMounts:
- mountPath: "332"
mountPropagation: ""
mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "331"
readOnly: true
subPath: "333"
subPathExpr: "334"
workingDir: "315"
hostAliases:
- hostnames:
- "468"
ip: "467"
- "467"
ip: "466"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "398"
hostname: "397"
imagePullSecrets:
- name: "397"
- name: "396"
initContainers:
- args:
- "175"
@ -672,18 +669,18 @@ template:
requests:
瓷碑: "809"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF
drop:
- 籘Àǒɿʒ刽ʼn
privileged: false
procMount: ux
procMount: x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ
readOnlyRootFilesystem: true
runAsGroup: 2673502285499267331
runAsGroup: -4151726557168738613
runAsNonRoot: true
runAsUser: -1471909806757355977
runAsUser: 8519427267030036521
seLinuxOptions:
level: "239"
role: "237"
@ -691,10 +688,11 @@ template:
user: "236"
seccompProfile:
localhostProfile: "243"
type: VƋZ1Ůđ眊ľǎɳ,ǿ飏
type: ǣ萭
windowsOptions:
gmsaCredentialSpec: "241"
gmsaCredentialSpecName: "240"
hostProcess: false
runAsUserName: "242"
startupProbe:
exec:
@ -718,7 +716,6 @@ template:
terminationGracePeriodSeconds: 6388225771169951791
timeoutSeconds: 1487007476
stdin: true
stdinOnce: true
terminationMessagePath: "235"
terminationMessagePolicy: Ⱦdz@ùƸʋŀ
volumeDevices:
@ -731,66 +728,65 @@ template:
subPath: "194"
subPathExpr: "195"
workingDir: "176"
nodeName: "386"
nodeName: "385"
nodeSelector:
"382": "383"
"381": "382"
overhead:
炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
priority: -1756088332
priorityClassName: "469"
: "313"
preemptionPolicy: ħ\
priority: 780753434
priorityClassName: "468"
readinessGates:
- conditionType: '#sM網'
restartPolicy: 眵笭/9崍h趭(娕uE增猍ǵ x
runtimeClassName: "474"
schedulerName: "464"
- conditionType: ¤趜磕绘翁揌p:oŇE
restartPolicy: 4ʗN,丽饾| 鞤ɱď
runtimeClassName: "473"
schedulerName: "463"
securityContext:
fsGroup: 692941646129076193
fsGroupChangePolicy: Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ
runAsGroup: 1362411221198469787
runAsNonRoot: false
runAsUser: 8748656795747647539
fsGroup: -8460346884535567850
fsGroupChangePolicy: "8"
runAsGroup: 6942343986058351509
runAsNonRoot: true
runAsUser: 2373631082804169687
seLinuxOptions:
level: "390"
role: "388"
type: "389"
user: "387"
level: "389"
role: "387"
type: "388"
user: "386"
seccompProfile:
localhostProfile: "396"
type: 箨ʨIk(dŊiɢ
localhostProfile: "395"
type: T[
supplementalGroups:
- 6117757314288468928
- 3174735363260936461
sysctls:
- name: "394"
value: "395"
- name: "393"
value: "394"
windowsOptions:
gmsaCredentialSpec: "392"
gmsaCredentialSpecName: "391"
runAsUserName: "393"
serviceAccount: "385"
serviceAccountName: "384"
gmsaCredentialSpec: "391"
gmsaCredentialSpecName: "390"
hostProcess: true
runAsUserName: "392"
serviceAccount: "384"
serviceAccountName: "383"
setHostnameAsFQDN: false
shareProcessNamespace: false
subdomain: "399"
terminationGracePeriodSeconds: 5164725064832182831
shareProcessNamespace: true
subdomain: "398"
terminationGracePeriodSeconds: 5667186155078596628
tolerations:
- effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸
key: "465"
operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ
tolerationSeconds: -3147305732428645642
value: "466"
- effect: 甬Ʈ岢r臣鐐qwïźU痤ȵ
key: "464"
operator: 瘂S淫íŶƭ鬯富Nú顏*z犔kU
tolerationSeconds: -4322909565451750640
value: "465"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: KTlO.__0PX
operator: In
values:
- V6K_.3_583-6.f-.9-.V..Q-K_6_3
- key: h---dY7_M_-._M5..-N_H_55..--E3_2D1
operator: DoesNotExist
matchLabels:
47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
maxSkew: -447559705
topologyKey: "475"
whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒
Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i: Wq-...Oai.D7-_9..8-8yw..__Yb_8
maxSkew: 1674267790
topologyKey: "474"
whenUnsatisfiable: G峣搒R谱ʜ篲&ZǘtnjʣǕV
volumes:
- awsElasticBlockStore:
fsType: "43"

View File

@ -679,20 +679,20 @@
"windowsOptions": {
"gmsaCredentialSpecName": "241",
"gmsaCredentialSpec": "242",
"runAsUserName": "243"
"runAsUserName": "243",
"hostProcess": false
},
"runAsUser": -2000070193364862971,
"runAsGroup": -636584014972667630,
"runAsNonRoot": false,
"runAsUser": 4530581071337252406,
"runAsGroup": 708875421817317137,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ",
"allowPrivilegeEscalation": false,
"procMount": "鸖ɱJȉ罴ņ螡źȰ",
"seccompProfile": {
"type": "w",
"type": "$矡ȶ",
"localhostProfile": "244"
}
},
"stdin": true,
"stdinOnce": true,
"tty": true
}
@ -711,9 +711,9 @@
"ports": [
{
"name": "250",
"hostPort": 1752155096,
"containerPort": -1962065705,
"protocol": "¿",
"hostPort": -1905643191,
"containerPort": -2717401,
"protocol": "ɳɷ9Ì",
"hostIP": "251"
}
],
@ -726,7 +726,7 @@
},
"secretRef": {
"name": "254",
"optional": false
"optional": true
}
}
],
@ -742,7 +742,7 @@
"resourceFieldRef": {
"containerName": "259",
"resource": "260",
"divisor": "142"
"divisor": "800"
},
"configMapKeyRef": {
"name": "261",
@ -752,17 +752,17 @@
"secretKeyRef": {
"name": "263",
"key": "264",
"optional": false
"optional": true
}
}
}
],
"resources": {
"limits": {
"ǩ": "957"
"pw": "934"
},
"requests": {
"Ɔȓ蹣ɐǛv+8Ƥ熪": "951"
"輓Ɔȓ蹣ɐǛv+8": "375"
}
},
"volumeMounts": [
@ -770,7 +770,7 @@
"name": "265",
"mountPath": "266",
"subPath": "267",
"mountPropagation": "啛更",
"mountPropagation": "颐o",
"subPathExpr": "268"
}
],
@ -788,97 +788,96 @@
},
"httpGet": {
"path": "272",
"port": "273",
"host": "274",
"scheme": "Ů+朷Ǝ膯ljVX1虊",
"port": 972978563,
"host": "273",
"scheme": "ȨŮ+朷Ǝ膯",
"httpHeaders": [
{
"name": "275",
"value": "276"
"name": "274",
"value": "275"
}
]
},
"tcpSocket": {
"port": -979584143,
"host": "277"
"port": -1506633471,
"host": "276"
},
"initialDelaySeconds": -1748648882,
"timeoutSeconds": -239843014,
"periodSeconds": 1381579966,
"successThreshold": -1418092595,
"failureThreshold": -1538905728,
"terminationGracePeriodSeconds": -1867540518204155332
"initialDelaySeconds": -249989919,
"timeoutSeconds": -171684192,
"periodSeconds": -602419938,
"successThreshold": 1040396664,
"failureThreshold": -979584143,
"terminationGracePeriodSeconds": -7510389757339505131
},
"readinessProbe": {
"exec": {
"command": [
"278"
"277"
]
},
"httpGet": {
"path": "279",
"port": "280",
"host": "281",
"scheme": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*",
"path": "278",
"port": -1538905728,
"host": "279",
"scheme": "ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢xɮ",
"httpHeaders": [
{
"name": "282",
"value": "283"
"name": "280",
"value": "281"
}
]
},
"tcpSocket": {
"port": 1574967021,
"host": "284"
"port": "282",
"host": "283"
},
"initialDelaySeconds": -244758593,
"timeoutSeconds": 591440053,
"periodSeconds": 104069700,
"successThreshold": -331594625,
"failureThreshold": 888935190,
"terminationGracePeriodSeconds": 7193904584276385338
"initialDelaySeconds": -1817291584,
"timeoutSeconds": 1224868165,
"periodSeconds": 582041100,
"successThreshold": 509188266,
"failureThreshold": -940514142,
"terminationGracePeriodSeconds": 6764431850409848860
},
"startupProbe": {
"exec": {
"command": [
"285"
"284"
]
},
"httpGet": {
"path": "286",
"port": "287",
"host": "288",
"scheme": "î.Ȏ蝪ʜ5遰=",
"path": "285",
"port": -331594625,
"host": "286",
"scheme": "lu|榝$î.",
"httpHeaders": [
{
"name": "289",
"value": "290"
"name": "287",
"value": "288"
}
]
},
"tcpSocket": {
"port": 834105836,
"host": "291"
"port": "289",
"host": "290"
},
"initialDelaySeconds": -1462219068,
"timeoutSeconds": -370386363,
"periodSeconds": 1714588921,
"successThreshold": -1246371817,
"failureThreshold": 617318981,
"terminationGracePeriodSeconds": 1856677271350902065
"initialDelaySeconds": -1505188927,
"timeoutSeconds": -2133054549,
"periodSeconds": 2083727489,
"successThreshold": 486365838,
"failureThreshold": 133009177,
"terminationGracePeriodSeconds": -6177393256425700216
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"292"
"291"
]
},
"httpGet": {
"path": "293",
"port": -282193676,
"path": "292",
"port": "293",
"host": "294",
"scheme": "Ļǟi\u0026",
"httpHeaders": [
{
"name": "295",
@ -901,7 +900,7 @@
"path": "300",
"port": "301",
"host": "302",
"scheme": "垾现葢ŵ橨",
"scheme": "跩aŕ翑",
"httpHeaders": [
{
"name": "303",
@ -910,144 +909,144 @@
]
},
"tcpSocket": {
"port": -1312425203,
"host": "305"
"port": "305",
"host": "306"
}
}
},
"terminationMessagePath": "306",
"terminationMessagePolicy": ";跣Hǝcw媀瓄\u0026",
"imagePullPolicy": "丟×x锏ɟ4Ǒ",
"terminationMessagePath": "307",
"imagePullPolicy": "\u0026皥贸碔lNKƙ順\\E¦队偯",
"securityContext": {
"capabilities": {
"add": [
"ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ"
"徥淳4揻-$ɽ丟"
],
"drop": [
")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:"
""
]
},
"privileged": false,
"seLinuxOptions": {
"user": "307",
"role": "308",
"type": "309",
"level": "310"
"user": "308",
"role": "309",
"type": "310",
"level": "311"
},
"windowsOptions": {
"gmsaCredentialSpecName": "311",
"gmsaCredentialSpec": "312",
"runAsUserName": "313"
"gmsaCredentialSpecName": "312",
"gmsaCredentialSpec": "313",
"runAsUserName": "314",
"hostProcess": false
},
"runAsUser": 5620818514944490121,
"runAsGroup": -499179336506637450,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"runAsUser": -816831389119959689,
"runAsGroup": 8194791334069427324,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
"procMount": "ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻",
"procMount": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ",
"seccompProfile": {
"type": "ih亏yƕ丆録²",
"localhostProfile": "314"
"type": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə",
"localhostProfile": "315"
}
},
"stdin": true,
"stdinOnce": true,
"tty": true
}
],
"ephemeralContainers": [
{
"name": "315",
"image": "316",
"name": "316",
"image": "317",
"command": [
"317"
],
"args": [
"318"
],
"workingDir": "319",
"args": [
"319"
],
"workingDir": "320",
"ports": [
{
"name": "320",
"hostPort": 507384491,
"containerPort": -1117254382,
"protocol": "趐囨鏻砅邻爥蹔ŧOǨ",
"hostIP": "321"
"name": "321",
"hostPort": 1504385614,
"containerPort": 865289071,
"protocol": "iɥ嵐sC8",
"hostIP": "322"
}
],
"envFrom": [
{
"prefix": "322",
"prefix": "323",
"configMapRef": {
"name": "323",
"optional": true
"name": "324",
"optional": false
},
"secretRef": {
"name": "324",
"optional": true
"name": "325",
"optional": false
}
}
],
"env": [
{
"name": "325",
"value": "326",
"name": "326",
"value": "327",
"valueFrom": {
"fieldRef": {
"apiVersion": "327",
"fieldPath": "328"
"apiVersion": "328",
"fieldPath": "329"
},
"resourceFieldRef": {
"containerName": "329",
"resource": "330",
"divisor": "149"
"containerName": "330",
"resource": "331",
"divisor": "832"
},
"configMapKeyRef": {
"name": "331",
"key": "332",
"optional": true
"name": "332",
"key": "333",
"optional": false
},
"secretKeyRef": {
"name": "333",
"key": "334",
"optional": true
"name": "334",
"key": "335",
"optional": false
}
}
}
],
"resources": {
"limits": {
"幩šeSvEȤƏ埮pɵ": "426"
"h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻": "127"
},
"requests": {
"Ȗ|ʐşƧ諔迮ƙIJ嘢4": "422"
"C\"6x$1s": "463"
}
},
"volumeMounts": [
{
"name": "335",
"mountPath": "336",
"subPath": "337",
"mountPropagation": "",
"subPathExpr": "338"
"name": "336",
"mountPath": "337",
"subPath": "338",
"mountPropagation": "P­蜷ɔ幩šeSvEȤƏ埮pɵ{W",
"subPathExpr": "339"
}
],
"volumeDevices": [
{
"name": "339",
"devicePath": "340"
"name": "340",
"devicePath": "341"
}
],
"livenessProbe": {
"exec": {
"command": [
"341"
"342"
]
},
"httpGet": {
"path": "342",
"port": "343",
"path": "343",
"port": -1700828941,
"host": "344",
"scheme": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎",
"scheme": "諔迮ƙ",
"httpHeaders": [
{
"name": "345",
@ -1059,12 +1058,12 @@
"port": "347",
"host": "348"
},
"initialDelaySeconds": -200074798,
"timeoutSeconds": 556036216,
"periodSeconds": -1838917931,
"successThreshold": -1563928252,
"failureThreshold": -302933400,
"terminationGracePeriodSeconds": 7094149050088640176
"initialDelaySeconds": -969533986,
"timeoutSeconds": 299741709,
"periodSeconds": -488127393,
"successThreshold": 1137109081,
"failureThreshold": -1896415283,
"terminationGracePeriodSeconds": 6618112330449141397
},
"readinessProbe": {
"exec": {
@ -1074,26 +1073,26 @@
},
"httpGet": {
"path": "350",
"port": -832681001,
"host": "351",
"scheme": "h趭",
"port": "351",
"host": "352",
"scheme": "ɱďW賁Ě",
"httpHeaders": [
{
"name": "352",
"value": "353"
"name": "353",
"value": "354"
}
]
},
"tcpSocket": {
"port": "354",
"port": 1436222565,
"host": "355"
},
"initialDelaySeconds": -1969828011,
"timeoutSeconds": -1186720090,
"periodSeconds": -748525373,
"successThreshold": 805162379,
"failureThreshold": 1486914884,
"terminationGracePeriodSeconds": -2753079965660681160
"initialDelaySeconds": -674445196,
"timeoutSeconds": 1239158543,
"periodSeconds": -543432015,
"successThreshold": -515370067,
"failureThreshold": 2073046460,
"terminationGracePeriodSeconds": 7270263763744228913
},
"startupProbe": {
"exec": {
@ -1105,7 +1104,7 @@
"path": "357",
"port": "358",
"host": "359",
"scheme": "壶ƵfȽÃ茓",
"scheme": "XW疪鑳w妕眵",
"httpHeaders": [
{
"name": "360",
@ -1114,15 +1113,15 @@
]
},
"tcpSocket": {
"port": 1359309446,
"port": 455919108,
"host": "362"
},
"initialDelaySeconds": -647531549,
"timeoutSeconds": -733444015,
"periodSeconds": 1737172479,
"successThreshold": -767058113,
"failureThreshold": 1223564938,
"terminationGracePeriodSeconds": 5333033627167868167
"initialDelaySeconds": -832681001,
"timeoutSeconds": 1616390418,
"periodSeconds": -1337533938,
"successThreshold": 1473765654,
"failureThreshold": 252309773,
"terminationGracePeriodSeconds": -8460346884535567850
},
"lifecycle": {
"postStart": {
@ -1133,18 +1132,18 @@
},
"httpGet": {
"path": "364",
"port": "365",
"host": "366",
"scheme": "賞ǧĒzŔ瘍N",
"port": -869776221,
"host": "365",
"scheme": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
"httpHeaders": [
{
"name": "367",
"value": "368"
"name": "366",
"value": "367"
}
]
},
"tcpSocket": {
"port": -531787516,
"port": "368",
"host": "369"
}
},
@ -1156,9 +1155,9 @@
},
"httpGet": {
"path": "371",
"port": -824445204,
"port": -1917609921,
"host": "372",
"scheme": "泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ",
"scheme": "",
"httpHeaders": [
{
"name": "373",
@ -1173,15 +1172,15 @@
}
},
"terminationMessagePath": "377",
"terminationMessagePolicy": "Ƽ¨Ix糂腂ǂǚŜEu",
"imagePullPolicy": "I滞廬耐鷞焬CQm坊柩劄奼[",
"terminationMessagePolicy": "ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[",
"imagePullPolicy": "灲閈誹ʅ蕉ɼ搳",
"securityContext": {
"capabilities": {
"add": [
"ĝ®EĨǔvÄÚ×p鬷"
"箨ʨIk(dŊiɢ"
],
"drop": [
"罂o3ǰ廋i乳'ȘUɻ;襕ċ桉桃"
"Į蛋I滞廬耐鷞焬CQ"
]
},
"privileged": true,
@ -1194,35 +1193,38 @@
"windowsOptions": {
"gmsaCredentialSpecName": "382",
"gmsaCredentialSpec": "383",
"runAsUserName": "384"
"runAsUserName": "384",
"hostProcess": false
},
"runAsUser": 2803095162614904173,
"runAsGroup": -1207159809527615562,
"runAsNonRoot": true,
"runAsUser": -506227444233847191,
"runAsGroup": -583355774536171734,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "-紑浘牬釼aTGÒ鵌",
"procMount": "EĨǔvÄÚ×p",
"seccompProfile": {
"type": "3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶",
"type": "m罂o3ǰ廋i乳'ȘUɻ",
"localhostProfile": "385"
}
},
"stdin": true,
"stdinOnce": true,
"tty": true,
"targetContainerName": "386"
}
],
"restartPolicy": "ȟP",
"terminationGracePeriodSeconds": -7559660744894799169,
"activeDeadlineSeconds": 6210194589539369395,
"dnsPolicy": ".wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢",
"restartPolicy": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑",
"terminationGracePeriodSeconds": -3877666641335425693,
"activeDeadlineSeconds": -2391833818948531474,
"dnsPolicy": "Ƒ[澔",
"nodeSelector": {
"387": "388"
},
"serviceAccountName": "389",
"serviceAccount": "390",
"automountServiceAccountToken": false,
"automountServiceAccountToken": true,
"nodeName": "391",
"hostNetwork": true,
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
@ -1234,24 +1236,25 @@
"windowsOptions": {
"gmsaCredentialSpecName": "396",
"gmsaCredentialSpec": "397",
"runAsUserName": "398"
"runAsUserName": "398",
"hostProcess": false
},
"runAsUser": 5115783808026178112,
"runAsGroup": -2515253323988521837,
"runAsNonRoot": false,
"runAsUser": 7177254483209867257,
"runAsGroup": 7721939829013914482,
"runAsNonRoot": true,
"supplementalGroups": [
-6267717930337655515
-5080569150241191388
],
"fsGroup": -3072254610148392250,
"fsGroup": -6486306216295496187,
"sysctls": [
{
"name": "399",
"value": "400"
}
],
"fsGroupChangePolicy": "q櫞繡",
"fsGroupChangePolicy": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠",
"seccompProfile": {
"type": "翃ɾ氒ĺʈʫ羶",
"type": "崖S«V¯Á",
"localhostProfile": "401"
}
},
@ -1270,7 +1273,7 @@
"matchExpressions": [
{
"key": "405",
"operator": "t{Eɾ敹Ȯ-湷D",
"operator": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o",
"values": [
"406"
]
@ -1279,7 +1282,7 @@
"matchFields": [
{
"key": "407",
"operator": "ȿ醏g遧",
"operator": "旹翃ɾ氒ĺʈʫ",
"values": [
"408"
]
@ -1290,12 +1293,12 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -1649234654,
"weight": -855547676,
"preference": {
"matchExpressions": [
{
"key": "409",
"operator": "Ƌʙcx赮ǒđ\u003e*",
"operator": "F豎穜姰l咑耖p^鏋蛹Ƚȿ",
"values": [
"410"
]
@ -1304,7 +1307,7 @@
"matchFields": [
{
"key": "411",
"operator": "铳s44矕Ƈè*鑏=",
"operator": "ò",
"values": [
"412"
]
@ -1319,14 +1322,14 @@
{
"labelSelector": {
"matchLabels": {
"0-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cr/M7": "1-U_--56-.7D.3_KPg___KA-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L2"
"4_-y.8_38xm-.nx.sEK4.B.__6m": "J1-1.9_.-.Ms7_tP"
},
"matchExpressions": [
{
"key": "Cv2.5p_..Y-.wg_b",
"operator": "In",
"key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v",
"operator": "NotIn",
"values": [
"mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33"
"0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc"
]
}
]
@ -1337,12 +1340,12 @@
"topologyKey": "420",
"namespaceSelector": {
"matchLabels": {
"d-5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___Y": "7.tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gw_-z_659GE.l_.23-S"
"3QC1--L--v_Z--ZgC": "Q__-v_t_u_.__O"
},
"matchExpressions": [
{
"key": "e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5",
"operator": "DoesNotExist"
"key": "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a",
"operator": "Exists"
}
]
}
@ -1350,16 +1353,19 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -334387631,
"weight": 957174721,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A": "BM.6-.Y_72-_--p7"
"o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C"
},
"matchExpressions": [
{
"key": "gi--7-nt-23h-4z-21-sap--h--qh.l4-03a68u7-l---8x7-l--b-9-u--17---u7-gl7814ei-07shtq-p/4D-r.-B",
"operator": "DoesNotExist"
"key": "4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p",
"operator": "NotIn",
"values": [
"N7_B_r"
]
}
]
},
@ -1369,15 +1375,12 @@
"topologyKey": "434",
"namespaceSelector": {
"matchLabels": {
"11.q8-4-k-2-08vc--4-7hdume/7Q.-_t--O.3L.2": "7G79.3bU_._nV34G._--u.._.105-4_ed-f"
"O_._e_3_.4_W_-q": "Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr"
},
"matchExpressions": [
{
"key": "o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_g0",
"operator": "NotIn",
"values": [
"kn_9n.p.o"
]
"key": "XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T",
"operator": "Exists"
}
]
}
@ -1390,12 +1393,15 @@
{
"labelSelector": {
"matchLabels": {
"r1W7": "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zKp"
"ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q": "h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV"
},
"matchExpressions": [
{
"key": "t.7-1n13sx82-cx-428u2j--u/4.Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89z",
"operator": "Exists"
"key": "xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W",
"operator": "In",
"values": [
"U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx"
]
}
]
},
@ -1405,12 +1411,15 @@
"topologyKey": "448",
"namespaceSelector": {
"matchLabels": {
"61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo": "Mqp..__._-J_-fk3-_j.133eT_2_Y"
"2-_.4dwFbuvf": "5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J"
},
"matchExpressions": [
{
"key": "51-i-d-----9---063-qm-j-3wc89k-0-57z4063--4/rBQ.u",
"operator": "Exists"
"key": "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo",
"operator": "NotIn",
"values": [
"0--_qv4--_.6_N_9X-B.s8.B"
]
}
]
}
@ -1418,19 +1427,16 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -357359630,
"weight": -1832836223,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"z336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_.._._a-N": "X_-_._.3l-_86_u2-7_._qZ"
"BQ.9-_.m7-Q____vSW_4-__h": "w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj"
},
"matchExpressions": [
{
"key": "U__L.KH6K.RwsfI_j",
"operator": "In",
"values": [
""
]
"key": "dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A",
"operator": "Exists"
}
]
},
@ -1440,12 +1446,15 @@
"topologyKey": "462",
"namespaceSelector": {
"matchLabels": {
"6b77-f8--tf---7r88-1--p61d/9_Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gb": "Y"
"8.7-72qz.W.d.._1-3968": "G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO"
},
"matchExpressions": [
{
"key": "o_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O97",
"operator": "DoesNotExist"
"key": "006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W",
"operator": "NotIn",
"values": [
"z87_2---2.E.p9-.-3.__a.bl_--..-A"
]
}
]
}
@ -1458,9 +1467,10 @@
"tolerations": [
{
"key": "470",
"operator": "Ü",
"value": "471",
"effect": "n3'T砳1\\İ塄",
"tolerationSeconds": 7716735516543221297
"effect": "貛香\"砻B鷋RȽXv*!ɝ茀Ǩ",
"tolerationSeconds": 8594241010639209901
}
],
"hostAliases": [
@ -1472,7 +1482,7 @@
}
],
"priorityClassName": "474",
"priority": 2026789529,
"priority": 878153992,
"dnsConfig": {
"nameservers": [
"475"
@ -1489,51 +1499,48 @@
},
"readinessGates": [
{
"conditionType": "I芩嗎競ɵd魶暐f髓沨"
"conditionType": "=ȑ-A敲ʉ"
}
],
"runtimeClassName": "479",
"enableServiceLinks": true,
"preemptionPolicy": "",
"enableServiceLinks": false,
"preemptionPolicy": "梊蝴.Ĉ马āƭw鰕ǰ\"șa",
"overhead": {
"Ĵ诛ª韷v": "537"
"\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ": "283"
},
"topologySpreadConstraints": [
{
"maxSkew": -447517325,
"maxSkew": -702578810,
"topologyKey": "480",
"whenUnsatisfiable": "値å镮",
"whenUnsatisfiable": "Ž氮怉ƥ;\"薑Ȣ#闬輙怀¹bCũw",
"labelSelector": {
"matchLabels": {
"2tm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f56/v__-Zvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__g": "W84-M-_-U...s.K"
"N-_.F": "09z2"
},
"matchExpressions": [
{
"key": "P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h",
"operator": "NotIn",
"values": [
"m_-q9.N8._--M-0R.-I-_23L_J49t-X..j1Q1.A-N.--_63-N2"
]
"key": "z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0",
"operator": "DoesNotExist"
}
]
}
}
],
"setHostnameAsFQDN": true
"setHostnameAsFQDN": false
}
}
},
"status": {
"replicas": -1196967581,
"fullyLabeledReplicas": 1536133995,
"readyReplicas": -2018539527,
"availableReplicas": 655071461,
"observedGeneration": -7699725135993161935,
"replicas": 432535745,
"fullyLabeledReplicas": 2073220944,
"readyReplicas": -141868138,
"availableReplicas": -1324418171,
"observedGeneration": -5431516755862952643,
"conditions": [
{
"type": "š^劶",
"status": "ƕ蟶ŃēÖ釐駆Ŕƿe魛ĩ",
"lastTransitionTime": "2427-08-17T22:26:07Z",
"type": "ƻ舁Ȁ贠ȇö匉a揘O ",
"status": "楅©Ǫ壿/š^劶äɲ泒欞尟燬Ǻ媳ɦ",
"lastTransitionTime": "2169-06-15T23:50:17Z",
"reason": "487",
"message": "488"
}

View File

@ -67,32 +67,32 @@ spec:
selfLink: "25"
uid: '*齧獚敆Ȏțêɘ'
spec:
activeDeadlineSeconds: 6210194589539369395
activeDeadlineSeconds: -2391833818948531474
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "409"
operator: Ƌʙcx赮ǒđ>*
operator: F豎穜姰l咑耖p^鏋蛹Ƚȿ
values:
- "410"
matchFields:
- key: "411"
operator: 铳s44矕Ƈè*鑏=
operator: ò
values:
- "412"
weight: -1649234654
weight: -855547676
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "405"
operator: t{Eɾ敹Ȯ-湷D
operator: \Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o
values:
- "406"
matchFields:
- key: "407"
operator: ȿ醏g遧
operator: 旹翃ɾ氒ĺʈʫ
values:
- "408"
podAffinity:
@ -100,38 +100,37 @@ spec:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: gi--7-nt-23h-4z-21-sap--h--qh.l4-03a68u7-l---8x7-l--b-9-u--17---u7-gl7814ei-07shtq-p/4D-r.-B
operator: DoesNotExist
matchLabels:
? nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A
: BM.6-.Y_72-_--p7
namespaceSelector:
matchExpressions:
- key: o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_g0
- key: 4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p
operator: NotIn
values:
- kn_9n.p.o
- N7_B_r
matchLabels:
11.q8-4-k-2-08vc--4-7hdume/7Q.-_t--O.3L.2: 7G79.3bU_._nV34G._--u.._.105-4_ed-f
o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C
namespaceSelector:
matchExpressions:
- key: XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T
operator: Exists
matchLabels:
O_._e_3_.4_W_-q: Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr
namespaces:
- "433"
topologyKey: "434"
weight: -334387631
weight: 957174721
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: Cv2.5p_..Y-.wg_b
operator: In
- key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v
operator: NotIn
values:
- mD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33
- 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
matchLabels:
0-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---3a-cr/M7: 1-U_--56-.7D.3_KPg___KA-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L2
4_-y.8_38xm-.nx.sEK4.B.__6m: J1-1.9_.-.Ms7_tP
namespaceSelector:
matchExpressions:
- key: e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5
operator: DoesNotExist
- key: w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a
operator: Exists
matchLabels:
d-5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___Y: 7.tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gw_-z_659GE.l_.23-S
3QC1--L--v_Z--ZgC: Q__-v_t_u_.__O
namespaces:
- "419"
topologyKey: "420"
@ -140,39 +139,43 @@ spec:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: U__L.KH6K.RwsfI_j
operator: In
values:
- ""
- key: dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A
operator: Exists
matchLabels:
z336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_8_.._._a-N: X_-_._.3l-_86_u2-7_._qZ
BQ.9-_.m7-Q____vSW_4-__h: w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj
namespaceSelector:
matchExpressions:
- key: o_q-...Oai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O97
operator: DoesNotExist
- key: 006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W
operator: NotIn
values:
- z87_2---2.E.p9-.-3.__a.bl_--..-A
matchLabels:
6b77-f8--tf---7r88-1--p61d/9_Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gb: "Y"
8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO
namespaces:
- "461"
topologyKey: "462"
weight: -357359630
weight: -1832836223
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: t.7-1n13sx82-cx-428u2j--u/4.Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89z
operator: Exists
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W
operator: In
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
matchLabels:
r1W7: B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zKp
ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q: h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV
namespaceSelector:
matchExpressions:
- key: 51-i-d-----9---063-qm-j-3wc89k-0-57z4063--4/rBQ.u
operator: Exists
- key: 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo
operator: NotIn
values:
- 0--_qv4--_.6_N_9X-B.s8.B
matchLabels:
61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo: Mqp..__._-J_-fk3-_j.133eT_2_Y
2-_.4dwFbuvf: 5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J
namespaces:
- "447"
topologyKey: "448"
automountServiceAccountToken: false
automountServiceAccountToken: true
containers:
- args:
- "248"
@ -191,12 +194,12 @@ spec:
fieldPath: "258"
resourceFieldRef:
containerName: "259"
divisor: "142"
divisor: "800"
resource: "260"
secretKeyRef:
key: "264"
name: "263"
optional: false
optional: true
envFrom:
- configMapRef:
name: "253"
@ -204,22 +207,21 @@ spec:
prefix: "252"
secretRef:
name: "254"
optional: false
optional: true
image: "246"
imagePullPolicy: ×x锏ɟ4Ǒ
imagePullPolicy: '&皥贸碔lNKƙ順\E¦队偯'
lifecycle:
postStart:
exec:
command:
- "292"
- "291"
httpGet:
host: "294"
httpHeaders:
- name: "295"
value: "296"
path: "293"
port: -282193676
scheme: Ļǟi&
path: "292"
port: "293"
tcpSocket:
host: "298"
port: "297"
@ -234,120 +236,120 @@ spec:
value: "304"
path: "300"
port: "301"
scheme: 垾现葢ŵ橨
scheme: 跩aŕ翑
tcpSocket:
host: "305"
port: -1312425203
host: "306"
port: "305"
livenessProbe:
exec:
command:
- "271"
failureThreshold: -1538905728
failureThreshold: -979584143
httpGet:
host: "274"
host: "273"
httpHeaders:
- name: "275"
value: "276"
- name: "274"
value: "275"
path: "272"
port: "273"
scheme: Ů+朷Ǝ膯ljVX1虊
initialDelaySeconds: -1748648882
periodSeconds: 1381579966
successThreshold: -1418092595
port: 972978563
scheme: ȨŮ+朷Ǝ膯
initialDelaySeconds: -249989919
periodSeconds: -602419938
successThreshold: 1040396664
tcpSocket:
host: "277"
port: -979584143
terminationGracePeriodSeconds: -1867540518204155332
timeoutSeconds: -239843014
host: "276"
port: -1506633471
terminationGracePeriodSeconds: -7510389757339505131
timeoutSeconds: -171684192
name: "245"
ports:
- containerPort: -1962065705
- containerPort: -2717401
hostIP: "251"
hostPort: 1752155096
hostPort: -1905643191
name: "250"
protocol: ¿
protocol: ɳɷ9Ì
readinessProbe:
exec:
command:
- "278"
failureThreshold: 888935190
- "277"
failureThreshold: -940514142
httpGet:
host: "281"
host: "279"
httpHeaders:
- name: "282"
value: "283"
path: "279"
port: "280"
scheme: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
initialDelaySeconds: -244758593
periodSeconds: 104069700
successThreshold: -331594625
- name: "280"
value: "281"
path: "278"
port: -1538905728
scheme: ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢xɮ
initialDelaySeconds: -1817291584
periodSeconds: 582041100
successThreshold: 509188266
tcpSocket:
host: "284"
port: 1574967021
terminationGracePeriodSeconds: 7193904584276385338
timeoutSeconds: 591440053
host: "283"
port: "282"
terminationGracePeriodSeconds: 6764431850409848860
timeoutSeconds: 1224868165
resources:
limits:
ǩ: "957"
pw: "934"
requests:
Ɔȓ蹣ɐǛv+8Ƥ熪: "951"
輓Ɔȓ蹣ɐǛv+8: "375"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
- 徥淳4揻-$ɽ丟
drop:
- ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:'
- ""
privileged: false
procMount: ɥ嵐sC8?Ǻ鱎ƙ;Nŕ璻
readOnlyRootFilesystem: true
runAsGroup: -499179336506637450
runAsNonRoot: true
runAsUser: 5620818514944490121
procMount: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
readOnlyRootFilesystem: false
runAsGroup: 8194791334069427324
runAsNonRoot: false
runAsUser: -816831389119959689
seLinuxOptions:
level: "310"
role: "308"
type: "309"
user: "307"
level: "311"
role: "309"
type: "310"
user: "308"
seccompProfile:
localhostProfile: "314"
type: ih亏yƕ丆録²
localhostProfile: "315"
type: ȱğ_<ǬëJ橈'琕鶫:顇ə
windowsOptions:
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
runAsUserName: "313"
gmsaCredentialSpec: "313"
gmsaCredentialSpecName: "312"
hostProcess: false
runAsUserName: "314"
startupProbe:
exec:
command:
- "285"
failureThreshold: 617318981
- "284"
failureThreshold: 133009177
httpGet:
host: "288"
host: "286"
httpHeaders:
- name: "289"
value: "290"
path: "286"
port: "287"
scheme: î.Ȏ蝪ʜ5遰=
initialDelaySeconds: -1462219068
periodSeconds: 1714588921
successThreshold: -1246371817
- name: "287"
value: "288"
path: "285"
port: -331594625
scheme: lu|榝$î.
initialDelaySeconds: -1505188927
periodSeconds: 2083727489
successThreshold: 486365838
tcpSocket:
host: "291"
port: 834105836
terminationGracePeriodSeconds: 1856677271350902065
timeoutSeconds: -370386363
stdin: true
terminationMessagePath: "306"
terminationMessagePolicy: ;跣Hǝcw媀瓄&
host: "290"
port: "289"
terminationGracePeriodSeconds: -6177393256425700216
timeoutSeconds: -2133054549
stdinOnce: true
terminationMessagePath: "307"
tty: true
volumeDevices:
- devicePath: "270"
name: "269"
volumeMounts:
- mountPath: "266"
mountPropagation: 啛更
mountPropagation: 颐o
name: "265"
subPath: "267"
subPathExpr: "268"
@ -360,58 +362,58 @@ spec:
value: "478"
searches:
- "476"
dnsPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
enableServiceLinks: true
dnsPolicy: Ƒ[澔
enableServiceLinks: false
ephemeralContainers:
- args:
- "318"
- "319"
command:
- "317"
- "318"
env:
- name: "325"
value: "326"
- name: "326"
value: "327"
valueFrom:
configMapKeyRef:
key: "332"
name: "331"
optional: true
key: "333"
name: "332"
optional: false
fieldRef:
apiVersion: "327"
fieldPath: "328"
apiVersion: "328"
fieldPath: "329"
resourceFieldRef:
containerName: "329"
divisor: "149"
resource: "330"
containerName: "330"
divisor: "832"
resource: "331"
secretKeyRef:
key: "334"
name: "333"
optional: true
key: "335"
name: "334"
optional: false
envFrom:
- configMapRef:
name: "323"
optional: true
prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: I滞廬耐鷞焬CQm坊柩劄奼[
optional: false
prefix: "323"
secretRef:
name: "325"
optional: false
image: "317"
imagePullPolicy: 灲閈誹ʅ蕉ɼ搳
lifecycle:
postStart:
exec:
command:
- "363"
httpGet:
host: "366"
host: "365"
httpHeaders:
- name: "367"
value: "368"
- name: "366"
value: "367"
path: "364"
port: "365"
scheme: 賞ǧĒzŔ瘍N
port: -869776221
scheme: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
tcpSocket:
host: "369"
port: -531787516
port: "368"
preStop:
exec:
command:
@ -422,78 +424,78 @@ spec:
- name: "373"
value: "374"
path: "371"
port: -824445204
scheme: 泙若`l}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ
port: -1917609921
scheme:
tcpSocket:
host: "376"
port: "375"
livenessProbe:
exec:
command:
- "341"
failureThreshold: -302933400
- "342"
failureThreshold: -1896415283
httpGet:
host: "344"
httpHeaders:
- name: "345"
value: "346"
path: "342"
port: "343"
scheme: ' 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎'
initialDelaySeconds: -200074798
periodSeconds: -1838917931
successThreshold: -1563928252
path: "343"
port: -1700828941
scheme: 諔迮ƙ
initialDelaySeconds: -969533986
periodSeconds: -488127393
successThreshold: 1137109081
tcpSocket:
host: "348"
port: "347"
terminationGracePeriodSeconds: 7094149050088640176
timeoutSeconds: 556036216
name: "315"
terminationGracePeriodSeconds: 6618112330449141397
timeoutSeconds: 299741709
name: "316"
ports:
- containerPort: -1117254382
hostIP: "321"
hostPort: 507384491
name: "320"
protocol: 趐囨鏻砅邻爥蹔ŧOǨ
- containerPort: 865289071
hostIP: "322"
hostPort: 1504385614
name: "321"
protocol: iɥ嵐sC8
readinessProbe:
exec:
command:
- "349"
failureThreshold: 1486914884
failureThreshold: 2073046460
httpGet:
host: "351"
host: "352"
httpHeaders:
- name: "352"
value: "353"
- name: "353"
value: "354"
path: "350"
port: -832681001
scheme: h趭
initialDelaySeconds: -1969828011
periodSeconds: -748525373
successThreshold: 805162379
port: "351"
scheme: ɱďW賁Ě
initialDelaySeconds: -674445196
periodSeconds: -543432015
successThreshold: -515370067
tcpSocket:
host: "355"
port: "354"
terminationGracePeriodSeconds: -2753079965660681160
timeoutSeconds: -1186720090
port: 1436222565
terminationGracePeriodSeconds: 7270263763744228913
timeoutSeconds: 1239158543
resources:
limits:
幩šeSvEȤƏ埮pɵ: "426"
h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻: "127"
requests:
Ȗ|ʐşƧ諔迮ƙIJ嘢4: "422"
C"6x$1s: "463"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- ĝ®EĨǔvÄÚ×p鬷
- 箨ʨIk(dŊiɢ
drop:
- 罂o3ǰ廋i乳'ȘUɻ;襕ċ桉桃
- Į蛋I滞廬耐鷞焬CQ
privileged: true
procMount: -紑浘牬釼aTGÒ鵌
procMount: EĨǔvÄÚ×p
readOnlyRootFilesystem: false
runAsGroup: -1207159809527615562
runAsNonRoot: true
runAsUser: 2803095162614904173
runAsGroup: -583355774536171734
runAsNonRoot: false
runAsUser: -506227444233847191
seLinuxOptions:
level: "381"
role: "379"
@ -501,16 +503,17 @@ spec:
user: "378"
seccompProfile:
localhostProfile: "385"
type: 3Nh×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶
type: m罂o3ǰ廋i乳'ȘUɻ
windowsOptions:
gmsaCredentialSpec: "383"
gmsaCredentialSpecName: "382"
hostProcess: false
runAsUserName: "384"
startupProbe:
exec:
command:
- "356"
failureThreshold: 1223564938
failureThreshold: 252309773
httpGet:
host: "359"
httpHeaders:
@ -518,34 +521,36 @@ spec:
value: "361"
path: "357"
port: "358"
scheme: 壶ƵfȽÃ茓
initialDelaySeconds: -647531549
periodSeconds: 1737172479
successThreshold: -767058113
scheme: XW疪鑳w妕眵
initialDelaySeconds: -832681001
periodSeconds: -1337533938
successThreshold: 1473765654
tcpSocket:
host: "362"
port: 1359309446
terminationGracePeriodSeconds: 5333033627167868167
timeoutSeconds: -733444015
port: 455919108
terminationGracePeriodSeconds: -8460346884535567850
timeoutSeconds: 1616390418
stdin: true
stdinOnce: true
targetContainerName: "386"
terminationMessagePath: "377"
terminationMessagePolicy: Ƽ¨Ix糂腂ǂǚŜEu
terminationMessagePolicy: ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[
tty: true
volumeDevices:
- devicePath: "340"
name: "339"
- devicePath: "341"
name: "340"
volumeMounts:
- mountPath: "336"
mountPropagation: ""
name: "335"
subPath: "337"
subPathExpr: "338"
workingDir: "319"
- mountPath: "337"
mountPropagation: P­蜷ɔ幩šeSvEȤƏ埮pɵ{W
name: "336"
subPath: "338"
subPathExpr: "339"
workingDir: "320"
hostAliases:
- hostnames:
- "473"
ip: "472"
hostNetwork: true
hostPID: true
hostname: "403"
imagePullSecrets:
- name: "402"
@ -669,18 +674,18 @@ spec:
requests:
軶ǃ*ʙ嫙&蒒5靇: "813"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- 枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F
drop:
- 剂讼ɓȌʟni酛3Ɓ
privileged: false
procMount: 8鸖ɱJȉ罴ņ螡źȰ?$矡ȶ网棊ʢ
procMount: 鸖ɱJȉ罴ņ螡źȰ
readOnlyRootFilesystem: true
runAsGroup: -636584014972667630
runAsNonRoot: false
runAsUser: -2000070193364862971
runAsGroup: 708875421817317137
runAsNonRoot: true
runAsUser: 4530581071337252406
seLinuxOptions:
level: "240"
role: "238"
@ -688,10 +693,11 @@ spec:
user: "237"
seccompProfile:
localhostProfile: "244"
type: w
type: $矡ȶ
windowsOptions:
gmsaCredentialSpec: "242"
gmsaCredentialSpecName: "241"
hostProcess: false
runAsUserName: "243"
startupProbe:
exec:
@ -714,7 +720,6 @@ spec:
port: "219"
terminationGracePeriodSeconds: -6826008110504741173
timeoutSeconds: 486195690
stdin: true
stdinOnce: true
terminationMessagePath: "236"
terminationMessagePolicy: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3
@ -733,21 +738,21 @@ spec:
nodeSelector:
"387": "388"
overhead:
Ĵ诛ª韷v: "537"
preemptionPolicy: ""
priority: 2026789529
<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283"
preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa
priority: 878153992
priorityClassName: "474"
readinessGates:
- conditionType: I芩嗎競ɵd魶暐f髓沨
restartPolicy: ȟP
- conditionType: =ȑ-A敲ʉ
restartPolicy: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑
runtimeClassName: "479"
schedulerName: "469"
securityContext:
fsGroup: -3072254610148392250
fsGroupChangePolicy: q櫞繡
runAsGroup: -2515253323988521837
runAsNonRoot: false
runAsUser: 5115783808026178112
fsGroup: -6486306216295496187
fsGroupChangePolicy: ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠
runAsGroup: 7721939829013914482
runAsNonRoot: true
runAsUser: 7177254483209867257
seLinuxOptions:
level: "395"
role: "393"
@ -755,39 +760,39 @@ spec:
user: "392"
seccompProfile:
localhostProfile: "401"
type: 翃ɾ氒ĺʈʫ羶
type: 崖S«V¯Á
supplementalGroups:
- -6267717930337655515
- -5080569150241191388
sysctls:
- name: "399"
value: "400"
windowsOptions:
gmsaCredentialSpec: "397"
gmsaCredentialSpecName: "396"
hostProcess: false
runAsUserName: "398"
serviceAccount: "390"
serviceAccountName: "389"
setHostnameAsFQDN: true
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "404"
terminationGracePeriodSeconds: -7559660744894799169
terminationGracePeriodSeconds: -3877666641335425693
tolerations:
- effect: n3'T砳1\İ塄
- effect: 貛香"砻B鷋RȽXv*!ɝ茀Ǩ
key: "470"
tolerationSeconds: 7716735516543221297
operator: Ü
tolerationSeconds: 8594241010639209901
value: "471"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h
operator: NotIn
values:
- m_-q9.N8._--M-0R.-I-_23L_J49t-X..j1Q1.A-N.--_63-N2
- key: z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0
operator: DoesNotExist
matchLabels:
2tm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f56/v__-Zvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__g: W84-M-_-U...s.K
maxSkew: -447517325
N-_.F: 09z2
maxSkew: -702578810
topologyKey: "480"
whenUnsatisfiable: 値å镮
whenUnsatisfiable: Ž氮怉ƥ;"薑Ȣ#闬輙怀¹bCũw
volumes:
- awsElasticBlockStore:
fsType: "45"
@ -1040,14 +1045,14 @@ spec:
storagePolicyName: "101"
volumePath: "99"
status:
availableReplicas: 655071461
availableReplicas: -1324418171
conditions:
- lastTransitionTime: "2427-08-17T22:26:07Z"
- lastTransitionTime: "2169-06-15T23:50:17Z"
message: "488"
reason: "487"
status: ƕ蟶ŃēÖ釐駆Ŕƿe魛ĩ
type: š^劶
fullyLabeledReplicas: 1536133995
observedGeneration: -7699725135993161935
readyReplicas: -2018539527
replicas: -1196967581
status: 楅©Ǫ壿/š^劶äɲ泒欞尟燬Ǻ媳ɦ
type: ƻ舁Ȁ贠ȇö匉a揘O 
fullyLabeledReplicas: 2073220944
observedGeneration: -5431516755862952643
readyReplicas: -141868138
replicas: 432535745

View File

@ -688,14 +688,15 @@
"windowsOptions": {
"gmsaCredentialSpecName": "246",
"gmsaCredentialSpec": "247",
"runAsUserName": "248"
"runAsUserName": "248",
"hostProcess": true
},
"runAsUser": 9148233193771851687,
"runAsGroup": 6901713258562004024,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"runAsUser": -7299434051955863644,
"runAsGroup": 4041264710404335706,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"seccompProfile": {
"type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4",
"localhostProfile": "249"
@ -944,19 +945,22 @@
"windowsOptions": {
"gmsaCredentialSpecName": "317",
"gmsaCredentialSpec": "318",
"runAsUserName": "319"
"runAsUserName": "319",
"hostProcess": true
},
"runAsUser": 4369716065827112267,
"runAsGroup": -6657305077321335240,
"runAsUser": -1286199491017539507,
"runAsGroup": -6292316479661489180,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "ʙcx",
"procMount": "cx赮ǒđ\u003e*劶?j",
"seccompProfile": {
"type": "ǒđ\u003e*劶?jĎĭ",
"type": "ĭ¥#ƱÁR",
"localhostProfile": "320"
}
}
},
"stdin": true,
"tty": true
}
],
"ephemeralContainers": [
@ -973,9 +977,9 @@
"ports": [
{
"name": "326",
"hostPort": 1805682547,
"containerPort": -651405950,
"protocol": "淹揀.e鍃G昧牱fsǕT衩kƒK07",
"hostPort": 2032588794,
"containerPort": -1371690155,
"protocol": "G昧牱fsǕT衩kƒK07曳wœj堑",
"hostIP": "327"
}
],
@ -988,7 +992,7 @@
},
"secretRef": {
"name": "330",
"optional": true
"optional": false
}
}
],
@ -1004,12 +1008,12 @@
"resourceFieldRef": {
"containerName": "335",
"resource": "336",
"divisor": "684"
"divisor": "473"
},
"configMapKeyRef": {
"name": "337",
"key": "338",
"optional": true
"optional": false
},
"secretKeyRef": {
"name": "339",
@ -1021,19 +1025,18 @@
],
"resources": {
"limits": {
"蠨磼O_h盌3+Œ9两@8Byß": "111"
"盌3+Œ": "752"
},
"requests": {
"ɃŒ": "451"
")Zq=歍þ": "759"
}
},
"volumeMounts": [
{
"name": "341",
"readOnly": true,
"mountPath": "342",
"subPath": "343",
"mountPropagation": "葰賦",
"mountPropagation": "讅缔m葰賦迾娙ƴ4虵p",
"subPathExpr": "344"
}
],
@ -1051,9 +1054,9 @@
},
"httpGet": {
"path": "348",
"port": -121675052,
"port": 1034835933,
"host": "349",
"scheme": "W#ļǹʅŚO虀^",
"scheme": "O虀^背遻堣灭ƴɦ燻踸陴",
"httpHeaders": [
{
"name": "350",
@ -1062,27 +1065,27 @@
]
},
"tcpSocket": {
"port": "352",
"host": "353"
"port": -1744546613,
"host": "352"
},
"initialDelaySeconds": -1959891996,
"timeoutSeconds": -1442230895,
"periodSeconds": 1475033091,
"successThreshold": 1782790310,
"failureThreshold": 1587036035,
"terminationGracePeriodSeconds": 7560036535013464461
"initialDelaySeconds": 650448405,
"timeoutSeconds": 1943254244,
"periodSeconds": -168773629,
"successThreshold": 2068592383,
"failureThreshold": 1566765016,
"terminationGracePeriodSeconds": -1112599546012453731
},
"readinessProbe": {
"exec": {
"command": [
"354"
"353"
]
},
"httpGet": {
"path": "355",
"port": -1744546613,
"path": "354",
"port": "355",
"host": "356",
"scheme": "ʓɻŊ",
"scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
"httpHeaders": [
{
"name": "357",
@ -1091,37 +1094,8 @@
]
},
"tcpSocket": {
"port": -259047269,
"host": "359"
},
"initialDelaySeconds": 1586122127,
"timeoutSeconds": -1813456856,
"periodSeconds": 781203691,
"successThreshold": -216440055,
"failureThreshold": 408029351,
"terminationGracePeriodSeconds": 5450105809027610853
},
"startupProbe": {
"exec": {
"command": [
"360"
]
},
"httpGet": {
"path": "361",
"port": -5241849,
"host": "362",
"scheme": "}颉hȱɷȰW",
"httpHeaders": [
{
"name": "363",
"value": "364"
}
]
},
"tcpSocket": {
"port": "365",
"host": "366"
"port": "359",
"host": "360"
},
"initialDelaySeconds": 636493142,
"timeoutSeconds": -192358697,
@ -1130,146 +1104,176 @@
"failureThreshold": 902204699,
"terminationGracePeriodSeconds": 9196919020604133323
},
"startupProbe": {
"exec": {
"command": [
"361"
]
},
"httpGet": {
"path": "362",
"port": "363",
"host": "364",
"scheme": "y#t(ȗŜŲ\u0026",
"httpHeaders": [
{
"name": "365",
"value": "366"
}
]
},
"tcpSocket": {
"port": 1387858949,
"host": "367"
},
"initialDelaySeconds": 156368232,
"timeoutSeconds": -815239246,
"periodSeconds": 44612600,
"successThreshold": -688929182,
"failureThreshold": -1222486879,
"terminationGracePeriodSeconds": 6543873941346781273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
"367"
"368"
]
},
"httpGet": {
"path": "368",
"port": -1460652193,
"host": "369",
"scheme": "8ï驿笈¯rƈa餖Ľƛ淴ɑ?",
"path": "369",
"port": 1176168596,
"host": "370",
"scheme": "轪d覉;Ĕ",
"httpHeaders": [
{
"name": "370",
"value": "371"
"name": "371",
"value": "372"
}
]
},
"tcpSocket": {
"port": "372",
"host": "373"
"port": "373",
"host": "374"
}
},
"preStop": {
"exec": {
"command": [
"374"
"375"
]
},
"httpGet": {
"path": "375",
"port": 71524977,
"host": "376",
"scheme": "鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷",
"path": "376",
"port": "377",
"host": "378",
"scheme": "ʦŊĊ娮",
"httpHeaders": [
{
"name": "377",
"value": "378"
"name": "379",
"value": "380"
}
]
},
"tcpSocket": {
"port": -565041796,
"host": "379"
"port": "381",
"host": "382"
}
}
},
"terminationMessagePath": "380",
"terminationMessagePolicy": "Ƭ婦d",
"imagePullPolicy": "ɧeʫį淓¯",
"terminationMessagePath": "383",
"terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ",
"imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj",
"securityContext": {
"capabilities": {
"add": [
"ƛ忀z委\u003e,趐V曡88 u怞荊ù"
"蓋Cȗä2 ɲ±m嵘厶sȰÖ"
],
"drop": [
"8緔Tj§E蓋Cȗä2 ɲ±"
"ÆɰŞ襵"
]
},
"privileged": true,
"seLinuxOptions": {
"user": "381",
"role": "382",
"type": "383",
"level": "384"
"user": "384",
"role": "385",
"type": "386",
"level": "387"
},
"windowsOptions": {
"gmsaCredentialSpecName": "385",
"gmsaCredentialSpec": "386",
"runAsUserName": "387"
"gmsaCredentialSpecName": "388",
"gmsaCredentialSpec": "389",
"runAsUserName": "390",
"hostProcess": false
},
"runAsUser": -4564863616644509171,
"runAsGroup": -7297536356638221066,
"runAsUser": -5519662252699559890,
"runAsGroup": -1624551961163368198,
"runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
"procMount": "Ş襵樞úʥ銀",
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
"procMount": "阫Ƈʥ椹ý",
"seccompProfile": {
"type": "ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧",
"localhostProfile": "388"
"type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷",
"localhostProfile": "391"
}
},
"stdin": true,
"tty": true,
"targetContainerName": "389"
"stdinOnce": true,
"targetContainerName": "392"
}
],
"restartPolicy": "鹚蝉茲ʛ饊",
"terminationGracePeriodSeconds": 1736985756995615785,
"activeDeadlineSeconds": -1284119655860768065,
"dnsPolicy": "錏嬮#ʐ",
"restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI",
"terminationGracePeriodSeconds": 3296766428578159624,
"activeDeadlineSeconds": -8925090445844634303,
"dnsPolicy": "q沷¾!",
"nodeSelector": {
"390": "391"
"393": "394"
},
"serviceAccountName": "392",
"serviceAccount": "393",
"serviceAccountName": "395",
"serviceAccount": "396",
"automountServiceAccountToken": true,
"nodeName": "394",
"hostPID": true,
"nodeName": "397",
"hostIPC": true,
"shareProcessNamespace": false,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "395",
"role": "396",
"type": "397",
"level": "398"
"user": "398",
"role": "399",
"type": "400",
"level": "401"
},
"windowsOptions": {
"gmsaCredentialSpecName": "399",
"gmsaCredentialSpec": "400",
"runAsUserName": "401"
"gmsaCredentialSpecName": "402",
"gmsaCredentialSpec": "403",
"runAsUserName": "404",
"hostProcess": true
},
"runAsUser": -4904722847506013622,
"runAsGroup": 6465579957265382985,
"runAsUser": -3496040522639830925,
"runAsGroup": 2960114664726223450,
"runAsNonRoot": false,
"supplementalGroups": [
-981432507446869083
2402603282459663167
],
"fsGroup": -1867959832193971598,
"fsGroup": 3564097949592109139,
"sysctls": [
{
"name": "402",
"value": "403"
"name": "405",
"value": "406"
}
],
"fsGroupChangePolicy": "ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!",
"fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6",
"seccompProfile": {
"type": "`翾'ųŎ群E牬庘颮6(|ǖû",
"localhostProfile": "404"
"type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ",
"localhostProfile": "407"
}
},
"imagePullSecrets": [
{
"name": "405"
"name": "408"
}
],
"hostname": "406",
"subdomain": "407",
"hostname": "409",
"subdomain": "410",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -1277,19 +1281,19 @@
{
"matchExpressions": [
{
"key": "408",
"operator": "UǷ坒",
"key": "411",
"operator": "Üɉ愂,wa纝佯fɞ",
"values": [
"409"
"412"
]
}
],
"matchFields": [
{
"key": "410",
"operator": "",
"key": "413",
"operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;",
"values": [
"411"
"414"
]
}
]
@ -1298,23 +1302,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -1280563546,
"weight": 1690937616,
"preference": {
"matchExpressions": [
{
"key": "412",
"operator": "Mɮ6)",
"key": "415",
"operator": "襉{遠",
"values": [
"413"
"416"
]
}
],
"matchFields": [
{
"key": "414",
"operator": "杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾",
"key": "417",
"operator": "诰ðÈ娒Ġ滔xvŗÑ\"",
"values": [
"415"
"418"
]
}
]
@ -1327,30 +1331,27 @@
{
"labelSelector": {
"matchLabels": {
"H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1"
"lx..w": "t-_.5.40w"
},
"matchExpressions": [
{
"key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g",
"operator": "NotIn",
"values": [
"VT3sn-0_.i__a.O2G_J"
]
"key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0",
"operator": "DoesNotExist"
}
]
},
"namespaces": [
"422"
"425"
],
"topologyKey": "423",
"topologyKey": "426",
"namespaceSelector": {
"matchLabels": {
"410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g": "3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w"
"8V": "3sn-03"
},
"matchExpressions": [
{
"key": "r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT",
"operator": "DoesNotExist"
"key": "p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3",
"operator": "Exists"
}
]
}
@ -1358,33 +1359,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": -2118597352,
"weight": -947725955,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt": "CRT.0z-oe.G79.3bU_._nV34G._--u..9"
"E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e"
},
"matchExpressions": [
{
"key": "n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9",
"operator": "NotIn",
"key": "3--_9QW2JkU27_.-4T-I.-..K.2",
"operator": "In",
"values": [
"f8k"
"6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8"
]
}
]
},
"namespaces": [
"436"
"439"
],
"topologyKey": "437",
"topologyKey": "440",
"namespaceSelector": {
"matchLabels": {
"s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp": "5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7"
"7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz"
},
"matchExpressions": [
{
"key": "27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y",
"key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6",
"operator": "DoesNotExist"
}
]
@ -1398,29 +1399,26 @@
{
"labelSelector": {
"matchLabels": {
"Y3o_V-w._-0d__7.81_-._-8": "9._._a-.N.__-_._.3l-_86u"
"uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z": ""
},
"matchExpressions": [
{
"key": "c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs",
"operator": "NotIn",
"values": [
"B.3R6-.7Bf8GA--__A7r.8U.V_p6c"
]
"key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1",
"operator": "Exists"
}
]
},
"namespaces": [
"450"
"453"
],
"topologyKey": "451",
"topologyKey": "454",
"namespaceSelector": {
"matchLabels": {
"x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51": "m06jVZu"
"d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9": "Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z"
},
"matchExpressions": [
{
"key": "N-._M5..-N_H_55..--E3_2D-1DW_o",
"key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT",
"operator": "Exists"
}
]
@ -1429,33 +1427,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
"weight": 1943011795,
"weight": 1819321475,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
"j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz": "3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v"
"i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I": "i.U.-7"
},
"matchExpressions": [
{
"key": "x3___-..f5-6x-_-o_6O_If-5_-_U",
"operator": "DoesNotExist"
"key": "62o787-7lk2/L.--4P--_q-.9",
"operator": "Exists"
}
]
},
"namespaces": [
"464"
"467"
],
"topologyKey": "465",
"topologyKey": "468",
"namespaceSelector": {
"matchLabels": {
"P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h": "4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP"
"j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N": "U_.-_-I-P._..leR--e"
},
"matchExpressions": [
{
"key": "aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7",
"operator": "NotIn",
"key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8",
"operator": "In",
"values": [
"9-.66hcB.rTt7bm9I.-..q-n"
"x3___-..f5-6x-_-o_6O_If-5_-_.F"
]
}
]
@ -1465,64 +1463,67 @@
]
}
},
"schedulerName": "472",
"schedulerName": "475",
"tolerations": [
{
"key": "473",
"operator": "杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]",
"value": "474",
"effect": "ɮ-nʣž吞Ƞ唄®窂爪",
"tolerationSeconds": -5154627301352060136
"key": "476",
"operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
"value": "477",
"effect": "慰x:",
"tolerationSeconds": 3362400521064014157
}
],
"hostAliases": [
{
"ip": "475",
"ip": "478",
"hostnames": [
"476"
"479"
]
}
],
"priorityClassName": "477",
"priority": -860768401,
"priorityClassName": "480",
"priority": 743241089,
"dnsConfig": {
"nameservers": [
"478"
"481"
],
"searches": [
"479"
"482"
],
"options": [
{
"name": "480",
"value": "481"
"name": "483",
"value": "484"
}
]
},
"readinessGates": [
{
"conditionType": "@.ȇʟ"
"conditionType": "0yVA嬂刲;牆詒ĸąs"
}
],
"runtimeClassName": "482",
"runtimeClassName": "485",
"enableServiceLinks": false,
"preemptionPolicy": "",
"preemptionPolicy": "Iƭij韺ʧ\u003e",
"overhead": {
"": "359"
"D傕Ɠ栊闔虝巒瀦ŕ": "124"
},
"topologySpreadConstraints": [
{
"maxSkew": -2013945465,
"topologyKey": "483",
"whenUnsatisfiable": "½ǩ ",
"maxSkew": -174245111,
"topologyKey": "486",
"whenUnsatisfiable": "",
"labelSelector": {
"matchLabels": {
"9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG": "4n"
"7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
},
"matchExpressions": [
{
"key": "6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q",
"operator": "Exists"
"key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
"operator": "In",
"values": [
"zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
]
}
]
}
@ -1532,33 +1533,33 @@
}
},
"updateStrategy": {
"type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ",
"type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
"minReadySeconds": 1467929320,
"templateGeneration": 6217170132371410053,
"revisionHistoryLimit": 2090664533
"minReadySeconds": 1559072561,
"templateGeneration": 5029735218517286947,
"revisionHistoryLimit": -69450448
},
"status": {
"currentNumberScheduled": -1371816595,
"numberMisscheduled": 1219820375,
"desiredNumberScheduled": -788475912,
"numberReady": 415140088,
"observedGeneration": 8590184840880420513,
"updatedNumberScheduled": 16994744,
"numberAvailable": 340429479,
"numberUnavailable": -1024715512,
"collisionCount": 380871347,
"currentNumberScheduled": -212409426,
"numberMisscheduled": 17761427,
"desiredNumberScheduled": 1329525670,
"numberReady": -1169406076,
"observedGeneration": -660751236671399271,
"updatedNumberScheduled": 171558604,
"numberAvailable": -161888815,
"numberUnavailable": 1676195855,
"collisionCount": -286154190,
"conditions": [
{
"type": "D齆O#ȞM\u003c²彾Ǟʈɐ碓yƗÄ.",
"status": "Ç[輚趞ț@郺丮嘱uȒ",
"lastTransitionTime": "2688-06-15T12:51:56Z",
"reason": "490",
"message": "491"
"type": "鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹",
"status": "De½t;Ä",
"lastTransitionTime": "2194-10-19T16:17:18Z",
"reason": "493",
"message": "494"
}
]
}

View File

@ -31,8 +31,8 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1467929320
revisionHistoryLimit: 2090664533
minReadySeconds: 1559072561
revisionHistoryLimit: -69450448
selector:
matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@ -73,112 +73,108 @@ spec:
selfLink: "29"
uid: TʡȂŏ{sǡƟ
spec:
activeDeadlineSeconds: -1284119655860768065
activeDeadlineSeconds: -8925090445844634303
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "412"
operator: Mɮ6)
- key: "415"
operator: 襉{遠
values:
- "413"
- "416"
matchFields:
- key: "414"
operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾
- key: "417"
operator: 诰ðÈ娒Ġ滔xvŗÑ"
values:
- "415"
weight: -1280563546
- "418"
weight: 1690937616
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "408"
operator: UǷ坒
- key: "411"
operator: Üɉ愂,wa纝佯fɞ
values:
- "409"
- "412"
matchFields:
- key: "410"
operator: ""
- key: "413"
operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣;
values:
- "411"
- "414"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9
operator: NotIn
- key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: In
values:
- f8k
- 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels:
il67-9a-trt-03-7z2zy0e428-4-k-2-08vc6/2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.Pt: CRT.0z-oe.G79.3bU_._nV34G._--u..9
E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e
namespaceSelector:
matchExpressions:
- key: 27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y
- key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6
operator: DoesNotExist
matchLabels:
s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp: 5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7
7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz
namespaces:
- "436"
topologyKey: "437"
weight: -2118597352
- "439"
topologyKey: "440"
weight: -947725955
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g
operator: NotIn
values:
- VT3sn-0_.i__a.O2G_J
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaceSelector:
matchExpressions:
- key: r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT
- key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0
operator: DoesNotExist
matchLabels:
410-k-r---3g7nz4-------385h---0-un.i---rgvf3q-z-5z80n--t5p/g: 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
lx..w: t-_.5.40w
namespaceSelector:
matchExpressions:
- key: p9-4-d2-22--i--40wv--in-870w--it6k47-y/003.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O3
operator: Exists
matchLabels:
8V: 3sn-03
namespaces:
- "422"
topologyKey: "423"
- "425"
topologyKey: "426"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: x3___-..f5-6x-_-o_6O_If-5_-_U
operator: DoesNotExist
- key: 62o787-7lk2/L.--4P--_q-.9
operator: Exists
matchLabels:
j--2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...98m.p-kq.ByM1_..Hz: 3j_.r3--mT8vuo..--e_.3V.Zu.f.-1v
i60a--z.u-5kvp-----887j72qz6-7d84-1f396h82----23-6b77-f4/M--c.0Q--2qh.Eb_I: i.U.-7
namespaceSelector:
matchExpressions:
- key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7
operator: NotIn
- key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8
operator: In
values:
- 9-.66hcB.rTt7bm9I.-..q-n
- x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels:
P_03_6.K8l.YlG0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..h: 4-Bb1.R_.225.5D1.--a8_p-s.-_DM__28W-_-.0HfR-_f-GP
j21---__y.9O.L-.m.3--.4_-8U.2617.W74-R_Z_Tz.a3_HWo4N: U_.-_-I-P._..leR--e
namespaces:
- "464"
topologyKey: "465"
weight: 1943011795
- "467"
topologyKey: "468"
weight: 1819321475
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs
operator: NotIn
values:
- B.3R6-.7Bf8GA--__A7r.8U.V_p6c
matchLabels:
Y3o_V-w._-0d__7.81_-._-8: 9._._a-.N.__-_._.3l-_86u
namespaceSelector:
matchExpressions:
- key: N-._M5..-N_H_55..--E3_2D-1DW_o
- key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1
operator: Exists
matchLabels:
x4P--_q-...Oai.D7-_9..8-8yw..__Yb_51: m06jVZu
uv-f55-2k2-e-443m678-2v89-zk873--1n13sx82-cx-428u2j--3u-777.6-b-b-8/u...WE.-_tdt_-Z0_TM_p6lM.z: ""
namespaceSelector:
matchExpressions:
- key: 5__-_._.3l-_86_u2-7_._qN__A_f_-BT
operator: Exists
matchLabels:
d--Y-_l-v0-1V-N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-1b.9: Y0-_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__7.81_-._-_Z
namespaces:
- "450"
topologyKey: "451"
- "453"
topologyKey: "454"
automountServiceAccountToken: true
containers:
- args:
@ -307,11 +303,11 @@ spec:
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
procMount: cx赮ǒđ>*劶?j
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
runAsGroup: -6292316479661489180
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: -1286199491017539507
seLinuxOptions:
level: "316"
role: "314"
@ -319,10 +315,11 @@ spec:
user: "313"
seccompProfile:
localhostProfile: "320"
type: ǒđ>*劶?jĎĭ
type: ĭ¥#ƱÁR
windowsOptions:
gmsaCredentialSpec: "318"
gmsaCredentialSpecName: "317"
hostProcess: true
runAsUserName: "319"
startupProbe:
exec:
@ -345,8 +342,10 @@ spec:
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
stdin: true
terminationMessagePath: "312"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
tty: true
volumeDevices:
- devicePath: "275"
name: "274"
@ -360,13 +359,13 @@ spec:
workingDir: "254"
dnsConfig:
nameservers:
- "478"
- "481"
options:
- name: "480"
value: "481"
- name: "483"
value: "484"
searches:
- "479"
dnsPolicy: 錏嬮#ʐ
- "482"
dnsPolicy: q沷¾!
enableServiceLinks: false
ephemeralContainers:
- args:
@ -380,13 +379,13 @@ spec:
configMapKeyRef:
key: "338"
name: "337"
optional: true
optional: false
fieldRef:
apiVersion: "333"
fieldPath: "334"
resourceFieldRef:
containerName: "335"
divisor: "684"
divisor: "473"
resource: "336"
secretKeyRef:
key: "340"
@ -399,165 +398,164 @@ spec:
prefix: "328"
secretRef:
name: "330"
optional: true
optional: false
image: "322"
imagePullPolicy: ɧeʫį淓¯
imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj
lifecycle:
postStart:
exec:
command:
- "367"
- "368"
httpGet:
host: "369"
host: "370"
httpHeaders:
- name: "370"
value: "371"
path: "368"
port: -1460652193
scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ?
- name: "371"
value: "372"
path: "369"
port: 1176168596
scheme: 轪d覉;Ĕ
tcpSocket:
host: "373"
port: "372"
host: "374"
port: "373"
preStop:
exec:
command:
- "374"
- "375"
httpGet:
host: "376"
host: "378"
httpHeaders:
- name: "377"
value: "378"
path: "375"
port: 71524977
scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷
- name: "379"
value: "380"
path: "376"
port: "377"
scheme: ʦŊĊ娮
tcpSocket:
host: "379"
port: -565041796
host: "382"
port: "381"
livenessProbe:
exec:
command:
- "347"
failureThreshold: 1587036035
failureThreshold: 1566765016
httpGet:
host: "349"
httpHeaders:
- name: "350"
value: "351"
path: "348"
port: -121675052
scheme: W#ļǹʅŚO虀^
initialDelaySeconds: -1959891996
periodSeconds: 1475033091
successThreshold: 1782790310
port: 1034835933
scheme: O虀^背遻堣灭ƴɦ燻踸陴
initialDelaySeconds: 650448405
periodSeconds: -168773629
successThreshold: 2068592383
tcpSocket:
host: "353"
port: "352"
terminationGracePeriodSeconds: 7560036535013464461
timeoutSeconds: -1442230895
host: "352"
port: -1744546613
terminationGracePeriodSeconds: -1112599546012453731
timeoutSeconds: 1943254244
name: "321"
ports:
- containerPort: -651405950
- containerPort: -1371690155
hostIP: "327"
hostPort: 1805682547
hostPort: 2032588794
name: "326"
protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07
protocol: G昧牱fsǕT衩kƒK07曳wœj堑
readinessProbe:
exec:
command:
- "354"
failureThreshold: 408029351
- "353"
failureThreshold: 902204699
httpGet:
host: "356"
httpHeaders:
- name: "357"
value: "358"
path: "355"
port: -1744546613
scheme: ʓɻŊ
initialDelaySeconds: 1586122127
periodSeconds: 781203691
successThreshold: -216440055
tcpSocket:
host: "359"
port: -259047269
terminationGracePeriodSeconds: 5450105809027610853
timeoutSeconds: -1813456856
resources:
limits:
蠨磼O_h盌3+Œ9两@8Byß: "111"
requests:
ɃŒ: "451"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- ƛ忀z委>,趐V曡88 u怞荊ù
drop:
- 8緔Tj§E蓋Cȗä2 ɲ±
privileged: true
procMount: Ş襵樞úʥ銀
readOnlyRootFilesystem: true
runAsGroup: -7297536356638221066
runAsNonRoot: false
runAsUser: -4564863616644509171
seLinuxOptions:
level: "384"
role: "382"
type: "383"
user: "381"
seccompProfile:
localhostProfile: "388"
type: ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧
windowsOptions:
gmsaCredentialSpec: "386"
gmsaCredentialSpecName: "385"
runAsUserName: "387"
startupProbe:
exec:
command:
- "360"
failureThreshold: 902204699
httpGet:
host: "362"
httpHeaders:
- name: "363"
value: "364"
path: "361"
port: -5241849
scheme: '}颉hȱɷȰW'
path: "354"
port: "355"
scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
initialDelaySeconds: 636493142
periodSeconds: 420595064
successThreshold: 1195176401
tcpSocket:
host: "366"
port: "365"
host: "360"
port: "359"
terminationGracePeriodSeconds: 9196919020604133323
timeoutSeconds: -192358697
resources:
limits:
盌3+Œ: "752"
requests:
)Zq=歍þ: "759"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- 蓋Cȗä2 ɲ±m嵘厶sȰÖ
drop:
- ÆɰŞ襵
privileged: true
procMount: 阫Ƈʥ椹ý
readOnlyRootFilesystem: false
runAsGroup: -1624551961163368198
runAsNonRoot: false
runAsUser: -5519662252699559890
seLinuxOptions:
level: "387"
role: "385"
type: "386"
user: "384"
seccompProfile:
localhostProfile: "391"
type: ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷
windowsOptions:
gmsaCredentialSpec: "389"
gmsaCredentialSpecName: "388"
hostProcess: false
runAsUserName: "390"
startupProbe:
exec:
command:
- "361"
failureThreshold: -1222486879
httpGet:
host: "364"
httpHeaders:
- name: "365"
value: "366"
path: "362"
port: "363"
scheme: y#t(ȗŜŲ&
initialDelaySeconds: 156368232
periodSeconds: 44612600
successThreshold: -688929182
tcpSocket:
host: "367"
port: 1387858949
terminationGracePeriodSeconds: 6543873941346781273
timeoutSeconds: -815239246
stdin: true
targetContainerName: "389"
terminationMessagePath: "380"
terminationMessagePolicy: Ƭ婦d
tty: true
stdinOnce: true
targetContainerName: "392"
terminationMessagePath: "383"
terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ
volumeDevices:
- devicePath: "346"
name: "345"
volumeMounts:
- mountPath: "342"
mountPropagation: 葰賦
mountPropagation: 讅缔m葰賦迾娙ƴ4虵p
name: "341"
readOnly: true
subPath: "343"
subPathExpr: "344"
workingDir: "325"
hostAliases:
- hostnames:
- "476"
ip: "475"
- "479"
ip: "478"
hostIPC: true
hostPID: true
hostname: "406"
hostname: "409"
imagePullSecrets:
- name: "405"
- name: "408"
initContainers:
- args:
- "181"
@ -685,11 +683,11 @@ spec:
drop:
- H鯂²静ƲǦŐnj汰8ŕİi騎C"6
privileged: false
procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: false
runAsGroup: 6901713258562004024
runAsNonRoot: true
runAsUser: 9148233193771851687
procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: true
runAsGroup: 4041264710404335706
runAsNonRoot: false
runAsUser: -7299434051955863644
seLinuxOptions:
level: "245"
role: "243"
@ -701,6 +699,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "247"
gmsaCredentialSpecName: "246"
hostProcess: true
runAsUserName: "248"
startupProbe:
exec:
@ -735,64 +734,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "394"
nodeName: "397"
nodeSelector:
"390": "391"
"393": "394"
overhead:
"": "359"
preemptionPolicy: ""
priority: -860768401
priorityClassName: "477"
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "480"
readinessGates:
- conditionType: '@.ȇʟ'
restartPolicy: 鹚蝉茲ʛ饊
runtimeClassName: "482"
schedulerName: "472"
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
runtimeClassName: "485"
schedulerName: "475"
securityContext:
fsGroup: -1867959832193971598
fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!
runAsGroup: 6465579957265382985
fsGroup: 3564097949592109139
fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6
runAsGroup: 2960114664726223450
runAsNonRoot: false
runAsUser: -4904722847506013622
runAsUser: -3496040522639830925
seLinuxOptions:
level: "398"
role: "396"
type: "397"
user: "395"
level: "401"
role: "399"
type: "400"
user: "398"
seccompProfile:
localhostProfile: "404"
type: '`翾''ųŎ群E牬庘颮6(|ǖû'
localhostProfile: "407"
type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ
supplementalGroups:
- -981432507446869083
- 2402603282459663167
sysctls:
- name: "402"
value: "403"
- name: "405"
value: "406"
windowsOptions:
gmsaCredentialSpec: "400"
gmsaCredentialSpecName: "399"
runAsUserName: "401"
serviceAccount: "393"
serviceAccountName: "392"
gmsaCredentialSpec: "403"
gmsaCredentialSpecName: "402"
hostProcess: true
runAsUserName: "404"
serviceAccount: "396"
serviceAccountName: "395"
setHostnameAsFQDN: true
shareProcessNamespace: false
subdomain: "407"
terminationGracePeriodSeconds: 1736985756995615785
shareProcessNamespace: true
subdomain: "410"
terminationGracePeriodSeconds: 3296766428578159624
tolerations:
- effect: ɮ-nʣž吞Ƞ唄®窂爪
key: "473"
operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]
tolerationSeconds: -5154627301352060136
value: "474"
- effect: '慰x:'
key: "476"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "477"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q
operator: Exists
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
matchLabels:
9_-n7--_-d---.-D_4.HVFh-5-YW7-K..._YfWzG: 4n
maxSkew: -2013945465
topologyKey: "483"
whenUnsatisfiable: '½ǩ '
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "486"
whenUnsatisfiable: ""
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1045,25 +1047,25 @@ spec:
storagePolicyID: "106"
storagePolicyName: "105"
volumePath: "103"
templateGeneration: 6217170132371410053
templateGeneration: 5029735218517286947
updateStrategy:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
status:
collisionCount: 380871347
collisionCount: -286154190
conditions:
- lastTransitionTime: "2688-06-15T12:51:56Z"
message: "491"
reason: "490"
status: Ç[輚趞ț@郺丮嘱uȒ
type: D齆O#ȞM<²彾Ǟʈɐ碓yƗÄ.
currentNumberScheduled: -1371816595
desiredNumberScheduled: -788475912
numberAvailable: 340429479
numberMisscheduled: 1219820375
numberReady: 415140088
numberUnavailable: -1024715512
observedGeneration: 8590184840880420513
updatedNumberScheduled: 16994744
- lastTransitionTime: "2194-10-19T16:17:18Z"
message: "494"
reason: "493"
status: De½t;Ä
type: 鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹
currentNumberScheduled: -212409426
desiredNumberScheduled: 1329525670
numberAvailable: -161888815
numberMisscheduled: 17761427
numberReady: -1169406076
numberUnavailable: 1676195855
observedGeneration: -660751236671399271
updatedNumberScheduled: 171558604

File diff suppressed because it is too large Load Diff

View File

@ -31,12 +31,13 @@ metadata:
selfLink: "5"
uid: "7"
spec:
minReadySeconds: 1559072561
progressDeadlineSeconds: 349353563
minReadySeconds: -212999359
paused: true
progressDeadlineSeconds: -1491990975
replicas: 896585016
revisionHistoryLimit: -629510776
revisionHistoryLimit: -866496758
rollbackTo:
revision: -8285752436940414034
revision: 5409045697701816557
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@ -47,7 +48,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
type: 卍睊
template:
metadata:
annotations:
@ -80,114 +81,108 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
activeDeadlineSeconds: -5891364351877125204
activeDeadlineSeconds: 5204116807884683873
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "410"
operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW
values:
- "411"
matchFields:
- key: "412"
operator: 顓闉ȦT
values:
- "413"
weight: 1762917570
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "406"
operator: ""
operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃
values:
- "407"
matchFields:
- key: "408"
operator: ɦ燻踸陴Sĕ濦ʓɻ
operator: ƒK07曳w
values:
- "409"
weight: 1805682547
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "402"
operator: ""
values:
- "403"
matchFields:
- key: "404"
operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ
values:
- "405"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
operator: In
values:
- H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr
operator: DoesNotExist
matchLabels:
z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0: M2-n_5023Xl-3Pw_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9c
namespaceSelector:
matchExpressions:
- key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
operator: In
values:
- 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
- key: C-_20
operator: Exists
matchLabels:
vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
8---h-1.l-h--q0h-t2n4s-6-k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a46/FL-__bf_9_-C-PfNx__-U_.Pn-W2h: ht-E6___-X__H.-39-A_-_l67Q.-t
namespaces:
- "434"
topologyKey: "435"
weight: 888976270
- "430"
topologyKey: "431"
weight: -450654683
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33
operator: NotIn
values:
- 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
- key: 67F3p2_-_AmD-.0P
operator: DoesNotExist
matchLabels:
8.--w0_1V7: r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5
namespaceSelector:
matchExpressions:
- key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- key: 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/K._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj
operator: Exists
matchLabels:
4eq5: ""
6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r
namespaces:
- "420"
topologyKey: "421"
- "416"
topologyKey: "417"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 6W74-R_Z_Tz.a3_Ho
operator: Exists
- key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
namespaceSelector:
matchExpressions:
- key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
operator: In
values:
- x3___-..f5-6x-_-o_6O_If-5_-_.F
- key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
operator: DoesNotExist
matchLabels:
h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
namespaces:
- "462"
topologyKey: "463"
weight: -1668452490
- "458"
topologyKey: "459"
weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
operator: Exists
matchLabels:
5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
namespaceSelector:
matchExpressions:
- key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
- key: 4b699/B9n.2
operator: In
values:
- V._qN__A_f_-B3_U__L.KH6K.RwsfI2
- MM7-.e.x
matchLabels:
u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5: TB-d-Q
namespaceSelector:
matchExpressions:
- key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
operator: DoesNotExist
matchLabels:
B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
namespaces:
- "448"
topologyKey: "449"
- "444"
topologyKey: "445"
automountServiceAccountToken: true
containers:
- args:
@ -201,372 +196,372 @@ spec:
configMapKeyRef:
key: "262"
name: "261"
optional: true
optional: false
fieldRef:
apiVersion: "257"
fieldPath: "258"
resourceFieldRef:
containerName: "259"
divisor: "185"
divisor: "271"
resource: "260"
secretKeyRef:
key: "264"
name: "263"
optional: false
optional: true
envFrom:
- configMapRef:
name: "253"
optional: false
optional: true
prefix: "252"
secretRef:
name: "254"
optional: false
image: "246"
imagePullPolicy: i绝5哇芆斩
imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle:
postStart:
exec:
command:
- "292"
- "291"
httpGet:
host: "295"
host: "293"
httpHeaders:
- name: "296"
value: "297"
path: "293"
port: "294"
scheme: 鯂²静
- name: "294"
value: "295"
path: "292"
port: -1021949447
scheme: B芭
tcpSocket:
host: "298"
port: -402384013
host: "297"
port: "296"
preStop:
exec:
command:
- "299"
- "298"
httpGet:
host: "302"
host: "301"
httpHeaders:
- name: "303"
value: "304"
path: "300"
port: "301"
scheme: 鏻砅邻爥
- name: "302"
value: "303"
path: "299"
port: "300"
scheme: yƕ丆録²Ŏ)
tcpSocket:
host: "305"
port: -305362540
host: "304"
port: 507384491
livenessProbe:
exec:
command:
- "271"
failureThreshold: 1993268896
failureThreshold: 1156888068
httpGet:
host: "274"
host: "273"
httpHeaders:
- name: "275"
value: "276"
- name: "274"
value: "275"
path: "272"
port: "273"
scheme:
initialDelaySeconds: 711020087
periodSeconds: -1965247100
successThreshold: 218453478
port: 1907998540
scheme: ',ŕ'
initialDelaySeconds: -253326525
periodSeconds: 887319241
successThreshold: 1559618829
tcpSocket:
host: "277"
port: 1315054653
terminationGracePeriodSeconds: -9140155223242250138
timeoutSeconds: 1103049140
port: "276"
terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 567263590
name: "245"
ports:
- containerPort: -370386363
- containerPort: 1714588921
hostIP: "251"
hostPort: -1462219068
hostPort: -370386363
name: "250"
protocol: wƯ貾坢'跩aŕ翑0展}
protocol: Ư貾
readinessProbe:
exec:
command:
- "278"
failureThreshold: 1456461851
failureThreshold: 422133388
httpGet:
host: "280"
httpHeaders:
- name: "281"
value: "282"
path: "279"
port: -1315487077
scheme: ğ_
initialDelaySeconds: 1272940694
periodSeconds: 422133388
successThreshold: 1952458416
port: 1315054653
scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1905181464
periodSeconds: 1272940694
successThreshold: -385597677
tcpSocket:
host: "284"
port: "283"
terminationGracePeriodSeconds: -6078441689118311403
timeoutSeconds: -385597677
terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -1730959016
resources:
limits:
鬶l獕;跣Hǝcw: "242"
庰%皧V: "116"
requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637"
"": "289"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ""
- p鋄5弢ȹ均i绝5
drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
privileged: false
procMount: W賁Ěɭɪǹ0
- ""
privileged: true
procMount: ş
readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404
runAsGroup: 7023916302283403328
runAsNonRoot: false
runAsUser: -7936947433725476327
runAsUser: -3385088507022597813
seLinuxOptions:
level: "310"
role: "308"
type: "309"
user: "307"
level: "309"
role: "307"
type: "308"
user: "306"
seccompProfile:
localhostProfile: "314"
type: ',ƷƣMț譎懚XW疪鑳'
localhostProfile: "313"
type: 諔迮ƙ
windowsOptions:
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
runAsUserName: "313"
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
hostProcess: false
runAsUserName: "312"
startupProbe:
exec:
command:
- "285"
failureThreshold: 620822482
failureThreshold: 353361793
httpGet:
host: "287"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: 1332783160
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;
initialDelaySeconds: -300247800
periodSeconds: -126958936
successThreshold: 186945072
port: 1013673874
scheme: ə娯Ȱ囌{
initialDelaySeconds: -205176266
periodSeconds: -116469891
successThreshold: 311083651
tcpSocket:
host: "291"
port: "290"
terminationGracePeriodSeconds: -2203905759223555727
timeoutSeconds: 386804041
stdin: true
host: "290"
port: -1829146875
terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 490479437
stdinOnce: true
terminationMessagePath: "306"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
tty: true
terminationMessagePath: "305"
terminationMessagePolicy: "3"
volumeDevices:
- devicePath: "270"
name: "269"
volumeMounts:
- mountPath: "266"
mountPropagation: ""
mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "265"
readOnly: true
subPath: "267"
subPathExpr: "268"
workingDir: "249"
dnsConfig:
nameservers:
- "476"
- "472"
options:
- name: "478"
value: "479"
- name: "474"
value: "475"
searches:
- "477"
dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s
enableServiceLinks: false
- "473"
dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b
enableServiceLinks: true
ephemeralContainers:
- args:
- "318"
command:
- "317"
command:
- "316"
env:
- name: "325"
value: "326"
- name: "324"
value: "325"
valueFrom:
configMapKeyRef:
key: "332"
name: "331"
optional: false
key: "331"
name: "330"
optional: true
fieldRef:
apiVersion: "327"
fieldPath: "328"
apiVersion: "326"
fieldPath: "327"
resourceFieldRef:
containerName: "329"
divisor: "360"
resource: "330"
containerName: "328"
divisor: "66"
resource: "329"
secretKeyRef:
key: "334"
name: "333"
key: "333"
name: "332"
optional: false
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
prefix: "322"
secretRef:
name: "324"
optional: false
image: "316"
imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
image: "315"
imagePullPolicy: 阠$嬏
lifecycle:
postStart:
exec:
command:
- "363"
- "360"
httpGet:
host: "365"
host: "362"
httpHeaders:
- name: "366"
value: "367"
path: "364"
port: 466267060
scheme: wy¶熀ďJZ漤ŗ坟Ů<y鯶縆ł
- name: "363"
value: "364"
path: "361"
port: 890223061
scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ
tcpSocket:
host: "369"
port: "368"
host: "366"
port: "365"
preStop:
exec:
command:
- "370"
- "367"
httpGet:
host: "373"
host: "369"
httpHeaders:
- name: "374"
value: "375"
path: "371"
port: "372"
scheme: Ē3Nh×DJɶ羹ƞʓ%ʝ
- name: "370"
value: "371"
path: "368"
port: 797714018
scheme: vÄÚ×
tcpSocket:
host: "377"
port: "376"
host: "373"
port: "372"
livenessProbe:
exec:
command:
- "341"
failureThreshold: 240657401
- "340"
failureThreshold: -1508967300
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "342"
port: -1842062977
scheme: 輔3璾ėȜv1b繐汚磉反-n覦
initialDelaySeconds: -1161185537
periodSeconds: 1611386356
successThreshold: 821341581
path: "341"
port: "342"
initialDelaySeconds: -1843539391
periodSeconds: -1758095966
successThreshold: 1627026804
tcpSocket:
host: "347"
port: "346"
terminationGracePeriodSeconds: 7806703309589874498
timeoutSeconds: 1928937303
name: "315"
host: "346"
port: -819013491
terminationGracePeriodSeconds: -4548040070833300341
timeoutSeconds: 1238925115
name: "314"
ports:
- containerPort: 455919108
hostIP: "321"
hostPort: 217308913
name: "320"
protocol: 崍h趭(娕u
- containerPort: 1137109081
hostIP: "320"
hostPort: -488127393
name: "319"
protocol: 丽饾| 鞤ɱď
readinessProbe:
exec:
command:
- "348"
failureThreshold: 1605974497
- "347"
failureThreshold: -47594442
httpGet:
host: "351"
host: "349"
httpHeaders:
- name: "352"
value: "353"
path: "349"
port: "350"
scheme: Ik(dŊiɢzĮ蛋I
initialDelaySeconds: 571693619
periodSeconds: -2028546276
successThreshold: -2128305760
- name: "350"
value: "351"
path: "348"
port: -186532794
scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė
initialDelaySeconds: -751455207
periodSeconds: 646133945
successThreshold: -506710067
tcpSocket:
host: "355"
port: "354"
terminationGracePeriodSeconds: 2002344837004307079
timeoutSeconds: 1643238856
host: "353"
port: "352"
terminationGracePeriodSeconds: -8866033802256420471
timeoutSeconds: -894026356
resources:
limits:
fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
ƣMț譎懚X: "93"
requests:
蕎': "62"
曣ŋayåe躒訙: "484"
securityContext:
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
add:
- 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃
- ¶熀ďJZ漤
drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false
procMount: ʙcx
readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240
- ""
privileged: true
procMount: 槃JŵǤ桒ɴ鉂WJ
readOnlyRootFilesystem: true
runAsGroup: -8721643037453811760
runAsNonRoot: false
runAsUser: 4369716065827112267
runAsUser: 5680561050872693436
seLinuxOptions:
level: "382"
role: "380"
type: "381"
user: "379"
level: "378"
role: "376"
type: "377"
user: "375"
seccompProfile:
localhostProfile: "386"
type: ǒđ>*劶?jĎĭ
localhostProfile: "382"
type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ
windowsOptions:
gmsaCredentialSpec: "384"
gmsaCredentialSpecName: "383"
runAsUserName: "385"
gmsaCredentialSpec: "380"
gmsaCredentialSpecName: "379"
hostProcess: false
runAsUserName: "381"
startupProbe:
exec:
command:
- "356"
failureThreshold: 1447314009
- "354"
failureThreshold: 1190831814
httpGet:
host: "359"
host: "356"
httpHeaders:
- name: "360"
value: "361"
path: "357"
port: "358"
scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂
initialDelaySeconds: 235623869
periodSeconds: -505848936
successThreshold: -1819021257
- name: "357"
value: "358"
path: "355"
port: -1789721862
scheme: 閈誹ʅ蕉ɼ
initialDelaySeconds: 1518001294
periodSeconds: -2068583194
successThreshold: -29073009
tcpSocket:
host: "362"
port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594
targetContainerName: "387"
terminationMessagePath: "378"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
host: "359"
port: 374862544
terminationGracePeriodSeconds: 7262727411813417219
timeoutSeconds: 1467189105
targetContainerName: "383"
terminationMessagePath: "374"
terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ
volumeDevices:
- devicePath: "340"
name: "339"
- devicePath: "339"
name: "338"
volumeMounts:
- mountPath: "336"
mountPropagation: Ǚ(
name: "335"
readOnly: true
subPath: "337"
subPathExpr: "338"
workingDir: "319"
- mountPath: "335"
mountPropagation: (娕uE增猍
name: "334"
subPath: "336"
subPathExpr: "337"
workingDir: "318"
hostAliases:
- hostnames:
- "474"
ip: "473"
- "470"
ip: "469"
hostIPC: true
hostNetwork: true
hostPID: true
hostname: "404"
hostname: "400"
imagePullSecrets:
- name: "403"
- name: "399"
initContainers:
- args:
- "181"
@ -694,11 +689,11 @@ spec:
drop:
- ʁ岼昕ĬÇ
privileged: true
procMount: Z鐫û咡W<敄lu
procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858
runAsNonRoot: true
runAsUser: -857934902638099053
runAsGroup: -6406791857291159870
runAsNonRoot: false
runAsUser: 161123823296532265
seLinuxOptions:
level: "240"
role: "238"
@ -706,10 +701,11 @@ spec:
user: "237"
seccompProfile:
localhostProfile: "244"
type: 榝$î.Ȏ蝪ʜ5遰
type: î.Ȏ蝪ʜ5遰=
windowsOptions:
gmsaCredentialSpec: "242"
gmsaCredentialSpecName: "241"
hostProcess: false
runAsUserName: "243"
startupProbe:
exec:
@ -732,6 +728,7 @@ spec:
port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096
stdin: true
stdinOnce: true
terminationMessagePath: "236"
terminationMessagePolicy: ĸ輦唊
@ -747,66 +744,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "392"
nodeName: "388"
nodeSelector:
"388": "389"
"384": "385"
overhead:
D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: Iƭij韺ʧ>
priority: 743241089
priorityClassName: "475"
炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
priority: -1756088332
priorityClassName: "471"
readinessGates:
- conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: ƱÁR»淹揀
runtimeClassName: "480"
schedulerName: "470"
- conditionType: '#sM網'
restartPolicy: ȏâ磠
runtimeClassName: "476"
schedulerName: "466"
securityContext:
fsGroup: 6713296993350540686
fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ
runAsGroup: -3587143030436465588
fsGroup: 2946116477552625615
fsGroupChangePolicy: $鬬$矐_敕
runAsGroup: -935274303703112577
runAsNonRoot: true
runAsUser: 4466809078783855686
runAsUser: -3072254610148392250
seLinuxOptions:
level: "396"
role: "394"
type: "395"
user: "393"
level: "392"
role: "390"
type: "391"
user: "389"
seccompProfile:
localhostProfile: "402"
type: m¨z鋎靀G¿əW#ļǹʅŚO虀^
localhostProfile: "398"
type: 嵞嬯t{Eɾ敹Ȯ-湷D谹
supplementalGroups:
- 4820130167691486230
- 5215323049148402377
sysctls:
- name: "400"
value: "401"
- name: "396"
value: "397"
windowsOptions:
gmsaCredentialSpec: "398"
gmsaCredentialSpecName: "397"
runAsUserName: "399"
serviceAccount: "391"
serviceAccountName: "390"
setHostnameAsFQDN: true
gmsaCredentialSpec: "394"
gmsaCredentialSpecName: "393"
hostProcess: false
runAsUserName: "395"
serviceAccount: "387"
serviceAccountName: "386"
setHostnameAsFQDN: false
shareProcessNamespace: false
subdomain: "405"
terminationGracePeriodSeconds: 2008726498083002362
subdomain: "401"
terminationGracePeriodSeconds: 5614430095732678823
tolerations:
- effect: '慰x:'
key: "471"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: 3362400521064014157
value: "472"
- effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸
key: "467"
operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ
tolerationSeconds: -3147305732428645642
value: "468"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- key: KTlO.__0PX
operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
- V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
maxSkew: -174245111
topologyKey: "481"
whenUnsatisfiable: ""
47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
maxSkew: -447559705
topologyKey: "477"
whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1062,17 +1060,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: -2102211832
collisionCount: -1280802136
availableReplicas: 845369726
collisionCount: 2000058265
conditions:
- lastTransitionTime: "2625-01-11T08:25:47Z"
lastUpdateTime: "2124-10-20T09:17:54Z"
message: "489"
reason: "488"
status: ""
type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ
observedGeneration: 5710269275969351972
readyReplicas: 1492268066
replicas: -153843136
unavailableReplicas: 1714841371
updatedReplicas: -1961319491
- lastTransitionTime: "2127-02-15T04:53:58Z"
lastUpdateTime: "2587-03-02T15:57:31Z"
message: "485"
reason: "484"
status: 埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$<ʖ欢
type: ',R譏K'
observedGeneration: 893725404715704439
readyReplicas: 143932221
replicas: -611078700
unavailableReplicas: 1757097428
updatedReplicas: -280135412

File diff suppressed because it is too large Load Diff

View File

@ -73,116 +73,112 @@ spec:
selfLink: "29"
uid: ʬ
spec:
activeDeadlineSeconds: 579099652389333099
activeDeadlineSeconds: 3305070661619041050
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "408"
operator: 霎ȃň
- key: "407"
operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values:
- "409"
- "408"
matchFields:
- key: "410"
operator: ʓ滨
- key: "409"
operator: '[y#t('
values:
- "411"
weight: -259047269
- "410"
weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "404"
operator: 灭ƴɦ燻踸陴Sĕ
- key: "403"
operator: ʓɻŊ0蚢鑸鶲Ãqb轫
values:
- "405"
- "404"
matchFields:
- key: "406"
operator: 筿ɾ
- key: "405"
operator: ' '
values:
- "407"
- "406"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: Q_--v-3-BzO5z80n_HtW
operator: NotIn
values:
- 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
- key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
operator: Exists
matchLabels:
8--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0m.b--kexr-1-o--g--1l-8---3snw0-3i--a7-2--j/i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV2: PE..24-O._.v._9-cz.-Y6T4gz
1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
namespaceSelector:
matchExpressions:
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W
operator: In
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
- key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
operator: DoesNotExist
matchLabels:
? f---u7-gl7814ei-07shtq-6---g----9s39z--f-l67-9a-trt-03-7z2zy0eq.8-u87lyqq-o-3----60zvoe7-7973b--7n/fNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_--5-_.3--9
: P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA
Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
namespaces:
- "432"
topologyKey: "433"
weight: 2001693468
- "431"
topologyKey: "432"
weight: -234140
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: 3QC1--L--v_Z--ZgC
operator: Exists
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels:
KA-._d._.Um.-__0: 5_g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.I
rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaceSelector:
matchExpressions:
- key: 7Vz_6.Hz_V_.r_v_._X
operator: Exists
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
operator: DoesNotExist
matchLabels:
1rhm-5y--z-0/b17ca-_p-y.eQ9: dU-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFAX
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:
- "418"
topologyKey: "419"
- "417"
topologyKey: "418"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: 8v---a9j23/9
operator: In
values:
- y__y.9O.L-.m.3h
- key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
operator: DoesNotExist
matchLabels:
o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H: gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq
1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
namespaceSelector:
matchExpressions:
- key: 6re-33-3.3-cw-1---px-0q5m-e--8-tcd2-84s-n-i-711s4--9s8--o-8dm---b--b/0v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..5-.._r6M__4-P-g3Jt6eG
operator: Exists
- key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
operator: DoesNotExist
matchLabels:
VM5..-N_H_55..--E3_2D-1DW__o_8: kzB7U_.Q.45cy-.._K
? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
: I-._g_.._-hKc.OB_F_--.._m_-9
namespaces:
- "460"
topologyKey: "461"
weight: 1920802622
- "459"
topologyKey: "460"
weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: T
operator: NotIn
values:
- ""
matchLabels:
4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-.C
namespaceSelector:
matchExpressions:
- key: vSW_4-__h
- key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
operator: In
values:
- m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
- u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
matchLabels:
T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ
n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
namespaceSelector:
matchExpressions:
- key: N7.81_-._-_8_.._._a9
operator: In
values:
- vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
matchLabels:
m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
namespaces:
- "446"
topologyKey: "447"
automountServiceAccountToken: true
- "445"
topologyKey: "446"
automountServiceAccountToken: false
containers:
- args:
- "249"
@ -201,7 +197,7 @@ spec:
fieldPath: "259"
resourceFieldRef:
containerName: "260"
divisor: "9"
divisor: "861"
resource: "261"
secretKeyRef:
key: "265"
@ -214,196 +210,197 @@ spec:
prefix: "253"
secretRef:
name: "255"
optional: true
optional: false
image: "247"
imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭
imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭
lifecycle:
postStart:
exec:
command:
- "291"
- "293"
httpGet:
host: "294"
host: "295"
httpHeaders:
- name: "295"
value: "296"
path: "292"
port: "293"
scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩
- name: "296"
value: "297"
path: "294"
port: -1699531929
scheme: Z涬P­蜷ɔ幩šeS
tcpSocket:
host: "297"
port: 1167615307
host: "298"
port: 155090390
preStop:
exec:
command:
- "298"
- "299"
httpGet:
host: "300"
host: "302"
httpHeaders:
- name: "301"
value: "302"
path: "299"
port: -115833863
scheme: ì
- name: "303"
value: "304"
path: "300"
port: "301"
tcpSocket:
host: "304"
port: "303"
host: "305"
port: -727263154
livenessProbe:
exec:
command:
- "272"
failureThreshold: -1129218498
failureThreshold: 472742933
httpGet:
host: "274"
host: "275"
httpHeaders:
- name: "275"
value: "276"
- name: "276"
value: "277"
path: "273"
port: -1468297794
scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ
initialDelaySeconds: 1308698792
periodSeconds: -934378634
successThreshold: -1453143878
port: "274"
scheme: 冓鍓贯
initialDelaySeconds: 1290950685
periodSeconds: 1058960779
successThreshold: -2133441986
tcpSocket:
host: "278"
port: "277"
terminationGracePeriodSeconds: 2471155705902100229
timeoutSeconds: 1401790459
host: "279"
port: "278"
terminationGracePeriodSeconds: 217739466937954194
timeoutSeconds: 12533543
name: "246"
ports:
- containerPort: -1784617397
- containerPort: -614161319
hostIP: "252"
hostPort: 465972736
hostPort: 59244165
name: "251"
protocol: Ƭƶ氩Ȩ<6
protocol: Ȩ<6鄰簳°Ļǟi&
readinessProbe:
exec:
command:
- "279"
failureThreshold: 323903711
- "280"
failureThreshold: 1843491416
httpGet:
host: "281"
host: "282"
httpHeaders:
- name: "282"
value: "283"
path: "280"
port: -614098868
scheme: ȗÔÂɘɢ
initialDelaySeconds: -942399354
periodSeconds: -1803854120
successThreshold: -1412915219
- name: "283"
value: "284"
path: "281"
port: 1401790459
scheme: ǵɐ鰥Z
initialDelaySeconds: -614098868
periodSeconds: 846286700
successThreshold: 1080545253
tcpSocket:
host: "284"
port: 802134138
terminationGracePeriodSeconds: -9192251189672401053
timeoutSeconds: 1264624019
host: "285"
port: -1103045151
terminationGracePeriodSeconds: -5175286970144973961
timeoutSeconds: 234253676
resources:
limits:
lNKƙ順\E¦队偯J僳徥淳: "93"
¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178"
requests:
媀瓄&翜舞拉Œɥ颶妧Ö闊: "472"
Ö闊 鰔澝qV: "752"
securityContext:
allowPrivilegeEscalation: true
allowPrivilegeEscalation: false
capabilities:
add:
- ņ
drop:
- )DŽ髐njʉBn(fǂ
drop:
- 曣ŋayåe躒訙
privileged: false
procMount: Ǫʓ)ǂť嗆u
readOnlyRootFilesystem: true
runAsGroup: -495558749504439559
runAsNonRoot: false
runAsUser: -6717020695319852049
procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
readOnlyRootFilesystem: false
runAsGroup: 6245571390016329382
runAsNonRoot: true
runAsUser: 1083662227773909466
seLinuxOptions:
level: "309"
role: "307"
type: "308"
user: "306"
level: "310"
role: "308"
type: "309"
user: "307"
seccompProfile:
localhostProfile: "313"
type: 晲T[irȎ3Ĕ\
localhostProfile: "314"
type: '|蕎''佉賞ǧ'
windowsOptions:
gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "310"
runAsUserName: "312"
gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "311"
hostProcess: true
runAsUserName: "313"
startupProbe:
exec:
command:
- "285"
failureThreshold: 1658749995
- "286"
failureThreshold: -793616601
httpGet:
host: "287"
host: "289"
httpHeaders:
- name: "288"
value: "289"
path: "286"
port: -992558278
scheme: 鯂²静
initialDelaySeconds: -181601395
periodSeconds: 1851229369
successThreshold: -560238386
- name: "290"
value: "291"
path: "287"
port: "288"
scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj
initialDelaySeconds: 1658749995
periodSeconds: 809683205
successThreshold: -1615316902
tcpSocket:
host: "290"
port: -402384013
terminationGracePeriodSeconds: -4030490994049395944
timeoutSeconds: -617381112
terminationMessagePath: "305"
terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ
tty: true
host: "292"
port: -560238386
terminationGracePeriodSeconds: -2242897509815578930
timeoutSeconds: -938421813
stdin: true
terminationMessagePath: "306"
terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4
volumeDevices:
- devicePath: "271"
name: "270"
volumeMounts:
- mountPath: "267"
mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃
mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "266"
readOnly: true
subPath: "268"
subPathExpr: "269"
workingDir: "250"
dnsConfig:
nameservers:
- "474"
- "473"
options:
- name: "476"
value: "477"
- name: "475"
value: "476"
searches:
- "475"
dnsPolicy: '''蠨磼O_h盌3+Œ9两@8'
- "474"
dnsPolicy: +Œ9两
enableServiceLinks: false
ephemeralContainers:
- args:
- "317"
- "318"
command:
- "316"
- "317"
env:
- name: "324"
value: "325"
- name: "325"
value: "326"
valueFrom:
configMapKeyRef:
key: "331"
name: "330"
key: "332"
name: "331"
optional: true
fieldRef:
apiVersion: "326"
fieldPath: "327"
apiVersion: "327"
fieldPath: "328"
resourceFieldRef:
containerName: "328"
divisor: "69"
resource: "329"
containerName: "329"
divisor: "992"
resource: "330"
secretKeyRef:
key: "333"
name: "332"
optional: false
key: "334"
name: "333"
optional: true
envFrom:
- configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323"
optional: false
image: "315"
optional: true
prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: ǰ詀ǿ忀oɎƺL
lifecycle:
postStart:
@ -411,85 +408,85 @@ spec:
command:
- "361"
httpGet:
host: "364"
host: "363"
httpHeaders:
- name: "365"
value: "366"
- name: "364"
value: "365"
path: "362"
port: "363"
scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$#
port: 1445923603
scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q
tcpSocket:
host: "368"
port: "367"
host: "367"
port: "366"
preStop:
exec:
command:
- "369"
- "368"
httpGet:
host: "371"
httpHeaders:
- name: "372"
value: "373"
path: "370"
port: 1791758702
scheme: tl敷斢杧ż鯀
path: "369"
port: "370"
scheme: 杧ż鯀1'
tcpSocket:
host: "375"
port: "374"
host: "374"
port: 1297979953
livenessProbe:
exec:
command:
- "340"
failureThreshold: -36573584
- "341"
failureThreshold: 2046765799
httpGet:
host: "343"
httpHeaders:
- name: "344"
value: "345"
path: "341"
port: "342"
scheme: ȥ}礤铟怖ý萜Ǖ
initialDelaySeconds: -1922458514
periodSeconds: 692511776
successThreshold: -1231653807
path: "342"
port: 1529027685
scheme: żLj捲攻xƂ9阠$嬏wy¶熀
initialDelaySeconds: -2106399359
periodSeconds: -1038975198
successThreshold: 1821835340
tcpSocket:
host: "346"
port: -1088996269
terminationGracePeriodSeconds: -2524837786321986358
timeoutSeconds: 1480364858
name: "314"
port: -1912967242
terminationGracePeriodSeconds: -6946775447206795219
timeoutSeconds: 1443270783
name: "315"
ports:
- containerPort: -1918622971
hostIP: "320"
hostPort: -1656699070
name: "319"
protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz
- containerPort: -1842062977
hostIP: "321"
hostPort: -1920304485
name: "320"
protocol: 輔3璾ėȜv1b繐汚磉反-n覦
readinessProbe:
exec:
command:
- "347"
failureThreshold: 1443270783
failureThreshold: 1671084780
httpGet:
host: "349"
host: "350"
httpHeaders:
- name: "350"
value: "351"
- name: "351"
value: "352"
path: "348"
port: 1219644543
scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy
initialDelaySeconds: 652646450
periodSeconds: -1912967242
successThreshold: -2106399359
port: "349"
scheme: Ƒ[澔
initialDelaySeconds: -952255430
periodSeconds: -824007302
successThreshold: -359713104
tcpSocket:
host: "353"
port: "352"
terminationGracePeriodSeconds: -4462364494060795190
timeoutSeconds: 757223010
port: 1288391156
terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 1568034275
resources:
limits:
1b: "328"
ʨIk(dŊiɢzĮ蛋I滞: "394"
requests:
'}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699"
ɞȥ}礤铟怖ý萜Ǖ: "305"
securityContext:
allowPrivilegeEscalation: false
capabilities:
@ -498,68 +495,68 @@ spec:
drop:
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true
procMount: s44矕Ƈè*鑏=
procMount: s44矕Ƈè
readOnlyRootFilesystem: false
runAsGroup: -1232960403847883886
runAsNonRoot: true
runAsUser: 2114633499332155907
runAsGroup: 73764735411458498
runAsNonRoot: false
runAsUser: 4224635496843945227
seLinuxOptions:
level: "380"
role: "378"
type: "379"
user: "377"
level: "379"
role: "377"
type: "378"
user: "376"
seccompProfile:
localhostProfile: "384"
type: ʨ|ǓÓ敆OɈÏ 瞍髃#
localhostProfile: "383"
type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions:
gmsaCredentialSpec: "382"
gmsaCredentialSpecName: "381"
runAsUserName: "383"
gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "380"
hostProcess: true
runAsUserName: "382"
startupProbe:
exec:
command:
- "354"
failureThreshold: 64459150
failureThreshold: -1031303729
httpGet:
host: "356"
httpHeaders:
- name: "357"
value: "358"
path: "355"
port: -902839620
scheme: 縆łƑ[澔槃JŵǤ桒ɴ鉂W
initialDelaySeconds: -574742201
periodSeconds: -514169648
successThreshold: -1186167291
port: -514169648
scheme: '&疀'
initialDelaySeconds: -39292476
periodSeconds: -1312249623
successThreshold: -1089435479
tcpSocket:
host: "360"
port: "359"
terminationGracePeriodSeconds: -4166164136222066963
timeoutSeconds: -1182912186
stdin: true
targetContainerName: "385"
terminationMessagePath: "376"
terminationMessagePolicy: 鸔ɧWǘ炙
terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: 801902541
targetContainerName: "384"
terminationMessagePath: "375"
terminationMessagePolicy: ǘ炙
tty: true
volumeDevices:
- devicePath: "339"
name: "338"
- devicePath: "340"
name: "339"
volumeMounts:
- mountPath: "335"
mountPropagation: Ik(dŊiɢzĮ蛋I
name: "334"
- mountPath: "336"
mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m
name: "335"
readOnly: true
subPath: "336"
subPathExpr: "337"
workingDir: "318"
subPath: "337"
subPathExpr: "338"
workingDir: "319"
hostAliases:
- hostnames:
- "472"
ip: "471"
hostNetwork: true
hostname: "402"
- "471"
ip: "470"
hostPID: true
hostname: "401"
imagePullSecrets:
- name: "401"
- name: "400"
initContainers:
- args:
- "181"
@ -687,11 +684,11 @@ spec:
drop:
- W:ĸ輦唊#v
privileged: false
procMount: Ÿ8T 苧yñKJɐ扵
procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ
readOnlyRootFilesystem: true
runAsGroup: 8839567045362091290
runAsGroup: -1629447906545846003
runAsNonRoot: true
runAsUser: 1946087648860511217
runAsUser: 7510677649797968740
seLinuxOptions:
level: "241"
role: "239"
@ -699,10 +696,11 @@ spec:
user: "238"
seccompProfile:
localhostProfile: "245"
type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
type: 腩墺Ò媁荭gw忊|E剒蔞|表徶
windowsOptions:
gmsaCredentialSpec: "243"
gmsaCredentialSpecName: "242"
hostProcess: true
runAsUserName: "244"
startupProbe:
exec:
@ -728,7 +726,6 @@ spec:
stdin: true
terminationMessagePath: "237"
terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
tty: true
volumeDevices:
- devicePath: "203"
name: "202"
@ -740,66 +737,67 @@ spec:
subPath: "200"
subPathExpr: "201"
workingDir: "182"
nodeName: "390"
nodeName: "389"
nodeSelector:
"386": "387"
"385": "386"
overhead:
»Š: "727"
preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA
priority: 1188651641
priorityClassName: "473"
D輷: "792"
preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 347613368
priorityClassName: "472"
readinessGates:
- conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW
restartPolicy: W歹s梊ɥʋăƻ
runtimeClassName: "478"
schedulerName: "468"
- conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "477"
schedulerName: "467"
securityContext:
fsGroup: -8322686588708543096
fsGroupChangePolicy: 4虵p蓋沥7uPƒ
runAsGroup: -2549376519991319825
fsGroup: -3964669311891901178
fsGroupChangePolicy: ƴ4虵p
runAsGroup: 3230705132538051674
runAsNonRoot: true
runAsUser: 3011215457607075123
runAsUser: 3438266910774132295
seLinuxOptions:
level: "394"
role: "392"
type: "393"
user: "391"
level: "393"
role: "391"
type: "392"
user: "390"
seccompProfile:
localhostProfile: "400"
type: ""
localhostProfile: "399"
type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups:
- 8667724420266764868
- -1600417733583164525
sysctls:
- name: "398"
value: "399"
- name: "397"
value: "398"
windowsOptions:
gmsaCredentialSpec: "396"
gmsaCredentialSpecName: "395"
runAsUserName: "397"
serviceAccount: "389"
serviceAccountName: "388"
gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "394"
hostProcess: false
runAsUserName: "396"
serviceAccount: "388"
serviceAccountName: "387"
setHostnameAsFQDN: false
shareProcessNamespace: true
subdomain: "403"
terminationGracePeriodSeconds: 1031455728822209328
subdomain: "402"
terminationGracePeriodSeconds: -8335674866227004872
tolerations:
- effect: ;牆詒ĸąsƶ
key: "469"
operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ
tolerationSeconds: -456102350746071856
value: "470"
- effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "468"
operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: 3252034671163905138
value: "469"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- key: br..1.--S-w-5_..D.pz_-ad
operator: In
- key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
operator: NotIn
values:
- Q.__y644
- h.v._5.vB-.-7-.6Jv-86___3
matchLabels:
z23.Ya-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__0: g-5.-59...7q___n.__16ee.-.66hcB.rTt7bm9I.-..q-F-T
maxSkew: -388643187
topologyKey: "479"
whenUnsatisfiable: i僠噚恗N
n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -484382570
topologyKey: "478"
whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes:
- awsElasticBlockStore:
fsType: "49"
@ -1051,14 +1049,14 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
availableReplicas: 876226690
availableReplicas: -2060941196
conditions:
- lastTransitionTime: "2951-06-01T06:00:17Z"
message: "487"
reason: "486"
status: '%ÿ¼璤ňɈȀę'
type: C`牯雫
fullyLabeledReplicas: 516555648
observedGeneration: 1436288218546692842
readyReplicas: 2104777337
replicas: -2095627603
- lastTransitionTime: "2597-11-21T15:14:16Z"
message: "486"
reason: "485"
status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎
type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN
fullyLabeledReplicas: 415168801
observedGeneration: 7426283174216567769
readyReplicas: 1448332644
replicas: 2106170541

View File

@ -24,6 +24,7 @@ type WindowsSecurityContextOptionsApplyConfiguration struct {
GMSACredentialSpecName *string `json:"gmsaCredentialSpecName,omitempty"`
GMSACredentialSpec *string `json:"gmsaCredentialSpec,omitempty"`
RunAsUserName *string `json:"runAsUserName,omitempty"`
HostProcess *bool `json:"hostProcess,omitempty"`
}
// WindowsSecurityContextOptionsApplyConfiguration constructs an declarative configuration of the WindowsSecurityContextOptions type for use with
@ -55,3 +56,11 @@ func (b *WindowsSecurityContextOptionsApplyConfiguration) WithRunAsUserName(valu
b.RunAsUserName = &value
return b
}
// WithHostProcess sets the HostProcess field in the declarative configuration to the given value
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the HostProcess field is set to the value of the last call.
func (b *WindowsSecurityContextOptionsApplyConfiguration) WithHostProcess(value bool) *WindowsSecurityContextOptionsApplyConfiguration {
b.HostProcess = &value
return b
}

View File

@ -6580,6 +6580,9 @@ var schemaYAML = typed.YAMLObject(`types:
- name: gmsaCredentialSpecName
type:
scalar: string
- name: hostProcess
type:
scalar: boolean
- name: runAsUserName
type:
scalar: string

File diff suppressed because it is too large Load Diff

View File

@ -388,6 +388,8 @@ message PodSandboxConfig {
map<string, string> annotations = 7;
// Optional configurations specific to Linux hosts.
LinuxPodSandboxConfig linux = 8;
// Optional configurations specific to Windows hosts.
WindowsPodSandboxConfig windows = 9;
}
message RunPodSandboxRequest {
@ -687,6 +689,29 @@ message LinuxContainerConfig {
LinuxContainerSecurityContext security_context = 2;
}
// WindowsSandboxSecurityContext holds platform-specific configurations that will be
// applied to a sandbox.
// These settings will only apply to the sandbox container.
message WindowsSandboxSecurityContext {
// User name to run the container process as. If specified, the user MUST
// exist in the container image and be resolved there by the runtime;
// otherwise, the runtime MUST return error.
string run_as_username = 1;
// The contents of the GMSA credential spec to use to run this container.
string credential_spec = 2;
// Indicates whether the container requested to run as a HostProcess container.
bool host_process = 3;
}
// WindowsPodSandboxConfig holds platform-specific configurations for Windows
// host platforms and Windows-based containers.
message WindowsPodSandboxConfig {
// WindowsSandboxSecurityContext holds sandbox security attributes.
WindowsSandboxSecurityContext security_context = 1;
}
// WindowsContainerSecurityContext holds windows security configuration that will be applied to a container.
message WindowsContainerSecurityContext {
// User name to run the container process as. If specified, the user MUST
@ -696,6 +721,9 @@ message WindowsContainerSecurityContext {
// The contents of the GMSA credential spec to use to run this container.
string credential_spec = 2;
// Indicates whether a container is to be run as a HostProcess container.
bool host_process = 3;
}
// WindowsContainerConfig contains platform-specific configuration for

File diff suppressed because it is too large Load Diff

View File

@ -392,6 +392,8 @@ message PodSandboxConfig {
map<string, string> annotations = 7;
// Optional configurations specific to Linux hosts.
LinuxPodSandboxConfig linux = 8;
// Optional configurations specific to Windows hosts.
WindowsPodSandboxConfig windows = 9;
}
message RunPodSandboxRequest {
@ -693,6 +695,29 @@ message LinuxContainerConfig {
LinuxContainerSecurityContext security_context = 2;
}
// WindowsSandboxSecurityContext holds platform-specific configurations that will be
// applied to a sandbox.
// These settings will only apply to the sandbox container.
message WindowsSandboxSecurityContext {
// User name to run the container process as. If specified, the user MUST
// exist in the container image and be resolved there by the runtime;
// otherwise, the runtime MUST return error.
string run_as_username = 1;
// The contents of the GMSA credential spec to use to run this container.
string credential_spec = 2;
// Indicates whether the container be asked to run as a HostProcess container.
bool host_process = 3;
}
// WindowsPodSandboxConfig holds platform-specific configurations for Windows
// host platforms and Windows-based containers.
message WindowsPodSandboxConfig {
// WindowsSandboxSecurityContext holds sandbox security attributes.
WindowsSandboxSecurityContext security_context = 1;
}
// WindowsContainerSecurityContext holds windows security configuration that will be applied to a container.
message WindowsContainerSecurityContext {
// User name to run the container process as. If specified, the user MUST
@ -702,6 +727,9 @@ message WindowsContainerSecurityContext {
// The contents of the GMSA credential spec to use to run this container.
string credential_spec = 2;
// Indicates whether a container is to be run as a HostProcess container.
bool host_process = 3;
}
// WindowsContainerConfig contains platform-specific configuration for

View File

@ -0,0 +1,96 @@
/*
Copyright 2021 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package windows
import (
"context"
"time"
"github.com/onsi/ginkgo"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
utilfeature "k8s.io/apiserver/pkg/util/feature"
"k8s.io/kubernetes/pkg/features"
"k8s.io/kubernetes/test/e2e/framework"
e2eskipper "k8s.io/kubernetes/test/e2e/framework/skipper"
imageutils "k8s.io/kubernetes/test/utils/image"
)
var _ = SIGDescribe("[Feature:WindowsHostProcessContainers] [Excluded:WindowsDocker] [MinimumKubeletVersion:1.22] HostProcess containers", func() {
ginkgo.BeforeEach(func() {
e2eskipper.SkipUnlessNodeOSDistroIs("windows")
SkipUnlessWindowsHostProcessContainersEnabled()
})
f := framework.NewDefaultFramework("host-process-test-windows")
ginkgo.It("should run as a process on the host/node", func() {
ginkgo.By("selecting a Windows node")
targetNode, err := findWindowsNode(f)
framework.ExpectNoError(err, "Error finding Windows node")
framework.Logf("Using node: %v", targetNode.Name)
ginkgo.By("scheduling a pod with a container that verifies %COMPUTERNAME% matches selected node name")
image := imageutils.GetConfig(imageutils.BusyBox)
trueVar := true
podName := "host-process-test-pod"
pod := &v1.Pod{
ObjectMeta: metav1.ObjectMeta{
Name: podName,
},
Spec: v1.PodSpec{
SecurityContext: &v1.PodSecurityContext{
WindowsOptions: &v1.WindowsSecurityContextOptions{
HostProcess: &trueVar,
},
},
HostNetwork: true,
Containers: []v1.Container{
{
Image: image.GetE2EImage(),
Name: "computer-name-test",
Command: []string{"cmd.exe", "/K", "IF", "NOT", "%COMPUTERNAME%", "==", targetNode.Name, "(", "exit", "-1", ")"},
},
},
RestartPolicy: v1.RestartPolicyNever,
NodeName: targetNode.Name,
},
}
f.PodClient().Create(pod)
ginkgo.By("Waiting for pod to run")
f.PodClient().WaitForFinish(podName, 3*time.Minute)
ginkgo.By("Then ensuring pod finished running successfully")
p, err := f.ClientSet.CoreV1().Pods(f.Namespace.Name).Get(
context.TODO(),
podName,
metav1.GetOptions{})
framework.ExpectNoError(err, "Error retrieving pod")
framework.ExpectEqual(p.Status.Phase, v1.PodSucceeded)
})
})
func SkipUnlessWindowsHostProcessContainersEnabled() {
if !utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers) {
e2eskipper.Skipf("Skipping test because feature 'WindowsHostProcessContainers' is not enabled")
}
}