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.", "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string" "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": { "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.", "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" "type": "string"

View File

@ -401,6 +401,7 @@ func GetValidationOptionsFromPodSpecAndMeta(podSpec, oldPodSpec *api.PodSpec, po
AllowInvalidPodDeletionCost: !utilfeature.DefaultFeatureGate.Enabled(features.PodDeletionCost), AllowInvalidPodDeletionCost: !utilfeature.DefaultFeatureGate.Enabled(features.PodDeletionCost),
// Do not allow pod spec to use non-integer multiple of huge page unit size default // Do not allow pod spec to use non-integer multiple of huge page unit size default
AllowIndivisibleHugePagesValues: false, AllowIndivisibleHugePagesValues: false,
AllowWindowsHostProcessField: utilfeature.DefaultFeatureGate.Enabled(features.WindowsHostProcessContainers),
} }
if oldPodSpec != nil { if oldPodSpec != nil {
@ -415,6 +416,8 @@ func GetValidationOptionsFromPodSpecAndMeta(podSpec, oldPodSpec *api.PodSpec, po
return !opts.AllowDownwardAPIHugePages 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 // if old spec used non-integer multiple of huge page unit size, we must allow it
opts.AllowIndivisibleHugePagesValues = usesIndivisibleHugePagesValues(oldPodSpec) opts.AllowIndivisibleHugePagesValues = usesIndivisibleHugePagesValues(oldPodSpec)
@ -944,3 +947,28 @@ func SeccompFieldForAnnotation(annotation string) *api.SeccompProfile {
// length or if the annotation has an unrecognized value // length or if the annotation has an unrecognized value
return nil 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. // PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional // +optional
RunAsUserName *string 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 // +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.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec)) out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName)) out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
out.HostProcess = (*bool)(unsafe.Pointer(in.HostProcess))
return nil return nil
} }
@ -8224,6 +8225,7 @@ func autoConvert_core_WindowsSecurityContextOptions_To_v1_WindowsSecurityContext
out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName)) out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec)) out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName)) out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
out.HostProcess = (*bool)(unsafe.Pointer(in.HostProcess))
return nil return nil
} }

View File

@ -3204,6 +3204,8 @@ type PodValidationOptions struct {
AllowInvalidPodDeletionCost bool AllowInvalidPodDeletionCost bool
// Allow pod spec to use non-integer multiple of huge page unit size // Allow pod spec to use non-integer multiple of huge page unit size
AllowIndivisibleHugePagesValues bool AllowIndivisibleHugePagesValues bool
// Allow hostProcess field to be set in windows security context
AllowWindowsHostProcessField bool
} }
// ValidatePodSingleHugePageResources checks if there are multiple huge // 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, validatePodDNSConfig(spec.DNSConfig, &spec.DNSPolicy, fldPath.Child("dnsConfig"))...)
allErrs = append(allErrs, validateReadinessGates(spec.ReadinessGates, fldPath.Child("readinessGates"))...) allErrs = append(allErrs, validateReadinessGates(spec.ReadinessGates, fldPath.Child("readinessGates"))...)
allErrs = append(allErrs, validateTopologySpreadConstraints(spec.TopologySpreadConstraints, fldPath.Child("topologySpreadConstraints"))...) allErrs = append(allErrs, validateTopologySpreadConstraints(spec.TopologySpreadConstraints, fldPath.Child("topologySpreadConstraints"))...)
allErrs = append(allErrs, validateWindowsHostProcessPod(spec, fldPath, opts)...)
if len(spec.ServiceAccountName) > 0 { if len(spec.ServiceAccountName) > 0 {
for _, msg := range ValidateServiceAccountName(spec.ServiceAccountName, false) { for _, msg := range ValidateServiceAccountName(spec.ServiceAccountName, false) {
allErrs = append(allErrs, field.Invalid(fldPath.Child("serviceAccountName"), spec.ServiceAccountName, msg)) allErrs = append(allErrs, field.Invalid(fldPath.Child("serviceAccountName"), spec.ServiceAccountName, msg))
@ -5974,6 +5977,91 @@ func validateWindowsSecurityContextOptions(windowsOptions *core.WindowsSecurityC
return allErrs 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 { func ValidatePodLogOptions(opts *core.PodLogOptions) field.ErrorList {
allErrs := field.ErrorList{} allErrs := field.ErrorList{}
if opts.TailLines != nil && *opts.TailLines < 0 { 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 = new(string)
**out = **in **out = **in
} }
if in.HostProcess != nil {
in, out := &in.HostProcess, &out.HostProcess
*out = new(bool)
**out = **in
}
return 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. // 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" CSIVolumeHealth featuregate.Feature = "CSIVolumeHealth"
// owner: @marosset
// alpha: v1.22
//
// Enables support for 'HostProcess' containers on Windows nodes.
WindowsHostProcessContainers featuregate.Feature = "WindowsHostProcessContainers"
) )
func init() { func init() {
@ -830,6 +836,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
KubeletPodResourcesGetAllocatable: {Default: false, PreRelease: featuregate.Alpha}, KubeletPodResourcesGetAllocatable: {Default: false, PreRelease: featuregate.Alpha},
NamespaceDefaultLabelName: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.24 NamespaceDefaultLabelName: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.24
CSIVolumeHealth: {Default: false, PreRelease: featuregate.Alpha}, 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 // inherited features from generic apiserver, relisted here to get a conflict if it is changed
// unintentionally on either side: // unintentionally on either side:

View File

@ -31,6 +31,7 @@ import (
"k8s.io/client-go/tools/record" "k8s.io/client-go/tools/record"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
podutil "k8s.io/kubernetes/pkg/api/v1/pod" podutil "k8s.io/kubernetes/pkg/api/v1/pod"
sc "k8s.io/kubernetes/pkg/securitycontext"
hashutil "k8s.io/kubernetes/pkg/util/hash" hashutil "k8s.io/kubernetes/pkg/util/hash"
"k8s.io/kubernetes/third_party/forked/golang/expansion" "k8s.io/kubernetes/third_party/forked/golang/expansion"
utilsnet "k8s.io/utils/net" utilsnet "k8s.io/utils/net"
@ -310,6 +311,34 @@ func HasPrivilegedContainer(pod *v1.Pod) bool {
return hasPrivileged 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. // MakePortMappings creates internal port mapping from api port mapping.
func MakePortMappings(container *v1.Container) (ports []PortMapping) { func MakePortMappings(container *v1.Container) (ports []PortMapping) {
names := make(map[string]struct{}) names := make(map[string]struct{})

View File

@ -19,14 +19,16 @@ limitations under the License.
package kuberuntime package kuberuntime
import ( import (
"fmt"
"runtime" "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" 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" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/securitycontext" "k8s.io/kubernetes/pkg/securitycontext"
"k8s.io/klog/v2"
) )
// applyPlatformSpecificContainerConfig applies platform specific configurations to runtimeapi.ContainerConfig. // applyPlatformSpecificContainerConfig applies platform specific configurations to runtimeapi.ContainerConfig.
@ -122,5 +124,12 @@ func (m *kubeGenericRuntimeManager) generateWindowsContainerConfig(container *v1
wc.SecurityContext.RunAsUsername = *effectiveSc.WindowsOptions.RunAsUserName 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 return wc, nil
} }

View File

@ -25,8 +25,10 @@ import (
v1 "k8s.io/api/core/v1" v1 "k8s.io/api/core/v1"
kubetypes "k8s.io/apimachinery/pkg/types" kubetypes "k8s.io/apimachinery/pkg/types"
utilfeature "k8s.io/apiserver/pkg/util/feature"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
"k8s.io/klog/v2" "k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/features"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/kubelet/types" "k8s.io/kubernetes/pkg/kubelet/types"
"k8s.io/kubernetes/pkg/kubelet/util" "k8s.io/kubernetes/pkg/kubelet/util"
@ -138,6 +140,14 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *v1.Pod, attemp
} }
podSandboxConfig.Linux = lc podSandboxConfig.Linux = lc
if runtime.GOOS == "windows" {
wc, err := m.generatePodSandboxWindowsConfig(pod)
if err != nil {
return nil, err
}
podSandboxConfig.Windows = wc
}
return podSandboxConfig, nil return podSandboxConfig, nil
} }
@ -206,6 +216,54 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxLinuxConfig(pod *v1.Pod) (
return lc, nil 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. // getKubeletSandboxes lists all (or just the running) sandboxes managed by kubelet.
func (m *kubeGenericRuntimeManager) getKubeletSandboxes(all bool) ([]*runtimeapi.PodSandbox, error) { func (m *kubeGenericRuntimeManager) getKubeletSandboxes(all bool) ([]*runtimeapi.PodSandbox, error) {
var filter *runtimeapi.PodSandboxFilter var filter *runtimeapi.PodSandboxFilter

View File

@ -17,6 +17,7 @@ limitations under the License.
package kuberuntime package kuberuntime
import ( import (
"fmt"
"os" "os"
"path/filepath" "path/filepath"
"testing" "testing"
@ -25,7 +26,10 @@ import (
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
v1 "k8s.io/api/core/v1" v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/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" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
"k8s.io/kubernetes/pkg/features"
containertest "k8s.io/kubernetes/pkg/kubelet/container/testing" containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
"k8s.io/kubernetes/pkg/kubelet/runtimeclass" "k8s.io/kubernetes/pkg/kubelet/runtimeclass"
rctest "k8s.io/kubernetes/pkg/kubelet/runtimeclass/testing" rctest "k8s.io/kubernetes/pkg/kubelet/runtimeclass/testing"
@ -172,3 +176,187 @@ func newSeccompPod(podFieldProfile, containerFieldProfile *v1.SeccompProfile, po
} }
return pod 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 ( import (
"encoding/json" "encoding/json"
"runtime"
"strconv" "strconv"
v1 "k8s.io/api/core/v1" v1 "k8s.io/api/core/v1"
kubetypes "k8s.io/apimachinery/pkg/types" kubetypes "k8s.io/apimachinery/pkg/types"
utilfeature "k8s.io/apiserver/pkg/util/feature"
"k8s.io/klog/v2" "k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/features"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/kubelet/types" "k8s.io/kubernetes/pkg/kubelet/types"
sc "k8s.io/kubernetes/pkg/securitycontext"
) )
const ( const (
@ -38,6 +42,12 @@ const (
containerTerminationMessagePolicyLabel = "io.kubernetes.container.terminationMessagePolicy" containerTerminationMessagePolicyLabel = "io.kubernetes.container.terminationMessagePolicy"
containerPreStopHandlerLabel = "io.kubernetes.container.preStopHandler" containerPreStopHandlerLabel = "io.kubernetes.container.preStopHandler"
containerPortsLabel = "io.kubernetes.container.ports" 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 { type labeledPodSandboxInfo struct {
@ -89,7 +99,23 @@ func newPodLabels(pod *v1.Pod) map[string]string {
// newPodAnnotations creates pod annotations from v1.Pod. // newPodAnnotations creates pod annotations from v1.Pod.
func newPodAnnotations(pod *v1.Pod) map[string]string { 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. // 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 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 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 // 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 // from the provided pod's and container's security context. Container's fields take precedence in cases where both
// are set // are set
@ -79,6 +93,9 @@ func DetermineEffectiveSecurityContext(pod *v1.Pod, container *v1.Container) *v1
if containerSc.WindowsOptions.RunAsUserName != nil { if containerSc.WindowsOptions.RunAsUserName != nil {
effectiveSc.WindowsOptions.RunAsUserName = containerSc.WindowsOptions.RunAsUserName effectiveSc.WindowsOptions.RunAsUserName = containerSc.WindowsOptions.RunAsUserName
} }
if containerSc.WindowsOptions.HostProcess != nil {
effectiveSc.WindowsOptions.HostProcess = containerSc.WindowsOptions.HostProcess
}
} }
if containerSc.Capabilities != nil { 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. // PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional // +optional
optional string runAsUserName = 3; 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. // PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional // +optional
RunAsUserName *string `json:"runAsUserName,omitempty" protobuf:"bytes,3,opt,name=runAsUserName"` 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 // +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.", "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.", "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.", "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 { func (WindowsSecurityContextOptions) SwaggerDoc() map[string]string {

View File

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

View File

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

View File

@ -31,8 +31,8 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 1467929320 minReadySeconds: 1559072561
revisionHistoryLimit: -1098193709 revisionHistoryLimit: -629510776
selector: selector:
matchExpressions: 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 - 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" selfLink: "29"
uid: TʡȂŏ{sǡƟ uid: TʡȂŏ{sǡƟ
spec: spec:
activeDeadlineSeconds: -1284119655860768065 activeDeadlineSeconds: -8925090445844634303
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "412" - key: "415"
operator: Mɮ6) operator: 襉{遠
values: values:
- "413" - "416"
matchFields: matchFields:
- key: "414" - key: "417"
operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾 operator: 诰ðÈ娒Ġ滔xvŗÑ"
values: values:
- "415" - "418"
weight: -1280563546 weight: 1690937616
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "408" - key: "411"
operator: UǷ坒 operator: Üɉ愂,wa纝佯fɞ
values: values:
- "409" - "412"
matchFields: matchFields:
- key: "410" - key: "413"
operator: "" operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣;
values: values:
- "411" - "414"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9 - key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: NotIn operator: In
values: values:
- f8k - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels: 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: namespaceSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "436" - "439"
topologyKey: "437" topologyKey: "440"
weight: -2118597352 weight: -947725955
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0
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
operator: DoesNotExist operator: DoesNotExist
matchLabels: 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: namespaces:
- "422" - "425"
topologyKey: "423" topologyKey: "426"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: x3___-..f5-6x-_-o_6O_If-5_-_U - key: 62o787-7lk2/L.--4P--_q-.9
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7 - key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8
operator: NotIn operator: In
values: values:
- 9-.66hcB.rTt7bm9I.-..q-n - x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels: 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: namespaces:
- "464" - "467"
topologyKey: "465" topologyKey: "468"
weight: 1943011795 weight: 1819321475
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs - key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1
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
operator: Exists operator: Exists
matchLabels: 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: namespaces:
- "450" - "453"
topologyKey: "451" topologyKey: "454"
automountServiceAccountToken: true automountServiceAccountToken: true
containers: containers:
- args: - args:
@ -307,11 +303,11 @@ spec:
drop: drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹 - 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false privileged: false
procMount: ʙcx procMount: cx赮ǒđ>*劶?j
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240 runAsGroup: -6292316479661489180
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4369716065827112267 runAsUser: -1286199491017539507
seLinuxOptions: seLinuxOptions:
level: "316" level: "316"
role: "314" role: "314"
@ -319,10 +315,11 @@ spec:
user: "313" user: "313"
seccompProfile: seccompProfile:
localhostProfile: "320" localhostProfile: "320"
type: ǒđ>*劶?jĎĭ type: ĭ¥#ƱÁR
windowsOptions: windowsOptions:
gmsaCredentialSpec: "318" gmsaCredentialSpec: "318"
gmsaCredentialSpecName: "317" gmsaCredentialSpecName: "317"
hostProcess: true
runAsUserName: "319" runAsUserName: "319"
startupProbe: startupProbe:
exec: exec:
@ -345,8 +342,10 @@ spec:
port: -1894647727 port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738 terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594 timeoutSeconds: 564558594
stdin: true
terminationMessagePath: "312" terminationMessagePath: "312"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
tty: true
volumeDevices: volumeDevices:
- devicePath: "275" - devicePath: "275"
name: "274" name: "274"
@ -360,13 +359,13 @@ spec:
workingDir: "254" workingDir: "254"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "478" - "481"
options: options:
- name: "480" - name: "483"
value: "481" value: "484"
searches: searches:
- "479" - "482"
dnsPolicy: 錏嬮#ʐ dnsPolicy: q沷¾!
enableServiceLinks: false enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
@ -380,13 +379,13 @@ spec:
configMapKeyRef: configMapKeyRef:
key: "338" key: "338"
name: "337" name: "337"
optional: true optional: false
fieldRef: fieldRef:
apiVersion: "333" apiVersion: "333"
fieldPath: "334" fieldPath: "334"
resourceFieldRef: resourceFieldRef:
containerName: "335" containerName: "335"
divisor: "684" divisor: "473"
resource: "336" resource: "336"
secretKeyRef: secretKeyRef:
key: "340" key: "340"
@ -399,165 +398,164 @@ spec:
prefix: "328" prefix: "328"
secretRef: secretRef:
name: "330" name: "330"
optional: true optional: false
image: "322" image: "322"
imagePullPolicy: ɧeʫį淓¯ imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "367" - "368"
httpGet: httpGet:
host: "369" host: "370"
httpHeaders: httpHeaders:
- name: "370" - name: "371"
value: "371" value: "372"
path: "368" path: "369"
port: -1460652193 port: 1176168596
scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ? scheme: 轪d覉;Ĕ
tcpSocket: tcpSocket:
host: "373" host: "374"
port: "372" port: "373"
preStop: preStop:
exec: exec:
command: command:
- "374" - "375"
httpGet: httpGet:
host: "376" host: "378"
httpHeaders: httpHeaders:
- name: "377" - name: "379"
value: "378" value: "380"
path: "375" path: "376"
port: 71524977 port: "377"
scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷 scheme: ʦŊĊ娮
tcpSocket: tcpSocket:
host: "379" host: "382"
port: -565041796 port: "381"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "347" - "347"
failureThreshold: 1587036035 failureThreshold: 1566765016
httpGet: httpGet:
host: "349" host: "349"
httpHeaders: httpHeaders:
- name: "350" - name: "350"
value: "351" value: "351"
path: "348" path: "348"
port: -121675052 port: 1034835933
scheme: W#ļǹʅŚO虀^ scheme: O虀^背遻堣灭ƴɦ燻踸陴
initialDelaySeconds: -1959891996 initialDelaySeconds: 650448405
periodSeconds: 1475033091 periodSeconds: -168773629
successThreshold: 1782790310 successThreshold: 2068592383
tcpSocket: tcpSocket:
host: "353" host: "352"
port: "352" port: -1744546613
terminationGracePeriodSeconds: 7560036535013464461 terminationGracePeriodSeconds: -1112599546012453731
timeoutSeconds: -1442230895 timeoutSeconds: 1943254244
name: "321" name: "321"
ports: ports:
- containerPort: -651405950 - containerPort: -1371690155
hostIP: "327" hostIP: "327"
hostPort: 1805682547 hostPort: 2032588794
name: "326" name: "326"
protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07 protocol: G昧牱fsǕT衩kƒK07曳wœj堑
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "354" - "353"
failureThreshold: 408029351 failureThreshold: 902204699
httpGet: httpGet:
host: "356" host: "356"
httpHeaders: httpHeaders:
- name: "357" - name: "357"
value: "358" value: "358"
path: "355" path: "354"
port: -1744546613 port: "355"
scheme: ʓɻŊ scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
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'
initialDelaySeconds: 636493142 initialDelaySeconds: 636493142
periodSeconds: 420595064 periodSeconds: 420595064
successThreshold: 1195176401 successThreshold: 1195176401
tcpSocket: tcpSocket:
host: "366" host: "360"
port: "365" port: "359"
terminationGracePeriodSeconds: 9196919020604133323 terminationGracePeriodSeconds: 9196919020604133323
timeoutSeconds: -192358697 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 stdin: true
targetContainerName: "389" stdinOnce: true
terminationMessagePath: "380" targetContainerName: "392"
terminationMessagePolicy: Ƭ婦d terminationMessagePath: "383"
tty: true terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ
volumeDevices: volumeDevices:
- devicePath: "346" - devicePath: "346"
name: "345" name: "345"
volumeMounts: volumeMounts:
- mountPath: "342" - mountPath: "342"
mountPropagation: 葰賦 mountPropagation: 讅缔m葰賦迾娙ƴ4虵p
name: "341" name: "341"
readOnly: true
subPath: "343" subPath: "343"
subPathExpr: "344" subPathExpr: "344"
workingDir: "325" workingDir: "325"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "476" - "479"
ip: "475" ip: "478"
hostIPC: true hostIPC: true
hostPID: true hostname: "409"
hostname: "406"
imagePullSecrets: imagePullSecrets:
- name: "405" - name: "408"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -685,11 +683,11 @@ spec:
drop: drop:
- H鯂²静ƲǦŐnj汰8ŕİi騎C"6 - H鯂²静ƲǦŐnj汰8ŕİi騎C"6
privileged: false privileged: false
procMount: ȹ均i绝5哇芆斩ìh4Ɋ procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6901713258562004024 runAsGroup: 4041264710404335706
runAsNonRoot: true runAsNonRoot: false
runAsUser: 9148233193771851687 runAsUser: -7299434051955863644
seLinuxOptions: seLinuxOptions:
level: "245" level: "245"
role: "243" role: "243"
@ -701,6 +699,7 @@ spec:
windowsOptions: windowsOptions:
gmsaCredentialSpec: "247" gmsaCredentialSpec: "247"
gmsaCredentialSpecName: "246" gmsaCredentialSpecName: "246"
hostProcess: true
runAsUserName: "248" runAsUserName: "248"
startupProbe: startupProbe:
exec: exec:
@ -735,64 +734,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "394" nodeName: "397"
nodeSelector: nodeSelector:
"390": "391" "393": "394"
overhead: overhead:
"": "359" D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: "" preemptionPolicy: Iƭij韺ʧ>
priority: -860768401 priority: 743241089
priorityClassName: "477" priorityClassName: "480"
readinessGates: readinessGates:
- conditionType: '@.ȇʟ' - conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: 鹚蝉茲ʛ饊 restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
runtimeClassName: "482" runtimeClassName: "485"
schedulerName: "472" schedulerName: "475"
securityContext: securityContext:
fsGroup: -1867959832193971598 fsGroup: 3564097949592109139
fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾! fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6
runAsGroup: 6465579957265382985 runAsGroup: 2960114664726223450
runAsNonRoot: false runAsNonRoot: false
runAsUser: -4904722847506013622 runAsUser: -3496040522639830925
seLinuxOptions: seLinuxOptions:
level: "398" level: "401"
role: "396" role: "399"
type: "397" type: "400"
user: "395" user: "398"
seccompProfile: seccompProfile:
localhostProfile: "404" localhostProfile: "407"
type: '`翾''ųŎ群E牬庘颮6(|ǖû' type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ
supplementalGroups: supplementalGroups:
- -981432507446869083 - 2402603282459663167
sysctls: sysctls:
- name: "402" - name: "405"
value: "403" value: "406"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "400" gmsaCredentialSpec: "403"
gmsaCredentialSpecName: "399" gmsaCredentialSpecName: "402"
runAsUserName: "401" hostProcess: true
serviceAccount: "393" runAsUserName: "404"
serviceAccountName: "392" serviceAccount: "396"
serviceAccountName: "395"
setHostnameAsFQDN: true setHostnameAsFQDN: true
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "407" subdomain: "410"
terminationGracePeriodSeconds: 1736985756995615785 terminationGracePeriodSeconds: 3296766428578159624
tolerations: tolerations:
- effect: ɮ-nʣž吞Ƞ唄®窂爪 - effect: '慰x:'
key: "473" key: "476"
operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ] operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: -5154627301352060136 tolerationSeconds: 3362400521064014157
value: "474" value: "477"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
operator: Exists operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
matchLabels: 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
maxSkew: -2013945465 maxSkew: -174245111
topologyKey: "483" topologyKey: "486"
whenUnsatisfiable: '½ǩ ' whenUnsatisfiable: ""
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1049,20 +1051,20 @@ spec:
rollingUpdate: rollingUpdate:
maxSurge: 3 maxSurge: 3
maxUnavailable: 2 maxUnavailable: 2
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
status: status:
collisionCount: 1177227691 collisionCount: 1714841371
conditions: conditions:
- lastTransitionTime: "2205-11-05T22:21:51Z" - lastTransitionTime: "2124-10-20T09:17:54Z"
message: "491" message: "494"
reason: "490" reason: "493"
status: 盧ŶbșʬÇ[輚趞 status: ""
type: ôD齆O#ȞM<²彾Ǟʈɐ type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ
currentNumberScheduled: 2090664533 currentNumberScheduled: -69450448
desiredNumberScheduled: 1219820375 desiredNumberScheduled: 17761427
numberAvailable: 16994744 numberAvailable: 171558604
numberMisscheduled: -1371816595 numberMisscheduled: -212409426
numberReady: -788475912 numberReady: 1329525670
numberUnavailable: 340429479 numberUnavailable: -161888815
observedGeneration: 6637463221525448952 observedGeneration: -721999650192865404
updatedNumberScheduled: -1684048223 updatedNumberScheduled: 1162680985

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -73,116 +73,112 @@ spec:
selfLink: "29" selfLink: "29"
uid: ʬ uid: ʬ
spec: spec:
activeDeadlineSeconds: 579099652389333099 activeDeadlineSeconds: 3305070661619041050
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "408" - key: "407"
operator: 霎ȃň operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values: values:
- "409" - "408"
matchFields: matchFields:
- key: "410" - key: "409"
operator: ʓ滨 operator: '[y#t('
values: values:
- "411" - "410"
weight: -259047269 weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "404" - key: "403"
operator: 灭ƴɦ燻踸陴Sĕ operator: ʓɻŊ0蚢鑸鶲Ãqb轫
values: values:
- "405" - "404"
matchFields: matchFields:
- key: "406" - key: "405"
operator: 筿ɾ operator: ' '
values: values:
- "407" - "406"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: Q_--v-3-BzO5z80n_HtW - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
operator: NotIn operator: Exists
values:
- 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
operator: In operator: DoesNotExist
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
matchLabels: 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 Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
: P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA
namespaces: namespaces:
- "432" - "431"
topologyKey: "433" topologyKey: "432"
weight: 2001693468 weight: -234140
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 3QC1--L--v_Z--ZgC - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: Exists operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: 7Vz_6.Hz_V_.r_v_._X - 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: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "418" - "417"
topologyKey: "419" topologyKey: "418"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8v---a9j23/9 - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
operator: In operator: DoesNotExist
values:
- y__y.9O.L-.m.3h
matchLabels: 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: namespaceSelector:
matchExpressions: 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 - 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: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "460" - "459"
topologyKey: "461" topologyKey: "460"
weight: 1920802622 weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: T - 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: 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
operator: In operator: In
values: 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: 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: namespaces:
- "446" - "445"
topologyKey: "447" topologyKey: "446"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "249" - "249"
@ -201,7 +197,7 @@ spec:
fieldPath: "259" fieldPath: "259"
resourceFieldRef: resourceFieldRef:
containerName: "260" containerName: "260"
divisor: "9" divisor: "861"
resource: "261" resource: "261"
secretKeyRef: secretKeyRef:
key: "265" key: "265"
@ -214,196 +210,197 @@ spec:
prefix: "253" prefix: "253"
secretRef: secretRef:
name: "255" name: "255"
optional: true optional: false
image: "247" image: "247"
imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭 imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "291" - "293"
httpGet: httpGet:
host: "294" host: "295"
httpHeaders: httpHeaders:
- name: "295" - name: "296"
value: "296" value: "297"
path: "292" path: "294"
port: "293" port: -1699531929
scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 scheme: Z涬P­蜷ɔ幩šeS
tcpSocket: tcpSocket:
host: "297" host: "298"
port: 1167615307 port: 155090390
preStop: preStop:
exec: exec:
command: command:
- "298" - "299"
httpGet: httpGet:
host: "300" host: "302"
httpHeaders: httpHeaders:
- name: "301" - name: "303"
value: "302" value: "304"
path: "299" path: "300"
port: -115833863 port: "301"
scheme: ì
tcpSocket: tcpSocket:
host: "304" host: "305"
port: "303" port: -727263154
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "272" - "272"
failureThreshold: -1129218498 failureThreshold: 472742933
httpGet: httpGet:
host: "274" host: "275"
httpHeaders: httpHeaders:
- name: "275" - name: "276"
value: "276" value: "277"
path: "273" path: "273"
port: -1468297794 port: "274"
scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ scheme: 冓鍓贯
initialDelaySeconds: 1308698792 initialDelaySeconds: 1290950685
periodSeconds: -934378634 periodSeconds: 1058960779
successThreshold: -1453143878 successThreshold: -2133441986
tcpSocket: tcpSocket:
host: "278" host: "279"
port: "277" port: "278"
terminationGracePeriodSeconds: 2471155705902100229 terminationGracePeriodSeconds: 217739466937954194
timeoutSeconds: 1401790459 timeoutSeconds: 12533543
name: "246" name: "246"
ports: ports:
- containerPort: -1784617397 - containerPort: -614161319
hostIP: "252" hostIP: "252"
hostPort: 465972736 hostPort: 59244165
name: "251" name: "251"
protocol: Ƭƶ氩Ȩ<6 protocol: Ȩ<6鄰簳°Ļǟi&
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "279" - "280"
failureThreshold: 323903711 failureThreshold: 1843491416
httpGet: httpGet:
host: "281" host: "282"
httpHeaders: httpHeaders:
- name: "282" - name: "283"
value: "283" value: "284"
path: "280" path: "281"
port: -614098868 port: 1401790459
scheme: ȗÔÂɘɢ scheme: ǵɐ鰥Z
initialDelaySeconds: -942399354 initialDelaySeconds: -614098868
periodSeconds: -1803854120 periodSeconds: 846286700
successThreshold: -1412915219 successThreshold: 1080545253
tcpSocket: tcpSocket:
host: "284" host: "285"
port: 802134138 port: -1103045151
terminationGracePeriodSeconds: -9192251189672401053 terminationGracePeriodSeconds: -5175286970144973961
timeoutSeconds: 1264624019 timeoutSeconds: 234253676
resources: resources:
limits: limits:
lNKƙ順\E¦队偯J僳徥淳: "93" ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178"
requests: requests:
媀瓄&翜舞拉Œɥ颶妧Ö闊: "472" Ö闊 鰔澝qV: "752"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ņ
drop:
- )DŽ髐njʉBn(fǂ - )DŽ髐njʉBn(fǂ
drop:
- 曣ŋayåe躒訙
privileged: false privileged: false
procMount: Ǫʓ)ǂť嗆u procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: -495558749504439559 runAsGroup: 6245571390016329382
runAsNonRoot: false runAsNonRoot: true
runAsUser: -6717020695319852049 runAsUser: 1083662227773909466
seLinuxOptions: seLinuxOptions:
level: "309" level: "310"
role: "307" role: "308"
type: "308" type: "309"
user: "306" user: "307"
seccompProfile: seccompProfile:
localhostProfile: "313" localhostProfile: "314"
type: 晲T[irȎ3Ĕ\ type: '|蕎''佉賞ǧ'
windowsOptions: windowsOptions:
gmsaCredentialSpec: "311" gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "310" gmsaCredentialSpecName: "311"
runAsUserName: "312" hostProcess: true
runAsUserName: "313"
startupProbe: startupProbe:
exec: exec:
command: command:
- "285" - "286"
failureThreshold: 1658749995 failureThreshold: -793616601
httpGet: httpGet:
host: "287" host: "289"
httpHeaders: httpHeaders:
- name: "288" - name: "290"
value: "289" value: "291"
path: "286" path: "287"
port: -992558278 port: "288"
scheme: 鯂²静 scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj
initialDelaySeconds: -181601395 initialDelaySeconds: 1658749995
periodSeconds: 1851229369 periodSeconds: 809683205
successThreshold: -560238386 successThreshold: -1615316902
tcpSocket: tcpSocket:
host: "290" host: "292"
port: -402384013 port: -560238386
terminationGracePeriodSeconds: -4030490994049395944 terminationGracePeriodSeconds: -2242897509815578930
timeoutSeconds: -617381112 timeoutSeconds: -938421813
terminationMessagePath: "305" stdin: true
terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ terminationMessagePath: "306"
tty: true terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4
volumeDevices: volumeDevices:
- devicePath: "271" - devicePath: "271"
name: "270" name: "270"
volumeMounts: volumeMounts:
- mountPath: "267" - mountPath: "267"
mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃 mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "266" name: "266"
readOnly: true
subPath: "268" subPath: "268"
subPathExpr: "269" subPathExpr: "269"
workingDir: "250" workingDir: "250"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "474" - "473"
options: options:
- name: "476" - name: "475"
value: "477" value: "476"
searches: searches:
- "475" - "474"
dnsPolicy: '''蠨磼O_h盌3+Œ9两@8' dnsPolicy: +Œ9两
enableServiceLinks: false enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "317" - "318"
command: command:
- "316" - "317"
env: env:
- name: "324" - name: "325"
value: "325" value: "326"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "331" key: "332"
name: "330" name: "331"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "326" apiVersion: "327"
fieldPath: "327" fieldPath: "328"
resourceFieldRef: resourceFieldRef:
containerName: "328" containerName: "329"
divisor: "69" divisor: "992"
resource: "329" resource: "330"
secretKeyRef: secretKeyRef:
key: "333" key: "334"
name: "332" name: "333"
optional: false optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323" name: "323"
optional: false optional: true
image: "315" prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: ǰ詀ǿ忀oɎƺL imagePullPolicy: ǰ詀ǿ忀oɎƺL
lifecycle: lifecycle:
postStart: postStart:
@ -411,85 +408,85 @@ spec:
command: command:
- "361" - "361"
httpGet: httpGet:
host: "364" host: "363"
httpHeaders: httpHeaders:
- name: "365" - name: "364"
value: "366" value: "365"
path: "362" path: "362"
port: "363" port: 1445923603
scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$# scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q
tcpSocket: tcpSocket:
host: "368" host: "367"
port: "367" port: "366"
preStop: preStop:
exec: exec:
command: command:
- "369" - "368"
httpGet: httpGet:
host: "371" host: "371"
httpHeaders: httpHeaders:
- name: "372" - name: "372"
value: "373" value: "373"
path: "370" path: "369"
port: 1791758702 port: "370"
scheme: tl敷斢杧ż鯀 scheme: 杧ż鯀1'
tcpSocket: tcpSocket:
host: "375" host: "374"
port: "374" port: 1297979953
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "340" - "341"
failureThreshold: -36573584 failureThreshold: 2046765799
httpGet: httpGet:
host: "343" host: "343"
httpHeaders: httpHeaders:
- name: "344" - name: "344"
value: "345" value: "345"
path: "341" path: "342"
port: "342" port: 1529027685
scheme: ȥ}礤铟怖ý萜Ǖ scheme: żLj捲攻xƂ9阠$嬏wy¶熀
initialDelaySeconds: -1922458514 initialDelaySeconds: -2106399359
periodSeconds: 692511776 periodSeconds: -1038975198
successThreshold: -1231653807 successThreshold: 1821835340
tcpSocket: tcpSocket:
host: "346" host: "346"
port: -1088996269 port: -1912967242
terminationGracePeriodSeconds: -2524837786321986358 terminationGracePeriodSeconds: -6946775447206795219
timeoutSeconds: 1480364858 timeoutSeconds: 1443270783
name: "314" name: "315"
ports: ports:
- containerPort: -1918622971 - containerPort: -1842062977
hostIP: "320" hostIP: "321"
hostPort: -1656699070 hostPort: -1920304485
name: "319" name: "320"
protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz protocol: 輔3璾ėȜv1b繐汚磉反-n覦
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "347" - "347"
failureThreshold: 1443270783 failureThreshold: 1671084780
httpGet: httpGet:
host: "349" host: "350"
httpHeaders: httpHeaders:
- name: "350" - name: "351"
value: "351" value: "352"
path: "348" path: "348"
port: 1219644543 port: "349"
scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy scheme: Ƒ[澔
initialDelaySeconds: 652646450 initialDelaySeconds: -952255430
periodSeconds: -1912967242 periodSeconds: -824007302
successThreshold: -2106399359 successThreshold: -359713104
tcpSocket: tcpSocket:
host: "353" host: "353"
port: "352" port: 1288391156
terminationGracePeriodSeconds: -4462364494060795190 terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 757223010 timeoutSeconds: 1568034275
resources: resources:
limits: limits:
1b: "328" ʨIk(dŊiɢzĮ蛋I滞: "394"
requests: requests:
'}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699" ɞȥ}礤铟怖ý萜Ǖ: "305"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
@ -498,68 +495,68 @@ spec:
drop: drop:
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true privileged: true
procMount: s44矕Ƈè*鑏= procMount: s44矕Ƈè
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -1232960403847883886 runAsGroup: 73764735411458498
runAsNonRoot: true runAsNonRoot: false
runAsUser: 2114633499332155907 runAsUser: 4224635496843945227
seLinuxOptions: seLinuxOptions:
level: "380" level: "379"
role: "378" role: "377"
type: "379" type: "378"
user: "377" user: "376"
seccompProfile: seccompProfile:
localhostProfile: "384" localhostProfile: "383"
type: ʨ|ǓÓ敆OɈÏ 瞍髃# type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions: windowsOptions:
gmsaCredentialSpec: "382" gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "381" gmsaCredentialSpecName: "380"
runAsUserName: "383" hostProcess: true
runAsUserName: "382"
startupProbe: startupProbe:
exec: exec:
command: command:
- "354" - "354"
failureThreshold: 64459150 failureThreshold: -1031303729
httpGet: httpGet:
host: "356" host: "356"
httpHeaders: httpHeaders:
- name: "357" - name: "357"
value: "358" value: "358"
path: "355" path: "355"
port: -902839620 port: -514169648
scheme: 縆łƑ[澔槃JŵǤ桒ɴ鉂W scheme: '&疀'
initialDelaySeconds: -574742201 initialDelaySeconds: -39292476
periodSeconds: -514169648 periodSeconds: -1312249623
successThreshold: -1186167291 successThreshold: -1089435479
tcpSocket: tcpSocket:
host: "360" host: "360"
port: "359" port: "359"
terminationGracePeriodSeconds: -4166164136222066963 terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: -1182912186 timeoutSeconds: 801902541
stdin: true targetContainerName: "384"
targetContainerName: "385" terminationMessagePath: "375"
terminationMessagePath: "376" terminationMessagePolicy: ǘ炙
terminationMessagePolicy: 鸔ɧWǘ炙
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "339" - devicePath: "340"
name: "338" name: "339"
volumeMounts: volumeMounts:
- mountPath: "335" - mountPath: "336"
mountPropagation: Ik(dŊiɢzĮ蛋I mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m
name: "334" name: "335"
readOnly: true readOnly: true
subPath: "336" subPath: "337"
subPathExpr: "337" subPathExpr: "338"
workingDir: "318" workingDir: "319"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "472" - "471"
ip: "471" ip: "470"
hostNetwork: true hostPID: true
hostname: "402" hostname: "401"
imagePullSecrets: imagePullSecrets:
- name: "401" - name: "400"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -687,11 +684,11 @@ spec:
drop: drop:
- W:ĸ輦唊#v - W:ĸ輦唊#v
privileged: false privileged: false
procMount: Ÿ8T 苧yñKJɐ扵 procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 8839567045362091290 runAsGroup: -1629447906545846003
runAsNonRoot: true runAsNonRoot: true
runAsUser: 1946087648860511217 runAsUser: 7510677649797968740
seLinuxOptions: seLinuxOptions:
level: "241" level: "241"
role: "239" role: "239"
@ -699,10 +696,11 @@ spec:
user: "238" user: "238"
seccompProfile: seccompProfile:
localhostProfile: "245" localhostProfile: "245"
type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 type: 腩墺Ò媁荭gw忊|E剒蔞|表徶
windowsOptions: windowsOptions:
gmsaCredentialSpec: "243" gmsaCredentialSpec: "243"
gmsaCredentialSpecName: "242" gmsaCredentialSpecName: "242"
hostProcess: true
runAsUserName: "244" runAsUserName: "244"
startupProbe: startupProbe:
exec: exec:
@ -728,7 +726,6 @@ spec:
stdin: true stdin: true
terminationMessagePath: "237" terminationMessagePath: "237"
terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
tty: true
volumeDevices: volumeDevices:
- devicePath: "203" - devicePath: "203"
name: "202" name: "202"
@ -740,66 +737,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "390" nodeName: "389"
nodeSelector: nodeSelector:
"386": "387" "385": "386"
overhead: overhead:
»Š: "727" D輷: "792"
preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 1188651641 priority: 347613368
priorityClassName: "473" priorityClassName: "472"
readinessGates: readinessGates:
- conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: W歹s梊ɥʋăƻ restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "478" runtimeClassName: "477"
schedulerName: "468" schedulerName: "467"
securityContext: securityContext:
fsGroup: -8322686588708543096 fsGroup: -3964669311891901178
fsGroupChangePolicy: 4虵p蓋沥7uPƒ fsGroupChangePolicy: ƴ4虵p
runAsGroup: -2549376519991319825 runAsGroup: 3230705132538051674
runAsNonRoot: true runAsNonRoot: true
runAsUser: 3011215457607075123 runAsUser: 3438266910774132295
seLinuxOptions: seLinuxOptions:
level: "394" level: "393"
role: "392" role: "391"
type: "393" type: "392"
user: "391" user: "390"
seccompProfile: seccompProfile:
localhostProfile: "400" localhostProfile: "399"
type: "" type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups: supplementalGroups:
- 8667724420266764868 - -1600417733583164525
sysctls: sysctls:
- name: "398" - name: "397"
value: "399" value: "398"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "396" gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "395" gmsaCredentialSpecName: "394"
runAsUserName: "397" hostProcess: false
serviceAccount: "389" runAsUserName: "396"
serviceAccountName: "388" serviceAccount: "388"
serviceAccountName: "387"
setHostnameAsFQDN: false setHostnameAsFQDN: false
shareProcessNamespace: true shareProcessNamespace: true
subdomain: "403" subdomain: "402"
terminationGracePeriodSeconds: 1031455728822209328 terminationGracePeriodSeconds: -8335674866227004872
tolerations: tolerations:
- effect: ;牆詒ĸąsƶ - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "469" key: "468"
operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: -456102350746071856 tolerationSeconds: 3252034671163905138
value: "470" value: "469"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: br..1.--S-w-5_..D.pz_-ad - 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: In operator: NotIn
values: values:
- Q.__y644 - h.v._5.vB-.-7-.6Jv-86___3
matchLabels: 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 n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -388643187 maxSkew: -484382570
topologyKey: "479" topologyKey: "478"
whenUnsatisfiable: i僠噚恗N whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1051,14 +1049,14 @@ spec:
storagePolicyName: "105" storagePolicyName: "105"
volumePath: "103" volumePath: "103"
status: status:
availableReplicas: 876226690 availableReplicas: -2060941196
conditions: conditions:
- lastTransitionTime: "2951-06-01T06:00:17Z" - lastTransitionTime: "2597-11-21T15:14:16Z"
message: "487" message: "486"
reason: "486" reason: "485"
status: '%ÿ¼璤ňɈȀę' status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎
type: C`牯雫 type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN
fullyLabeledReplicas: 516555648 fullyLabeledReplicas: 415168801
observedGeneration: 1436288218546692842 observedGeneration: 7426283174216567769
readyReplicas: 2104777337 readyReplicas: 1448332644
replicas: -2095627603 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" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 1559072561 minReadySeconds: -212999359
progressDeadlineSeconds: 349353563 paused: true
progressDeadlineSeconds: -1491990975
replicas: 896585016 replicas: 896585016
revisionHistoryLimit: -629510776 revisionHistoryLimit: -866496758
rollbackTo: rollbackTo:
revision: -8285752436940414034 revision: 5409045697701816557
selector: selector:
matchExpressions: matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99 - key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@ -47,7 +48,7 @@ spec:
rollingUpdate: rollingUpdate:
maxSurge: 3 maxSurge: 3
maxUnavailable: 2 maxUnavailable: 2
type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d& type: 卍睊
template: template:
metadata: metadata:
annotations: annotations:
@ -80,114 +81,108 @@ spec:
selfLink: "29" selfLink: "29"
uid: ?Qȫş uid: ?Qȫş
spec: spec:
activeDeadlineSeconds: -5891364351877125204 activeDeadlineSeconds: 5204116807884683873
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "410"
operator: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW
values:
- "411"
matchFields:
- key: "412"
operator: 顓闉ȦT
values:
- "413"
weight: 1762917570
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "406" - key: "406"
operator: "" operator: ='ʨ|ǓÓ敆OɈÏ 瞍髃
values: values:
- "407" - "407"
matchFields: matchFields:
- key: "408" - key: "408"
operator: ɦ燻踸陴Sĕ濦ʓɻ operator: ƒK07曳w
values: values:
- "409" - "409"
weight: 1805682547
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "402"
operator: ""
values:
- "403"
matchFields:
- key: "404"
operator: ɸĻo:{柯?B俋¬h`職铳s44矕Ƈ
values:
- "405"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: 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 - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/Jm...Cr
operator: In operator: DoesNotExist
values:
- H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
matchLabels: 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: namespaceSelector:
matchExpressions: 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 - key: C-_20
operator: In operator: Exists
values:
- 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
matchLabels: 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: namespaces:
- "434" - "430"
topologyKey: "435" topologyKey: "431"
weight: 888976270 weight: -450654683
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33 - key: 67F3p2_-_AmD-.0P
operator: NotIn operator: DoesNotExist
values:
- 4__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
matchLabels: 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: namespaceSelector:
matchExpressions: 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 operator: Exists
matchLabels: matchLabels:
4eq5: "" 6--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-w: d-5X1rh-K5y_AzOBW.9oE9_6.--v1r
namespaces: namespaces:
- "420" - "416"
topologyKey: "421" topologyKey: "417"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 6W74-R_Z_Tz.a3_Ho - 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: Exists operator: NotIn
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV - 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: In operator: DoesNotExist
values:
- x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels: 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: namespaces:
- "462" - "458"
topologyKey: "463" topologyKey: "459"
weight: -1668452490 weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8 - key: 4b699/B9n.2
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
operator: In operator: In
values: values:
- V._qN__A_f_-B3_U__L.KH6K.RwsfI2 - MM7-.e.x
matchLabels: 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: namespaces:
- "448" - "444"
topologyKey: "449" topologyKey: "445"
automountServiceAccountToken: true automountServiceAccountToken: true
containers: containers:
- args: - args:
@ -201,372 +196,372 @@ spec:
configMapKeyRef: configMapKeyRef:
key: "262" key: "262"
name: "261" name: "261"
optional: true optional: false
fieldRef: fieldRef:
apiVersion: "257" apiVersion: "257"
fieldPath: "258" fieldPath: "258"
resourceFieldRef: resourceFieldRef:
containerName: "259" containerName: "259"
divisor: "185" divisor: "271"
resource: "260" resource: "260"
secretKeyRef: secretKeyRef:
key: "264" key: "264"
name: "263" name: "263"
optional: false optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "253" name: "253"
optional: false optional: true
prefix: "252" prefix: "252"
secretRef: secretRef:
name: "254" name: "254"
optional: false optional: false
image: "246" image: "246"
imagePullPolicy: i绝5哇芆斩 imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "292" - "291"
httpGet: httpGet:
host: "295" host: "293"
httpHeaders: httpHeaders:
- name: "296" - name: "294"
value: "297" value: "295"
path: "293" path: "292"
port: "294" port: -1021949447
scheme: 鯂²静 scheme: B芭
tcpSocket: tcpSocket:
host: "298" host: "297"
port: -402384013 port: "296"
preStop: preStop:
exec: exec:
command: command:
- "299" - "298"
httpGet: httpGet:
host: "302" host: "301"
httpHeaders: httpHeaders:
- name: "303" - name: "302"
value: "304" value: "303"
path: "300" path: "299"
port: "301" port: "300"
scheme: 鏻砅邻爥 scheme: yƕ丆録²Ŏ)
tcpSocket: tcpSocket:
host: "305" host: "304"
port: -305362540 port: 507384491
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "271" - "271"
failureThreshold: 1993268896 failureThreshold: 1156888068
httpGet: httpGet:
host: "274" host: "273"
httpHeaders: httpHeaders:
- name: "275" - name: "274"
value: "276" value: "275"
path: "272" path: "272"
port: "273" port: 1907998540
scheme: scheme: ',ŕ'
initialDelaySeconds: 711020087 initialDelaySeconds: -253326525
periodSeconds: -1965247100 periodSeconds: 887319241
successThreshold: 218453478 successThreshold: 1559618829
tcpSocket: tcpSocket:
host: "277" host: "277"
port: 1315054653 port: "276"
terminationGracePeriodSeconds: -9140155223242250138 terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 1103049140 timeoutSeconds: 567263590
name: "245" name: "245"
ports: ports:
- containerPort: -370386363 - containerPort: 1714588921
hostIP: "251" hostIP: "251"
hostPort: -1462219068 hostPort: -370386363
name: "250" name: "250"
protocol: wƯ貾坢'跩aŕ翑0展} protocol: Ư貾
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "278" - "278"
failureThreshold: 1456461851 failureThreshold: 422133388
httpGet: httpGet:
host: "280" host: "280"
httpHeaders: httpHeaders:
- name: "281" - name: "281"
value: "282" value: "282"
path: "279" path: "279"
port: -1315487077 port: 1315054653
scheme: ğ_ scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1272940694 initialDelaySeconds: 1905181464
periodSeconds: 422133388 periodSeconds: 1272940694
successThreshold: 1952458416 successThreshold: -385597677
tcpSocket: tcpSocket:
host: "284" host: "284"
port: "283" port: "283"
terminationGracePeriodSeconds: -6078441689118311403 terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -385597677 timeoutSeconds: -1730959016
resources: resources:
limits: limits:
鬶l獕;跣Hǝcw: "242" 庰%皧V: "116"
requests: requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" "": "289"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- "" - p鋄5弢ȹ均i绝5
drop: drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ - ""
privileged: false privileged: true
procMount: W賁Ěɭɪǹ0 procMount: ş
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404 runAsGroup: 7023916302283403328
runAsNonRoot: false runAsNonRoot: false
runAsUser: -7936947433725476327 runAsUser: -3385088507022597813
seLinuxOptions: seLinuxOptions:
level: "310" level: "309"
role: "308" role: "307"
type: "309" type: "308"
user: "307" user: "306"
seccompProfile: seccompProfile:
localhostProfile: "314" localhostProfile: "313"
type: ',ƷƣMț譎懚XW疪鑳' type: 諔迮ƙ
windowsOptions: windowsOptions:
gmsaCredentialSpec: "312" gmsaCredentialSpec: "311"
gmsaCredentialSpecName: "311" gmsaCredentialSpecName: "310"
runAsUserName: "313" hostProcess: false
runAsUserName: "312"
startupProbe: startupProbe:
exec: exec:
command: command:
- "285" - "285"
failureThreshold: 620822482 failureThreshold: 353361793
httpGet: httpGet:
host: "287" host: "287"
httpHeaders: httpHeaders:
- name: "288" - name: "288"
value: "289" value: "289"
path: "286" path: "286"
port: 1332783160 port: 1013673874
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; scheme: ə娯Ȱ囌{
initialDelaySeconds: -300247800 initialDelaySeconds: -205176266
periodSeconds: -126958936 periodSeconds: -116469891
successThreshold: 186945072 successThreshold: 311083651
tcpSocket: tcpSocket:
host: "291" host: "290"
port: "290" port: -1829146875
terminationGracePeriodSeconds: -2203905759223555727 terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 386804041 timeoutSeconds: 490479437
stdin: true
stdinOnce: true stdinOnce: true
terminationMessagePath: "306" terminationMessagePath: "305"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 terminationMessagePolicy: "3"
tty: true
volumeDevices: volumeDevices:
- devicePath: "270" - devicePath: "270"
name: "269" name: "269"
volumeMounts: volumeMounts:
- mountPath: "266" - mountPath: "266"
mountPropagation: "" mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "265" name: "265"
readOnly: true
subPath: "267" subPath: "267"
subPathExpr: "268" subPathExpr: "268"
workingDir: "249" workingDir: "249"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "476" - "472"
options: options:
- name: "478" - name: "474"
value: "479" value: "475"
searches: searches:
- "477" - "473"
dnsPolicy: 敆OɈÏ 瞍髃#ɣȕW歹s dnsPolicy: 8ð仁Q橱9ij\Ď愝Ű藛b
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "318"
command:
- "317" - "317"
command:
- "316"
env: env:
- name: "325" - name: "324"
value: "326" value: "325"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "332" key: "331"
name: "331" name: "330"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "327" apiVersion: "326"
fieldPath: "328" fieldPath: "327"
resourceFieldRef: resourceFieldRef:
containerName: "329" containerName: "328"
divisor: "360" divisor: "66"
resource: "330" resource: "329"
secretKeyRef: secretKeyRef:
key: "334" key: "333"
name: "333" name: "332"
optional: false optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323" name: "323"
optional: false optional: false
prefix: "322" image: "315"
secretRef: imagePullPolicy: 阠$嬏
name: "324"
optional: false
image: "316"
imagePullPolicy: .wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "363" - "360"
httpGet: httpGet:
host: "365" host: "362"
httpHeaders: httpHeaders:
- name: "366" - name: "363"
value: "367" value: "364"
path: "364" path: "361"
port: 466267060 port: 890223061
scheme: wy¶熀ďJZ漤ŗ坟Ů<y鯶縆ł scheme: uEy竬ʆɞȥ}礤铟怖ý萜Ǖc8ǣ
tcpSocket: tcpSocket:
host: "369" host: "366"
port: "368" port: "365"
preStop: preStop:
exec: exec:
command: command:
- "370" - "367"
httpGet: httpGet:
host: "373" host: "369"
httpHeaders: httpHeaders:
- name: "374" - name: "370"
value: "375" value: "371"
path: "371" path: "368"
port: "372" port: 797714018
scheme: Ē3Nh×DJɶ羹ƞʓ%ʝ scheme: vÄÚ×
tcpSocket: tcpSocket:
host: "377" host: "373"
port: "376" port: "372"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "341" - "340"
failureThreshold: 240657401 failureThreshold: -1508967300
httpGet: httpGet:
host: "343" host: "343"
httpHeaders: httpHeaders:
- name: "344" - name: "344"
value: "345" value: "345"
path: "342" path: "341"
port: -1842062977 port: "342"
scheme: 輔3璾ėȜv1b繐汚磉反-n覦 initialDelaySeconds: -1843539391
initialDelaySeconds: -1161185537 periodSeconds: -1758095966
periodSeconds: 1611386356 successThreshold: 1627026804
successThreshold: 821341581
tcpSocket: tcpSocket:
host: "347" host: "346"
port: "346" port: -819013491
terminationGracePeriodSeconds: 7806703309589874498 terminationGracePeriodSeconds: -4548040070833300341
timeoutSeconds: 1928937303 timeoutSeconds: 1238925115
name: "315" name: "314"
ports: ports:
- containerPort: 455919108 - containerPort: 1137109081
hostIP: "321" hostIP: "320"
hostPort: 217308913 hostPort: -488127393
name: "320" name: "319"
protocol: 崍h趭(娕u protocol: 丽饾| 鞤ɱď
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "348" - "347"
failureThreshold: 1605974497 failureThreshold: -47594442
httpGet: httpGet:
host: "351" host: "349"
httpHeaders: httpHeaders:
- name: "352" - name: "350"
value: "353" value: "351"
path: "349" path: "348"
port: "350" port: -186532794
scheme: Ik(dŊiɢzĮ蛋I scheme: ĩȲǸ|蕎'佉賞ǧĒzŔ瘍Nʊ輔3璾ė
initialDelaySeconds: 571693619 initialDelaySeconds: -751455207
periodSeconds: -2028546276 periodSeconds: 646133945
successThreshold: -2128305760 successThreshold: -506710067
tcpSocket: tcpSocket:
host: "355" host: "353"
port: "354" port: "352"
terminationGracePeriodSeconds: 2002344837004307079 terminationGracePeriodSeconds: -8866033802256420471
timeoutSeconds: 1643238856 timeoutSeconds: -894026356
resources: resources:
limits: limits:
fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422" ƣMț譎懚X: "93"
requests: requests:
蕎': "62" 曣ŋayåe躒訙: "484"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: true
capabilities: capabilities:
add: add:
- 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃 - ¶熀ďJZ漤
drop: drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹 - ""
privileged: false privileged: true
procMount: ʙcx procMount: 槃JŵǤ桒ɴ鉂WJ
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: -6657305077321335240 runAsGroup: -8721643037453811760
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4369716065827112267 runAsUser: 5680561050872693436
seLinuxOptions: seLinuxOptions:
level: "382" level: "378"
role: "380" role: "376"
type: "381" type: "377"
user: "379" user: "375"
seccompProfile: seccompProfile:
localhostProfile: "386" localhostProfile: "382"
type: ǒđ>*劶?jĎĭ type: 抉泅ą&疀ȼN翾ȾD虓氙磂tńČȷǻ
windowsOptions: windowsOptions:
gmsaCredentialSpec: "384" gmsaCredentialSpec: "380"
gmsaCredentialSpecName: "383" gmsaCredentialSpecName: "379"
runAsUserName: "385" hostProcess: false
runAsUserName: "381"
startupProbe: startupProbe:
exec: exec:
command: command:
- "356" - "354"
failureThreshold: 1447314009 failureThreshold: 1190831814
httpGet: httpGet:
host: "359" host: "356"
httpHeaders: httpHeaders:
- name: "360" - name: "357"
value: "361" value: "358"
path: "357" path: "355"
port: "358" port: -1789721862
scheme: 奼[ƕƑĝ®EĨǔvÄÚ×p鬷m罂 scheme: 閈誹ʅ蕉ɼ
initialDelaySeconds: 235623869 initialDelaySeconds: 1518001294
periodSeconds: -505848936 periodSeconds: -2068583194
successThreshold: -1819021257 successThreshold: -29073009
tcpSocket: tcpSocket:
host: "362" host: "359"
port: -1894647727 port: 374862544
terminationGracePeriodSeconds: -7637760856622746738 terminationGracePeriodSeconds: 7262727411813417219
timeoutSeconds: 564558594 timeoutSeconds: 1467189105
targetContainerName: "387" targetContainerName: "383"
terminationMessagePath: "378" terminationMessagePath: "374"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a terminationMessagePolicy: m罂o3ǰ廋i乳'ȘUɻ
volumeDevices: volumeDevices:
- devicePath: "340" - devicePath: "339"
name: "339" name: "338"
volumeMounts: volumeMounts:
- mountPath: "336" - mountPath: "335"
mountPropagation: Ǚ( mountPropagation: (娕uE增猍
name: "335" name: "334"
readOnly: true subPath: "336"
subPath: "337" subPathExpr: "337"
subPathExpr: "338" workingDir: "318"
workingDir: "319"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "474" - "470"
ip: "473" ip: "469"
hostIPC: true hostIPC: true
hostNetwork: true
hostPID: true hostPID: true
hostname: "404" hostname: "400"
imagePullSecrets: imagePullSecrets:
- name: "403" - name: "399"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -694,11 +689,11 @@ spec:
drop: drop:
- ʁ岼昕ĬÇ - ʁ岼昕ĬÇ
privileged: true privileged: true
procMount: Z鐫û咡W<敄lu procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858 runAsGroup: -6406791857291159870
runAsNonRoot: true runAsNonRoot: false
runAsUser: -857934902638099053 runAsUser: 161123823296532265
seLinuxOptions: seLinuxOptions:
level: "240" level: "240"
role: "238" role: "238"
@ -706,10 +701,11 @@ spec:
user: "237" user: "237"
seccompProfile: seccompProfile:
localhostProfile: "244" localhostProfile: "244"
type: 榝$î.Ȏ蝪ʜ5遰 type: î.Ȏ蝪ʜ5遰=
windowsOptions: windowsOptions:
gmsaCredentialSpec: "242" gmsaCredentialSpec: "242"
gmsaCredentialSpecName: "241" gmsaCredentialSpecName: "241"
hostProcess: false
runAsUserName: "243" runAsUserName: "243"
startupProbe: startupProbe:
exec: exec:
@ -732,6 +728,7 @@ spec:
port: -1099429189 port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907 terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096 timeoutSeconds: 1752155096
stdin: true
stdinOnce: true stdinOnce: true
terminationMessagePath: "236" terminationMessagePath: "236"
terminationMessagePolicy: ĸ輦唊 terminationMessagePolicy: ĸ輦唊
@ -747,66 +744,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "392" nodeName: "388"
nodeSelector: nodeSelector:
"388": "389" "384": "385"
overhead: overhead:
D傕Ɠ栊闔虝巒瀦ŕ: "124" 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
preemptionPolicy: Iƭij韺ʧ> preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
priority: 743241089 priority: -1756088332
priorityClassName: "475" priorityClassName: "471"
readinessGates: readinessGates:
- conditionType: 0yVA嬂刲;牆詒ĸąs - conditionType: '#sM網'
restartPolicy: ƱÁR»淹揀 restartPolicy: ȏâ磠
runtimeClassName: "480" runtimeClassName: "476"
schedulerName: "470" schedulerName: "466"
securityContext: securityContext:
fsGroup: 6713296993350540686 fsGroup: 2946116477552625615
fsGroupChangePolicy: ȶŮ嫠!@@)Zq=歍þ螗ɃŒ fsGroupChangePolicy: $鬬$矐_敕
runAsGroup: -3587143030436465588 runAsGroup: -935274303703112577
runAsNonRoot: true runAsNonRoot: true
runAsUser: 4466809078783855686 runAsUser: -3072254610148392250
seLinuxOptions: seLinuxOptions:
level: "396" level: "392"
role: "394" role: "390"
type: "395" type: "391"
user: "393" user: "389"
seccompProfile: seccompProfile:
localhostProfile: "402" localhostProfile: "398"
type: m¨z鋎靀G¿əW#ļǹʅŚO虀^ type: 嵞嬯t{Eɾ敹Ȯ-湷D谹
supplementalGroups: supplementalGroups:
- 4820130167691486230 - 5215323049148402377
sysctls: sysctls:
- name: "400" - name: "396"
value: "401" value: "397"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "398" gmsaCredentialSpec: "394"
gmsaCredentialSpecName: "397" gmsaCredentialSpecName: "393"
runAsUserName: "399" hostProcess: false
serviceAccount: "391" runAsUserName: "395"
serviceAccountName: "390" serviceAccount: "387"
setHostnameAsFQDN: true serviceAccountName: "386"
setHostnameAsFQDN: false
shareProcessNamespace: false shareProcessNamespace: false
subdomain: "405" subdomain: "401"
terminationGracePeriodSeconds: 2008726498083002362 terminationGracePeriodSeconds: 5614430095732678823
tolerations: tolerations:
- effect: '慰x:' - effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸
key: "471" key: "467"
operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ
tolerationSeconds: 3362400521064014157 tolerationSeconds: -3147305732428645642
value: "472" value: "468"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x - key: KTlO.__0PX
operator: In operator: In
values: 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: 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 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: -174245111 maxSkew: -447559705
topologyKey: "481" topologyKey: "477"
whenUnsatisfiable: "" whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1062,17 +1060,17 @@ spec:
storagePolicyName: "105" storagePolicyName: "105"
volumePath: "103" volumePath: "103"
status: status:
availableReplicas: -2102211832 availableReplicas: 845369726
collisionCount: -1280802136 collisionCount: 2000058265
conditions: conditions:
- lastTransitionTime: "2625-01-11T08:25:47Z" - lastTransitionTime: "2127-02-15T04:53:58Z"
lastUpdateTime: "2124-10-20T09:17:54Z" lastUpdateTime: "2587-03-02T15:57:31Z"
message: "489" message: "485"
reason: "488" reason: "484"
status: "" status: 埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$<ʖ欢
type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ type: ',R譏K'
observedGeneration: 5710269275969351972 observedGeneration: 893725404715704439
readyReplicas: 1492268066 readyReplicas: 143932221
replicas: -153843136 replicas: -611078700
unavailableReplicas: 1714841371 unavailableReplicas: 1757097428
updatedReplicas: -1961319491 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": { "windowsOptions": {
"gmsaCredentialSpecName": "246", "gmsaCredentialSpecName": "246",
"gmsaCredentialSpec": "247", "gmsaCredentialSpec": "247",
"runAsUserName": "248" "runAsUserName": "248",
"hostProcess": true
}, },
"runAsUser": 9148233193771851687, "runAsUser": -7299434051955863644,
"runAsGroup": 6901713258562004024, "runAsGroup": 4041264710404335706,
"runAsNonRoot": true, "runAsNonRoot": false,
"readOnlyRootFilesystem": false, "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true, "allowPrivilegeEscalation": true,
"procMount": "ȹ均i绝5哇芆斩ìh4Ɋ", "procMount": "ȹ均i绝5哇芆斩ìh4Ɋ",
"seccompProfile": { "seccompProfile": {
"type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4", "type": "Ȗ|ʐşƧ諔迮ƙIJ嘢4",
"localhostProfile": "249" "localhostProfile": "249"
@ -944,19 +945,22 @@
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "317", "gmsaCredentialSpecName": "317",
"gmsaCredentialSpec": "318", "gmsaCredentialSpec": "318",
"runAsUserName": "319" "runAsUserName": "319",
"hostProcess": true
}, },
"runAsUser": 4369716065827112267, "runAsUser": -1286199491017539507,
"runAsGroup": -6657305077321335240, "runAsGroup": -6292316479661489180,
"runAsNonRoot": false, "runAsNonRoot": false,
"readOnlyRootFilesystem": false, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false, "allowPrivilegeEscalation": false,
"procMount": "ʙcx", "procMount": "cx赮ǒđ\u003e*劶?j",
"seccompProfile": { "seccompProfile": {
"type": "ǒđ\u003e*劶?jĎĭ", "type": "ĭ¥#ƱÁR",
"localhostProfile": "320" "localhostProfile": "320"
} }
} },
"stdin": true,
"tty": true
} }
], ],
"ephemeralContainers": [ "ephemeralContainers": [
@ -973,9 +977,9 @@
"ports": [ "ports": [
{ {
"name": "326", "name": "326",
"hostPort": 1805682547, "hostPort": 2032588794,
"containerPort": -651405950, "containerPort": -1371690155,
"protocol": "淹揀.e鍃G昧牱fsǕT衩kƒK07", "protocol": "G昧牱fsǕT衩kƒK07曳wœj堑",
"hostIP": "327" "hostIP": "327"
} }
], ],
@ -988,7 +992,7 @@
}, },
"secretRef": { "secretRef": {
"name": "330", "name": "330",
"optional": true "optional": false
} }
} }
], ],
@ -1004,12 +1008,12 @@
"resourceFieldRef": { "resourceFieldRef": {
"containerName": "335", "containerName": "335",
"resource": "336", "resource": "336",
"divisor": "684" "divisor": "473"
}, },
"configMapKeyRef": { "configMapKeyRef": {
"name": "337", "name": "337",
"key": "338", "key": "338",
"optional": true "optional": false
}, },
"secretKeyRef": { "secretKeyRef": {
"name": "339", "name": "339",
@ -1021,19 +1025,18 @@
], ],
"resources": { "resources": {
"limits": { "limits": {
"蠨磼O_h盌3+Œ9两@8Byß": "111" "盌3+Œ": "752"
}, },
"requests": { "requests": {
"ɃŒ": "451" ")Zq=歍þ": "759"
} }
}, },
"volumeMounts": [ "volumeMounts": [
{ {
"name": "341", "name": "341",
"readOnly": true,
"mountPath": "342", "mountPath": "342",
"subPath": "343", "subPath": "343",
"mountPropagation": "葰賦", "mountPropagation": "讅缔m葰賦迾娙ƴ4虵p",
"subPathExpr": "344" "subPathExpr": "344"
} }
], ],
@ -1051,9 +1054,9 @@
}, },
"httpGet": { "httpGet": {
"path": "348", "path": "348",
"port": -121675052, "port": 1034835933,
"host": "349", "host": "349",
"scheme": "W#ļǹʅŚO虀^", "scheme": "O虀^背遻堣灭ƴɦ燻踸陴",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "350", "name": "350",
@ -1062,27 +1065,27 @@
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "352", "port": -1744546613,
"host": "353" "host": "352"
}, },
"initialDelaySeconds": -1959891996, "initialDelaySeconds": 650448405,
"timeoutSeconds": -1442230895, "timeoutSeconds": 1943254244,
"periodSeconds": 1475033091, "periodSeconds": -168773629,
"successThreshold": 1782790310, "successThreshold": 2068592383,
"failureThreshold": 1587036035, "failureThreshold": 1566765016,
"terminationGracePeriodSeconds": 7560036535013464461 "terminationGracePeriodSeconds": -1112599546012453731
}, },
"readinessProbe": { "readinessProbe": {
"exec": { "exec": {
"command": [ "command": [
"354" "353"
] ]
}, },
"httpGet": { "httpGet": {
"path": "355", "path": "354",
"port": -1744546613, "port": "355",
"host": "356", "host": "356",
"scheme": "ʓɻŊ", "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "357", "name": "357",
@ -1091,37 +1094,8 @@
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": -259047269, "port": "359",
"host": "359" "host": "360"
},
"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"
}, },
"initialDelaySeconds": 636493142, "initialDelaySeconds": 636493142,
"timeoutSeconds": -192358697, "timeoutSeconds": -192358697,
@ -1130,146 +1104,176 @@
"failureThreshold": 902204699, "failureThreshold": 902204699,
"terminationGracePeriodSeconds": 9196919020604133323 "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": { "lifecycle": {
"postStart": { "postStart": {
"exec": { "exec": {
"command": [ "command": [
"367" "368"
] ]
}, },
"httpGet": { "httpGet": {
"path": "368", "path": "369",
"port": -1460652193, "port": 1176168596,
"host": "369", "host": "370",
"scheme": "8ï驿笈¯rƈa餖Ľƛ淴ɑ?", "scheme": "轪d覉;Ĕ",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "370", "name": "371",
"value": "371" "value": "372"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "372", "port": "373",
"host": "373" "host": "374"
} }
}, },
"preStop": { "preStop": {
"exec": { "exec": {
"command": [ "command": [
"374" "375"
] ]
}, },
"httpGet": { "httpGet": {
"path": "375", "path": "376",
"port": 71524977, "port": "377",
"host": "376", "host": "378",
"scheme": "鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷", "scheme": "ʦŊĊ娮",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "377", "name": "379",
"value": "378" "value": "380"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": -565041796, "port": "381",
"host": "379" "host": "382"
} }
} }
}, },
"terminationMessagePath": "380", "terminationMessagePath": "383",
"terminationMessagePolicy": "Ƭ婦d", "terminationMessagePolicy": "Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ",
"imagePullPolicy": "ɧeʫį淓¯", "imagePullPolicy": "委\u003e,趐V曡88 u怞荊ù灹8緔Tj",
"securityContext": { "securityContext": {
"capabilities": { "capabilities": {
"add": [ "add": [
"ƛ忀z委\u003e,趐V曡88 u怞荊ù" "蓋Cȗä2 ɲ±m嵘厶sȰÖ"
], ],
"drop": [ "drop": [
"8緔Tj§E蓋Cȗä2 ɲ±" "ÆɰŞ襵"
] ]
}, },
"privileged": true, "privileged": true,
"seLinuxOptions": { "seLinuxOptions": {
"user": "381", "user": "384",
"role": "382", "role": "385",
"type": "383", "type": "386",
"level": "384" "level": "387"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "385", "gmsaCredentialSpecName": "388",
"gmsaCredentialSpec": "386", "gmsaCredentialSpec": "389",
"runAsUserName": "387" "runAsUserName": "390",
"hostProcess": false
}, },
"runAsUser": -4564863616644509171, "runAsUser": -5519662252699559890,
"runAsGroup": -7297536356638221066, "runAsGroup": -1624551961163368198,
"runAsNonRoot": false, "runAsNonRoot": false,
"readOnlyRootFilesystem": true, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true, "allowPrivilegeEscalation": false,
"procMount": "Ş襵樞úʥ銀", "procMount": "阫Ƈʥ椹ý",
"seccompProfile": { "seccompProfile": {
"type": "ɤ血x柱栦阫Ƈʥ椹ý飝ȕ笧", "type": "ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i÷",
"localhostProfile": "388" "localhostProfile": "391"
} }
}, },
"stdin": true, "stdin": true,
"tty": true, "stdinOnce": true,
"targetContainerName": "389" "targetContainerName": "392"
} }
], ],
"restartPolicy": "鹚蝉茲ʛ饊", "restartPolicy": "砘Cș栣险¹贮獘薟8Mĕ霉}閜LI",
"terminationGracePeriodSeconds": 1736985756995615785, "terminationGracePeriodSeconds": 3296766428578159624,
"activeDeadlineSeconds": -1284119655860768065, "activeDeadlineSeconds": -8925090445844634303,
"dnsPolicy": "錏嬮#ʐ", "dnsPolicy": "q沷¾!",
"nodeSelector": { "nodeSelector": {
"390": "391" "393": "394"
}, },
"serviceAccountName": "392", "serviceAccountName": "395",
"serviceAccount": "393", "serviceAccount": "396",
"automountServiceAccountToken": true, "automountServiceAccountToken": true,
"nodeName": "394", "nodeName": "397",
"hostPID": true,
"hostIPC": true, "hostIPC": true,
"shareProcessNamespace": false, "shareProcessNamespace": true,
"securityContext": { "securityContext": {
"seLinuxOptions": { "seLinuxOptions": {
"user": "395", "user": "398",
"role": "396", "role": "399",
"type": "397", "type": "400",
"level": "398" "level": "401"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "399", "gmsaCredentialSpecName": "402",
"gmsaCredentialSpec": "400", "gmsaCredentialSpec": "403",
"runAsUserName": "401" "runAsUserName": "404",
"hostProcess": true
}, },
"runAsUser": -4904722847506013622, "runAsUser": -3496040522639830925,
"runAsGroup": 6465579957265382985, "runAsGroup": 2960114664726223450,
"runAsNonRoot": false, "runAsNonRoot": false,
"supplementalGroups": [ "supplementalGroups": [
-981432507446869083 2402603282459663167
], ],
"fsGroup": -1867959832193971598, "fsGroup": 3564097949592109139,
"sysctls": [ "sysctls": [
{ {
"name": "402", "name": "405",
"value": "403" "value": "406"
} }
], ],
"fsGroupChangePolicy": "ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾!", "fsGroupChangePolicy": "ûǭg怨彬ɈNƋl塠傫üMɮ6",
"seccompProfile": { "seccompProfile": {
"type": "`翾'ųŎ群E牬庘颮6(|ǖû", "type": ".¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ",
"localhostProfile": "404" "localhostProfile": "407"
} }
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
"name": "405" "name": "408"
} }
], ],
"hostname": "406", "hostname": "409",
"subdomain": "407", "subdomain": "410",
"affinity": { "affinity": {
"nodeAffinity": { "nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": { "requiredDuringSchedulingIgnoredDuringExecution": {
@ -1277,19 +1281,19 @@
{ {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "408", "key": "411",
"operator": "UǷ坒", "operator": "Üɉ愂,wa纝佯fɞ",
"values": [ "values": [
"409" "412"
] ]
} }
], ],
"matchFields": [ "matchFields": [
{ {
"key": "410", "key": "413",
"operator": "", "operator": "鏚U駯Ĕ驢.'鿳Ï掗掍瓣;",
"values": [ "values": [
"411" "414"
] ]
} }
] ]
@ -1298,23 +1302,23 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1280563546, "weight": 1690937616,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "412", "key": "415",
"operator": "Mɮ6)", "operator": "襉{遠",
"values": [ "values": [
"413" "416"
] ]
} }
], ],
"matchFields": [ "matchFields": [
{ {
"key": "414", "key": "417",
"operator": "杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾", "operator": "诰ðÈ娒Ġ滔xvŗÑ\"",
"values": [ "values": [
"415" "418"
] ]
} }
] ]
@ -1327,30 +1331,27 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1" "lx..w": "t-_.5.40w"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g", "key": "G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0",
"operator": "NotIn", "operator": "DoesNotExist"
"values": [
"VT3sn-0_.i__a.O2G_J"
]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"422" "425"
], ],
"topologyKey": "423", "topologyKey": "426",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlRT", "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": "DoesNotExist" "operator": "Exists"
} }
] ]
} }
@ -1358,33 +1359,33 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -2118597352, "weight": -947725955,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9", "key": "3--_9QW2JkU27_.-4T-I.-..K.2",
"operator": "NotIn", "operator": "In",
"values": [ "values": [
"f8k" "6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8"
] ]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"436" "439"
], ],
"topologyKey": "437", "topologyKey": "440",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "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" "operator": "DoesNotExist"
} }
] ]
@ -1398,29 +1399,26 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs", "key": "w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1",
"operator": "NotIn", "operator": "Exists"
"values": [
"B.3R6-.7Bf8GA--__A7r.8U.V_p6c"
]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"450" "453"
], ],
"topologyKey": "451", "topologyKey": "454",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "N-._M5..-N_H_55..--E3_2D-1DW_o", "key": "5__-_._.3l-_86_u2-7_._qN__A_f_-BT",
"operator": "Exists" "operator": "Exists"
} }
] ]
@ -1429,33 +1427,33 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 1943011795, "weight": 1819321475,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "x3___-..f5-6x-_-o_6O_If-5_-_U", "key": "62o787-7lk2/L.--4P--_q-.9",
"operator": "DoesNotExist" "operator": "Exists"
} }
] ]
}, },
"namespaces": [ "namespaces": [
"464" "467"
], ],
"topologyKey": "465", "topologyKey": "468",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7", "key": "9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8",
"operator": "NotIn", "operator": "In",
"values": [ "values": [
"9-.66hcB.rTt7bm9I.-..q-n" "x3___-..f5-6x-_-o_6O_If-5_-_.F"
] ]
} }
] ]
@ -1465,64 +1463,67 @@
] ]
} }
}, },
"schedulerName": "472", "schedulerName": "475",
"tolerations": [ "tolerations": [
{ {
"key": "473", "key": "476",
"operator": "杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ]", "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
"value": "474", "value": "477",
"effect": "ɮ-nʣž吞Ƞ唄®窂爪", "effect": "慰x:",
"tolerationSeconds": -5154627301352060136 "tolerationSeconds": 3362400521064014157
} }
], ],
"hostAliases": [ "hostAliases": [
{ {
"ip": "475", "ip": "478",
"hostnames": [ "hostnames": [
"476" "479"
] ]
} }
], ],
"priorityClassName": "477", "priorityClassName": "480",
"priority": -860768401, "priority": 743241089,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"478" "481"
], ],
"searches": [ "searches": [
"479" "482"
], ],
"options": [ "options": [
{ {
"name": "480", "name": "483",
"value": "481" "value": "484"
} }
] ]
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "@.ȇʟ" "conditionType": "0yVA嬂刲;牆詒ĸąs"
} }
], ],
"runtimeClassName": "482", "runtimeClassName": "485",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "", "preemptionPolicy": "Iƭij韺ʧ\u003e",
"overhead": { "overhead": {
"": "359" "D傕Ɠ栊闔虝巒瀦ŕ": "124"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -2013945465, "maxSkew": -174245111,
"topologyKey": "483", "topologyKey": "486",
"whenUnsatisfiable": "½ǩ ", "whenUnsatisfiable": "",
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q", "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
"operator": "Exists" "operator": "In",
"values": [
"zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
]
} }
] ]
} }
@ -1532,32 +1533,32 @@
} }
}, },
"updateStrategy": { "updateStrategy": {
"type": "Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ", "type": "秮ȳĵ/Ş槀墺=Ĉ鳟/d\u0026",
"rollingUpdate": { "rollingUpdate": {
"maxUnavailable": 2, "maxUnavailable": 2,
"maxSurge": 3 "maxSurge": 3
} }
}, },
"minReadySeconds": 1467929320, "minReadySeconds": 1559072561,
"revisionHistoryLimit": -1098193709 "revisionHistoryLimit": -629510776
}, },
"status": { "status": {
"currentNumberScheduled": 2090664533, "currentNumberScheduled": -69450448,
"numberMisscheduled": -1371816595, "numberMisscheduled": -212409426,
"desiredNumberScheduled": 1219820375, "desiredNumberScheduled": 17761427,
"numberReady": -788475912, "numberReady": 1329525670,
"observedGeneration": 6637463221525448952, "observedGeneration": -721999650192865404,
"updatedNumberScheduled": -1684048223, "updatedNumberScheduled": 1162680985,
"numberAvailable": 16994744, "numberAvailable": 171558604,
"numberUnavailable": 340429479, "numberUnavailable": -161888815,
"collisionCount": 1177227691, "collisionCount": 1714841371,
"conditions": [ "conditions": [
{ {
"type": "ôD齆O#ȞM\u003c²彾Ǟʈɐ", "type": "ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ",
"status": "盧ŶbșʬÇ[輚趞", "status": "",
"lastTransitionTime": "2205-11-05T22:21:51Z", "lastTransitionTime": "2124-10-20T09:17:54Z",
"reason": "490", "reason": "493",
"message": "491" "message": "494"
} }
] ]
} }

View File

@ -31,8 +31,8 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 1467929320 minReadySeconds: 1559072561
revisionHistoryLimit: -1098193709 revisionHistoryLimit: -629510776
selector: selector:
matchExpressions: 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 - 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" selfLink: "29"
uid: TʡȂŏ{sǡƟ uid: TʡȂŏ{sǡƟ
spec: spec:
activeDeadlineSeconds: -1284119655860768065 activeDeadlineSeconds: -8925090445844634303
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "412" - key: "415"
operator: Mɮ6) operator: 襉{遠
values: values:
- "413" - "416"
matchFields: matchFields:
- key: "414" - key: "417"
operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾 operator: 诰ðÈ娒Ġ滔xvŗÑ"
values: values:
- "415" - "418"
weight: -1280563546 weight: 1690937616
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "408" - key: "411"
operator: UǷ坒 operator: Üɉ愂,wa纝佯fɞ
values: values:
- "409" - "412"
matchFields: matchFields:
- key: "410" - key: "413"
operator: "" operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣;
values: values:
- "411" - "414"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9 - key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: NotIn operator: In
values: values:
- f8k - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels: 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: namespaceSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "436" - "439"
topologyKey: "437" topologyKey: "440"
weight: -2118597352 weight: -947725955
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0
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
operator: DoesNotExist operator: DoesNotExist
matchLabels: 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: namespaces:
- "422" - "425"
topologyKey: "423" topologyKey: "426"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: x3___-..f5-6x-_-o_6O_If-5_-_U - key: 62o787-7lk2/L.--4P--_q-.9
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7 - key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8
operator: NotIn operator: In
values: values:
- 9-.66hcB.rTt7bm9I.-..q-n - x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels: 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: namespaces:
- "464" - "467"
topologyKey: "465" topologyKey: "468"
weight: 1943011795 weight: 1819321475
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs - key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1
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
operator: Exists operator: Exists
matchLabels: 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: namespaces:
- "450" - "453"
topologyKey: "451" topologyKey: "454"
automountServiceAccountToken: true automountServiceAccountToken: true
containers: containers:
- args: - args:
@ -307,11 +303,11 @@ spec:
drop: drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹 - 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false privileged: false
procMount: ʙcx procMount: cx赮ǒđ>*劶?j
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240 runAsGroup: -6292316479661489180
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4369716065827112267 runAsUser: -1286199491017539507
seLinuxOptions: seLinuxOptions:
level: "316" level: "316"
role: "314" role: "314"
@ -319,10 +315,11 @@ spec:
user: "313" user: "313"
seccompProfile: seccompProfile:
localhostProfile: "320" localhostProfile: "320"
type: ǒđ>*劶?jĎĭ type: ĭ¥#ƱÁR
windowsOptions: windowsOptions:
gmsaCredentialSpec: "318" gmsaCredentialSpec: "318"
gmsaCredentialSpecName: "317" gmsaCredentialSpecName: "317"
hostProcess: true
runAsUserName: "319" runAsUserName: "319"
startupProbe: startupProbe:
exec: exec:
@ -345,8 +342,10 @@ spec:
port: -1894647727 port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738 terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594 timeoutSeconds: 564558594
stdin: true
terminationMessagePath: "312" terminationMessagePath: "312"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
tty: true
volumeDevices: volumeDevices:
- devicePath: "275" - devicePath: "275"
name: "274" name: "274"
@ -360,13 +359,13 @@ spec:
workingDir: "254" workingDir: "254"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "478" - "481"
options: options:
- name: "480" - name: "483"
value: "481" value: "484"
searches: searches:
- "479" - "482"
dnsPolicy: 錏嬮#ʐ dnsPolicy: q沷¾!
enableServiceLinks: false enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
@ -380,13 +379,13 @@ spec:
configMapKeyRef: configMapKeyRef:
key: "338" key: "338"
name: "337" name: "337"
optional: true optional: false
fieldRef: fieldRef:
apiVersion: "333" apiVersion: "333"
fieldPath: "334" fieldPath: "334"
resourceFieldRef: resourceFieldRef:
containerName: "335" containerName: "335"
divisor: "684" divisor: "473"
resource: "336" resource: "336"
secretKeyRef: secretKeyRef:
key: "340" key: "340"
@ -399,165 +398,164 @@ spec:
prefix: "328" prefix: "328"
secretRef: secretRef:
name: "330" name: "330"
optional: true optional: false
image: "322" image: "322"
imagePullPolicy: ɧeʫį淓¯ imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "367" - "368"
httpGet: httpGet:
host: "369" host: "370"
httpHeaders: httpHeaders:
- name: "370" - name: "371"
value: "371" value: "372"
path: "368" path: "369"
port: -1460652193 port: 1176168596
scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ? scheme: 轪d覉;Ĕ
tcpSocket: tcpSocket:
host: "373" host: "374"
port: "372" port: "373"
preStop: preStop:
exec: exec:
command: command:
- "374" - "375"
httpGet: httpGet:
host: "376" host: "378"
httpHeaders: httpHeaders:
- name: "377" - name: "379"
value: "378" value: "380"
path: "375" path: "376"
port: 71524977 port: "377"
scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷 scheme: ʦŊĊ娮
tcpSocket: tcpSocket:
host: "379" host: "382"
port: -565041796 port: "381"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "347" - "347"
failureThreshold: 1587036035 failureThreshold: 1566765016
httpGet: httpGet:
host: "349" host: "349"
httpHeaders: httpHeaders:
- name: "350" - name: "350"
value: "351" value: "351"
path: "348" path: "348"
port: -121675052 port: 1034835933
scheme: W#ļǹʅŚO虀^ scheme: O虀^背遻堣灭ƴɦ燻踸陴
initialDelaySeconds: -1959891996 initialDelaySeconds: 650448405
periodSeconds: 1475033091 periodSeconds: -168773629
successThreshold: 1782790310 successThreshold: 2068592383
tcpSocket: tcpSocket:
host: "353" host: "352"
port: "352" port: -1744546613
terminationGracePeriodSeconds: 7560036535013464461 terminationGracePeriodSeconds: -1112599546012453731
timeoutSeconds: -1442230895 timeoutSeconds: 1943254244
name: "321" name: "321"
ports: ports:
- containerPort: -651405950 - containerPort: -1371690155
hostIP: "327" hostIP: "327"
hostPort: 1805682547 hostPort: 2032588794
name: "326" name: "326"
protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07 protocol: G昧牱fsǕT衩kƒK07曳wœj堑
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "354" - "353"
failureThreshold: 408029351 failureThreshold: 902204699
httpGet: httpGet:
host: "356" host: "356"
httpHeaders: httpHeaders:
- name: "357" - name: "357"
value: "358" value: "358"
path: "355" path: "354"
port: -1744546613 port: "355"
scheme: ʓɻŊ scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
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'
initialDelaySeconds: 636493142 initialDelaySeconds: 636493142
periodSeconds: 420595064 periodSeconds: 420595064
successThreshold: 1195176401 successThreshold: 1195176401
tcpSocket: tcpSocket:
host: "366" host: "360"
port: "365" port: "359"
terminationGracePeriodSeconds: 9196919020604133323 terminationGracePeriodSeconds: 9196919020604133323
timeoutSeconds: -192358697 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 stdin: true
targetContainerName: "389" stdinOnce: true
terminationMessagePath: "380" targetContainerName: "392"
terminationMessagePolicy: Ƭ婦d terminationMessagePath: "383"
tty: true terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ
volumeDevices: volumeDevices:
- devicePath: "346" - devicePath: "346"
name: "345" name: "345"
volumeMounts: volumeMounts:
- mountPath: "342" - mountPath: "342"
mountPropagation: 葰賦 mountPropagation: 讅缔m葰賦迾娙ƴ4虵p
name: "341" name: "341"
readOnly: true
subPath: "343" subPath: "343"
subPathExpr: "344" subPathExpr: "344"
workingDir: "325" workingDir: "325"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "476" - "479"
ip: "475" ip: "478"
hostIPC: true hostIPC: true
hostPID: true hostname: "409"
hostname: "406"
imagePullSecrets: imagePullSecrets:
- name: "405" - name: "408"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -685,11 +683,11 @@ spec:
drop: drop:
- H鯂²静ƲǦŐnj汰8ŕİi騎C"6 - H鯂²静ƲǦŐnj汰8ŕİi騎C"6
privileged: false privileged: false
procMount: ȹ均i绝5哇芆斩ìh4Ɋ procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6901713258562004024 runAsGroup: 4041264710404335706
runAsNonRoot: true runAsNonRoot: false
runAsUser: 9148233193771851687 runAsUser: -7299434051955863644
seLinuxOptions: seLinuxOptions:
level: "245" level: "245"
role: "243" role: "243"
@ -701,6 +699,7 @@ spec:
windowsOptions: windowsOptions:
gmsaCredentialSpec: "247" gmsaCredentialSpec: "247"
gmsaCredentialSpecName: "246" gmsaCredentialSpecName: "246"
hostProcess: true
runAsUserName: "248" runAsUserName: "248"
startupProbe: startupProbe:
exec: exec:
@ -735,64 +734,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "394" nodeName: "397"
nodeSelector: nodeSelector:
"390": "391" "393": "394"
overhead: overhead:
"": "359" D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: "" preemptionPolicy: Iƭij韺ʧ>
priority: -860768401 priority: 743241089
priorityClassName: "477" priorityClassName: "480"
readinessGates: readinessGates:
- conditionType: '@.ȇʟ' - conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: 鹚蝉茲ʛ饊 restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
runtimeClassName: "482" runtimeClassName: "485"
schedulerName: "472" schedulerName: "475"
securityContext: securityContext:
fsGroup: -1867959832193971598 fsGroup: 3564097949592109139
fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾! fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6
runAsGroup: 6465579957265382985 runAsGroup: 2960114664726223450
runAsNonRoot: false runAsNonRoot: false
runAsUser: -4904722847506013622 runAsUser: -3496040522639830925
seLinuxOptions: seLinuxOptions:
level: "398" level: "401"
role: "396" role: "399"
type: "397" type: "400"
user: "395" user: "398"
seccompProfile: seccompProfile:
localhostProfile: "404" localhostProfile: "407"
type: '`翾''ųŎ群E牬庘颮6(|ǖû' type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ
supplementalGroups: supplementalGroups:
- -981432507446869083 - 2402603282459663167
sysctls: sysctls:
- name: "402" - name: "405"
value: "403" value: "406"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "400" gmsaCredentialSpec: "403"
gmsaCredentialSpecName: "399" gmsaCredentialSpecName: "402"
runAsUserName: "401" hostProcess: true
serviceAccount: "393" runAsUserName: "404"
serviceAccountName: "392" serviceAccount: "396"
serviceAccountName: "395"
setHostnameAsFQDN: true setHostnameAsFQDN: true
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "407" subdomain: "410"
terminationGracePeriodSeconds: 1736985756995615785 terminationGracePeriodSeconds: 3296766428578159624
tolerations: tolerations:
- effect: ɮ-nʣž吞Ƞ唄®窂爪 - effect: '慰x:'
key: "473" key: "476"
operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ] operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: -5154627301352060136 tolerationSeconds: 3362400521064014157
value: "474" value: "477"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
operator: Exists operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
matchLabels: 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
maxSkew: -2013945465 maxSkew: -174245111
topologyKey: "483" topologyKey: "486"
whenUnsatisfiable: '½ǩ ' whenUnsatisfiable: ""
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1049,20 +1051,20 @@ spec:
rollingUpdate: rollingUpdate:
maxSurge: 3 maxSurge: 3
maxUnavailable: 2 maxUnavailable: 2
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
status: status:
collisionCount: 1177227691 collisionCount: 1714841371
conditions: conditions:
- lastTransitionTime: "2205-11-05T22:21:51Z" - lastTransitionTime: "2124-10-20T09:17:54Z"
message: "491" message: "494"
reason: "490" reason: "493"
status: 盧ŶbșʬÇ[輚趞 status: ""
type: ôD齆O#ȞM<²彾Ǟʈɐ type: ɝ鶼K癨琞Z氞唬蹵ɥeȿĦ
currentNumberScheduled: 2090664533 currentNumberScheduled: -69450448
desiredNumberScheduled: 1219820375 desiredNumberScheduled: 17761427
numberAvailable: 16994744 numberAvailable: 171558604
numberMisscheduled: -1371816595 numberMisscheduled: -212409426
numberReady: -788475912 numberReady: 1329525670
numberUnavailable: 340429479 numberUnavailable: -161888815
observedGeneration: 6637463221525448952 observedGeneration: -721999650192865404
updatedNumberScheduled: -1684048223 updatedNumberScheduled: 1162680985

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -73,116 +73,112 @@ spec:
selfLink: "29" selfLink: "29"
uid: ʬ uid: ʬ
spec: spec:
activeDeadlineSeconds: 579099652389333099 activeDeadlineSeconds: 3305070661619041050
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "408" - key: "407"
operator: 霎ȃň operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values: values:
- "409" - "408"
matchFields: matchFields:
- key: "410" - key: "409"
operator: ʓ滨 operator: '[y#t('
values: values:
- "411" - "410"
weight: -259047269 weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "404" - key: "403"
operator: 灭ƴɦ燻踸陴Sĕ operator: ʓɻŊ0蚢鑸鶲Ãqb轫
values: values:
- "405" - "404"
matchFields: matchFields:
- key: "406" - key: "405"
operator: 筿ɾ operator: ' '
values: values:
- "407" - "406"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: Q_--v-3-BzO5z80n_HtW - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
operator: NotIn operator: Exists
values:
- 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
operator: In operator: DoesNotExist
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
matchLabels: 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 Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
: P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA
namespaces: namespaces:
- "432" - "431"
topologyKey: "433" topologyKey: "432"
weight: 2001693468 weight: -234140
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 3QC1--L--v_Z--ZgC - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: Exists operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: 7Vz_6.Hz_V_.r_v_._X - 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: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "418" - "417"
topologyKey: "419" topologyKey: "418"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8v---a9j23/9 - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
operator: In operator: DoesNotExist
values:
- y__y.9O.L-.m.3h
matchLabels: 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: namespaceSelector:
matchExpressions: 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 - 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: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "460" - "459"
topologyKey: "461" topologyKey: "460"
weight: 1920802622 weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: T - 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: 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
operator: In operator: In
values: 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: 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: namespaces:
- "446" - "445"
topologyKey: "447" topologyKey: "446"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "249" - "249"
@ -201,7 +197,7 @@ spec:
fieldPath: "259" fieldPath: "259"
resourceFieldRef: resourceFieldRef:
containerName: "260" containerName: "260"
divisor: "9" divisor: "861"
resource: "261" resource: "261"
secretKeyRef: secretKeyRef:
key: "265" key: "265"
@ -214,196 +210,197 @@ spec:
prefix: "253" prefix: "253"
secretRef: secretRef:
name: "255" name: "255"
optional: true optional: false
image: "247" image: "247"
imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭 imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "291" - "293"
httpGet: httpGet:
host: "294" host: "295"
httpHeaders: httpHeaders:
- name: "295" - name: "296"
value: "296" value: "297"
path: "292" path: "294"
port: "293" port: -1699531929
scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 scheme: Z涬P­蜷ɔ幩šeS
tcpSocket: tcpSocket:
host: "297" host: "298"
port: 1167615307 port: 155090390
preStop: preStop:
exec: exec:
command: command:
- "298" - "299"
httpGet: httpGet:
host: "300" host: "302"
httpHeaders: httpHeaders:
- name: "301" - name: "303"
value: "302" value: "304"
path: "299" path: "300"
port: -115833863 port: "301"
scheme: ì
tcpSocket: tcpSocket:
host: "304" host: "305"
port: "303" port: -727263154
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "272" - "272"
failureThreshold: -1129218498 failureThreshold: 472742933
httpGet: httpGet:
host: "274" host: "275"
httpHeaders: httpHeaders:
- name: "275" - name: "276"
value: "276" value: "277"
path: "273" path: "273"
port: -1468297794 port: "274"
scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ scheme: 冓鍓贯
initialDelaySeconds: 1308698792 initialDelaySeconds: 1290950685
periodSeconds: -934378634 periodSeconds: 1058960779
successThreshold: -1453143878 successThreshold: -2133441986
tcpSocket: tcpSocket:
host: "278" host: "279"
port: "277" port: "278"
terminationGracePeriodSeconds: 2471155705902100229 terminationGracePeriodSeconds: 217739466937954194
timeoutSeconds: 1401790459 timeoutSeconds: 12533543
name: "246" name: "246"
ports: ports:
- containerPort: -1784617397 - containerPort: -614161319
hostIP: "252" hostIP: "252"
hostPort: 465972736 hostPort: 59244165
name: "251" name: "251"
protocol: Ƭƶ氩Ȩ<6 protocol: Ȩ<6鄰簳°Ļǟi&
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "279" - "280"
failureThreshold: 323903711 failureThreshold: 1843491416
httpGet: httpGet:
host: "281" host: "282"
httpHeaders: httpHeaders:
- name: "282" - name: "283"
value: "283" value: "284"
path: "280" path: "281"
port: -614098868 port: 1401790459
scheme: ȗÔÂɘɢ scheme: ǵɐ鰥Z
initialDelaySeconds: -942399354 initialDelaySeconds: -614098868
periodSeconds: -1803854120 periodSeconds: 846286700
successThreshold: -1412915219 successThreshold: 1080545253
tcpSocket: tcpSocket:
host: "284" host: "285"
port: 802134138 port: -1103045151
terminationGracePeriodSeconds: -9192251189672401053 terminationGracePeriodSeconds: -5175286970144973961
timeoutSeconds: 1264624019 timeoutSeconds: 234253676
resources: resources:
limits: limits:
lNKƙ順\E¦队偯J僳徥淳: "93" ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178"
requests: requests:
媀瓄&翜舞拉Œɥ颶妧Ö闊: "472" Ö闊 鰔澝qV: "752"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ņ
drop:
- )DŽ髐njʉBn(fǂ - )DŽ髐njʉBn(fǂ
drop:
- 曣ŋayåe躒訙
privileged: false privileged: false
procMount: Ǫʓ)ǂť嗆u procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: -495558749504439559 runAsGroup: 6245571390016329382
runAsNonRoot: false runAsNonRoot: true
runAsUser: -6717020695319852049 runAsUser: 1083662227773909466
seLinuxOptions: seLinuxOptions:
level: "309" level: "310"
role: "307" role: "308"
type: "308" type: "309"
user: "306" user: "307"
seccompProfile: seccompProfile:
localhostProfile: "313" localhostProfile: "314"
type: 晲T[irȎ3Ĕ\ type: '|蕎''佉賞ǧ'
windowsOptions: windowsOptions:
gmsaCredentialSpec: "311" gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "310" gmsaCredentialSpecName: "311"
runAsUserName: "312" hostProcess: true
runAsUserName: "313"
startupProbe: startupProbe:
exec: exec:
command: command:
- "285" - "286"
failureThreshold: 1658749995 failureThreshold: -793616601
httpGet: httpGet:
host: "287" host: "289"
httpHeaders: httpHeaders:
- name: "288" - name: "290"
value: "289" value: "291"
path: "286" path: "287"
port: -992558278 port: "288"
scheme: 鯂²静 scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj
initialDelaySeconds: -181601395 initialDelaySeconds: 1658749995
periodSeconds: 1851229369 periodSeconds: 809683205
successThreshold: -560238386 successThreshold: -1615316902
tcpSocket: tcpSocket:
host: "290" host: "292"
port: -402384013 port: -560238386
terminationGracePeriodSeconds: -4030490994049395944 terminationGracePeriodSeconds: -2242897509815578930
timeoutSeconds: -617381112 timeoutSeconds: -938421813
terminationMessagePath: "305" stdin: true
terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ terminationMessagePath: "306"
tty: true terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4
volumeDevices: volumeDevices:
- devicePath: "271" - devicePath: "271"
name: "270" name: "270"
volumeMounts: volumeMounts:
- mountPath: "267" - mountPath: "267"
mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃 mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "266" name: "266"
readOnly: true
subPath: "268" subPath: "268"
subPathExpr: "269" subPathExpr: "269"
workingDir: "250" workingDir: "250"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "474" - "473"
options: options:
- name: "476" - name: "475"
value: "477" value: "476"
searches: searches:
- "475" - "474"
dnsPolicy: '''蠨磼O_h盌3+Œ9两@8' dnsPolicy: +Œ9两
enableServiceLinks: false enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "317" - "318"
command: command:
- "316" - "317"
env: env:
- name: "324" - name: "325"
value: "325" value: "326"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "331" key: "332"
name: "330" name: "331"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "326" apiVersion: "327"
fieldPath: "327" fieldPath: "328"
resourceFieldRef: resourceFieldRef:
containerName: "328" containerName: "329"
divisor: "69" divisor: "992"
resource: "329" resource: "330"
secretKeyRef: secretKeyRef:
key: "333" key: "334"
name: "332" name: "333"
optional: false optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323" name: "323"
optional: false optional: true
image: "315" prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: ǰ詀ǿ忀oɎƺL imagePullPolicy: ǰ詀ǿ忀oɎƺL
lifecycle: lifecycle:
postStart: postStart:
@ -411,85 +408,85 @@ spec:
command: command:
- "361" - "361"
httpGet: httpGet:
host: "364" host: "363"
httpHeaders: httpHeaders:
- name: "365" - name: "364"
value: "366" value: "365"
path: "362" path: "362"
port: "363" port: 1445923603
scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$# scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q
tcpSocket: tcpSocket:
host: "368" host: "367"
port: "367" port: "366"
preStop: preStop:
exec: exec:
command: command:
- "369" - "368"
httpGet: httpGet:
host: "371" host: "371"
httpHeaders: httpHeaders:
- name: "372" - name: "372"
value: "373" value: "373"
path: "370" path: "369"
port: 1791758702 port: "370"
scheme: tl敷斢杧ż鯀 scheme: 杧ż鯀1'
tcpSocket: tcpSocket:
host: "375" host: "374"
port: "374" port: 1297979953
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "340" - "341"
failureThreshold: -36573584 failureThreshold: 2046765799
httpGet: httpGet:
host: "343" host: "343"
httpHeaders: httpHeaders:
- name: "344" - name: "344"
value: "345" value: "345"
path: "341" path: "342"
port: "342" port: 1529027685
scheme: ȥ}礤铟怖ý萜Ǖ scheme: żLj捲攻xƂ9阠$嬏wy¶熀
initialDelaySeconds: -1922458514 initialDelaySeconds: -2106399359
periodSeconds: 692511776 periodSeconds: -1038975198
successThreshold: -1231653807 successThreshold: 1821835340
tcpSocket: tcpSocket:
host: "346" host: "346"
port: -1088996269 port: -1912967242
terminationGracePeriodSeconds: -2524837786321986358 terminationGracePeriodSeconds: -6946775447206795219
timeoutSeconds: 1480364858 timeoutSeconds: 1443270783
name: "314" name: "315"
ports: ports:
- containerPort: -1918622971 - containerPort: -1842062977
hostIP: "320" hostIP: "321"
hostPort: -1656699070 hostPort: -1920304485
name: "319" name: "320"
protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz protocol: 輔3璾ėȜv1b繐汚磉反-n覦
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "347" - "347"
failureThreshold: 1443270783 failureThreshold: 1671084780
httpGet: httpGet:
host: "349" host: "350"
httpHeaders: httpHeaders:
- name: "350" - name: "351"
value: "351" value: "352"
path: "348" path: "348"
port: 1219644543 port: "349"
scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy scheme: Ƒ[澔
initialDelaySeconds: 652646450 initialDelaySeconds: -952255430
periodSeconds: -1912967242 periodSeconds: -824007302
successThreshold: -2106399359 successThreshold: -359713104
tcpSocket: tcpSocket:
host: "353" host: "353"
port: "352" port: 1288391156
terminationGracePeriodSeconds: -4462364494060795190 terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 757223010 timeoutSeconds: 1568034275
resources: resources:
limits: limits:
1b: "328" ʨIk(dŊiɢzĮ蛋I滞: "394"
requests: requests:
'}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699" ɞȥ}礤铟怖ý萜Ǖ: "305"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
@ -498,68 +495,68 @@ spec:
drop: drop:
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true privileged: true
procMount: s44矕Ƈè*鑏= procMount: s44矕Ƈè
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -1232960403847883886 runAsGroup: 73764735411458498
runAsNonRoot: true runAsNonRoot: false
runAsUser: 2114633499332155907 runAsUser: 4224635496843945227
seLinuxOptions: seLinuxOptions:
level: "380" level: "379"
role: "378" role: "377"
type: "379" type: "378"
user: "377" user: "376"
seccompProfile: seccompProfile:
localhostProfile: "384" localhostProfile: "383"
type: ʨ|ǓÓ敆OɈÏ 瞍髃# type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions: windowsOptions:
gmsaCredentialSpec: "382" gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "381" gmsaCredentialSpecName: "380"
runAsUserName: "383" hostProcess: true
runAsUserName: "382"
startupProbe: startupProbe:
exec: exec:
command: command:
- "354" - "354"
failureThreshold: 64459150 failureThreshold: -1031303729
httpGet: httpGet:
host: "356" host: "356"
httpHeaders: httpHeaders:
- name: "357" - name: "357"
value: "358" value: "358"
path: "355" path: "355"
port: -902839620 port: -514169648
scheme: 縆łƑ[澔槃JŵǤ桒ɴ鉂W scheme: '&疀'
initialDelaySeconds: -574742201 initialDelaySeconds: -39292476
periodSeconds: -514169648 periodSeconds: -1312249623
successThreshold: -1186167291 successThreshold: -1089435479
tcpSocket: tcpSocket:
host: "360" host: "360"
port: "359" port: "359"
terminationGracePeriodSeconds: -4166164136222066963 terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: -1182912186 timeoutSeconds: 801902541
stdin: true targetContainerName: "384"
targetContainerName: "385" terminationMessagePath: "375"
terminationMessagePath: "376" terminationMessagePolicy: ǘ炙
terminationMessagePolicy: 鸔ɧWǘ炙
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "339" - devicePath: "340"
name: "338" name: "339"
volumeMounts: volumeMounts:
- mountPath: "335" - mountPath: "336"
mountPropagation: Ik(dŊiɢzĮ蛋I mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m
name: "334" name: "335"
readOnly: true readOnly: true
subPath: "336" subPath: "337"
subPathExpr: "337" subPathExpr: "338"
workingDir: "318" workingDir: "319"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "472" - "471"
ip: "471" ip: "470"
hostNetwork: true hostPID: true
hostname: "402" hostname: "401"
imagePullSecrets: imagePullSecrets:
- name: "401" - name: "400"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -687,11 +684,11 @@ spec:
drop: drop:
- W:ĸ輦唊#v - W:ĸ輦唊#v
privileged: false privileged: false
procMount: Ÿ8T 苧yñKJɐ扵 procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 8839567045362091290 runAsGroup: -1629447906545846003
runAsNonRoot: true runAsNonRoot: true
runAsUser: 1946087648860511217 runAsUser: 7510677649797968740
seLinuxOptions: seLinuxOptions:
level: "241" level: "241"
role: "239" role: "239"
@ -699,10 +696,11 @@ spec:
user: "238" user: "238"
seccompProfile: seccompProfile:
localhostProfile: "245" localhostProfile: "245"
type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 type: 腩墺Ò媁荭gw忊|E剒蔞|表徶
windowsOptions: windowsOptions:
gmsaCredentialSpec: "243" gmsaCredentialSpec: "243"
gmsaCredentialSpecName: "242" gmsaCredentialSpecName: "242"
hostProcess: true
runAsUserName: "244" runAsUserName: "244"
startupProbe: startupProbe:
exec: exec:
@ -728,7 +726,6 @@ spec:
stdin: true stdin: true
terminationMessagePath: "237" terminationMessagePath: "237"
terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
tty: true
volumeDevices: volumeDevices:
- devicePath: "203" - devicePath: "203"
name: "202" name: "202"
@ -740,66 +737,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "390" nodeName: "389"
nodeSelector: nodeSelector:
"386": "387" "385": "386"
overhead: overhead:
»Š: "727" D輷: "792"
preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 1188651641 priority: 347613368
priorityClassName: "473" priorityClassName: "472"
readinessGates: readinessGates:
- conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: W歹s梊ɥʋăƻ restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "478" runtimeClassName: "477"
schedulerName: "468" schedulerName: "467"
securityContext: securityContext:
fsGroup: -8322686588708543096 fsGroup: -3964669311891901178
fsGroupChangePolicy: 4虵p蓋沥7uPƒ fsGroupChangePolicy: ƴ4虵p
runAsGroup: -2549376519991319825 runAsGroup: 3230705132538051674
runAsNonRoot: true runAsNonRoot: true
runAsUser: 3011215457607075123 runAsUser: 3438266910774132295
seLinuxOptions: seLinuxOptions:
level: "394" level: "393"
role: "392" role: "391"
type: "393" type: "392"
user: "391" user: "390"
seccompProfile: seccompProfile:
localhostProfile: "400" localhostProfile: "399"
type: "" type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups: supplementalGroups:
- 8667724420266764868 - -1600417733583164525
sysctls: sysctls:
- name: "398" - name: "397"
value: "399" value: "398"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "396" gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "395" gmsaCredentialSpecName: "394"
runAsUserName: "397" hostProcess: false
serviceAccount: "389" runAsUserName: "396"
serviceAccountName: "388" serviceAccount: "388"
serviceAccountName: "387"
setHostnameAsFQDN: false setHostnameAsFQDN: false
shareProcessNamespace: true shareProcessNamespace: true
subdomain: "403" subdomain: "402"
terminationGracePeriodSeconds: 1031455728822209328 terminationGracePeriodSeconds: -8335674866227004872
tolerations: tolerations:
- effect: ;牆詒ĸąsƶ - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "469" key: "468"
operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: -456102350746071856 tolerationSeconds: 3252034671163905138
value: "470" value: "469"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: br..1.--S-w-5_..D.pz_-ad - 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: In operator: NotIn
values: values:
- Q.__y644 - h.v._5.vB-.-7-.6Jv-86___3
matchLabels: 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 n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -388643187 maxSkew: -484382570
topologyKey: "479" topologyKey: "478"
whenUnsatisfiable: i僠噚恗N whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1051,14 +1049,14 @@ spec:
storagePolicyName: "105" storagePolicyName: "105"
volumePath: "103" volumePath: "103"
status: status:
availableReplicas: 876226690 availableReplicas: -2060941196
conditions: conditions:
- lastTransitionTime: "2951-06-01T06:00:17Z" - lastTransitionTime: "2597-11-21T15:14:16Z"
message: "487" message: "486"
reason: "486" reason: "485"
status: '%ÿ¼璤ňɈȀę' status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎
type: C`牯雫 type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN
fullyLabeledReplicas: 516555648 fullyLabeledReplicas: 415168801
observedGeneration: 1436288218546692842 observedGeneration: 7426283174216567769
readyReplicas: 2104777337 readyReplicas: 1448332644
replicas: -2095627603 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": { "windowsOptions": {
"gmsaCredentialSpecName": "261", "gmsaCredentialSpecName": "261",
"gmsaCredentialSpec": "262", "gmsaCredentialSpec": "262",
"runAsUserName": "263" "runAsUserName": "263",
"hostProcess": false
}, },
"runAsUser": -3342656999442156006, "runAsUser": 8833778257967181711,
"runAsGroup": -5569844914519516591, "runAsGroup": -5647743520459672618,
"runAsNonRoot": true, "runAsNonRoot": true,
"readOnlyRootFilesystem": true, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false, "allowPrivilegeEscalation": true,
"procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ", "procMount": "队偯J僳徥淳4揻",
"seccompProfile": { "seccompProfile": {
"type": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ", "type": "$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ",
"localhostProfile": "264" "localhostProfile": "264"
} }
}, },
"stdin": true, "stdin": true,
"tty": true "stdinOnce": true
} }
], ],
"containers": [ "containers": [
@ -769,8 +770,9 @@
"ports": [ "ports": [
{ {
"name": "270", "name": "270",
"hostPort": -825277526, "hostPort": 1156888068,
"containerPort": 1157117817, "containerPort": -1296077882,
"protocol": "頸",
"hostIP": "271" "hostIP": "271"
} }
], ],
@ -779,7 +781,7 @@
"prefix": "272", "prefix": "272",
"configMapRef": { "configMapRef": {
"name": "273", "name": "273",
"optional": false "optional": true
}, },
"secretRef": { "secretRef": {
"name": "274", "name": "274",
@ -799,12 +801,12 @@
"resourceFieldRef": { "resourceFieldRef": {
"containerName": "279", "containerName": "279",
"resource": "280", "resource": "280",
"divisor": "107" "divisor": "50"
}, },
"configMapKeyRef": { "configMapKeyRef": {
"name": "281", "name": "281",
"key": "282", "key": "282",
"optional": false "optional": true
}, },
"secretKeyRef": { "secretKeyRef": {
"name": "283", "name": "283",
@ -816,19 +818,18 @@
], ],
"resources": { "resources": {
"limits": { "limits": {
"琕鶫:顇ə娯Ȱ囌{": "853" "´摖ȱ": "528"
}, },
"requests": { "requests": {
"Z龏´DÒȗÔÂɘɢ鬍熖B芭花": "372" "鍓贯澔 ƺ蛜6Ɖ飴": "86"
} }
}, },
"volumeMounts": [ "volumeMounts": [
{ {
"name": "285", "name": "285",
"readOnly": true,
"mountPath": "286", "mountPath": "286",
"subPath": "287", "subPath": "287",
"mountPropagation": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻", "mountPropagation": "",
"subPathExpr": "288" "subPathExpr": "288"
} }
], ],
@ -846,54 +847,55 @@
}, },
"httpGet": { "httpGet": {
"path": "292", "path": "292",
"port": "293", "port": -1453143878,
"host": "294", "host": "293",
"scheme": "C\"6x$1s", "scheme": "鰥Z龏´DÒȗ",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "295", "name": "294",
"value": "296" "value": "295"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "297", "port": 1843491416,
"host": "298" "host": "296"
}, },
"initialDelaySeconds": -860435782, "initialDelaySeconds": -1204965397,
"timeoutSeconds": 1067125211, "timeoutSeconds": -494895708,
"periodSeconds": -2088645849, "periodSeconds": -1021949447,
"successThreshold": 1900201288, "successThreshold": 802134138,
"failureThreshold": -766915393, "failureThreshold": -942399354,
"terminationGracePeriodSeconds": 3557544419897236324 "terminationGracePeriodSeconds": 5431518803727886665
}, },
"readinessProbe": { "readinessProbe": {
"exec": { "exec": {
"command": [ "command": [
"299" "297"
] ]
}, },
"httpGet": { "httpGet": {
"path": "300", "path": "298",
"port": -311014176, "port": "299",
"host": "301", "host": "300",
"scheme": "J",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "302", "name": "301",
"value": "303" "value": "302"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": 1076497581, "port": "303",
"host": "304" "host": "304"
}, },
"initialDelaySeconds": 95144287, "initialDelaySeconds": 657418949,
"timeoutSeconds": 363405643, "timeoutSeconds": -992558278,
"periodSeconds": 1635382953, "periodSeconds": 287654902,
"successThreshold": -727263154, "successThreshold": -2062708879,
"failureThreshold": -1449289597, "failureThreshold": 215186711,
"terminationGracePeriodSeconds": 6328236602200940742 "terminationGracePeriodSeconds": -607313695104609402
}, },
"startupProbe": { "startupProbe": {
"exec": { "exec": {
@ -903,9 +905,9 @@
}, },
"httpGet": { "httpGet": {
"path": "306", "path": "306",
"port": 248533396, "port": -617381112,
"host": "307", "host": "307",
"scheme": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ", "scheme": "8ŕİi騎C\"6x",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "308", "name": "308",
@ -914,15 +916,15 @@
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": -674445196, "port": -852140121,
"host": "310" "host": "310"
}, },
"initialDelaySeconds": 1239158543, "initialDelaySeconds": 1606930340,
"timeoutSeconds": -543432015, "timeoutSeconds": 940930263,
"periodSeconds": -515370067, "periodSeconds": -860435782,
"successThreshold": 2073046460, "successThreshold": 1067125211,
"failureThreshold": 1692740191, "failureThreshold": -2088645849,
"terminationGracePeriodSeconds": -1195705267535749940 "terminationGracePeriodSeconds": 8161302388850132593
}, },
"lifecycle": { "lifecycle": {
"postStart": { "postStart": {
@ -933,392 +935,394 @@
}, },
"httpGet": { "httpGet": {
"path": "312", "path": "312",
"port": "313", "port": 1167615307,
"host": "314", "host": "313",
"scheme": "Ǣ曣ŋayåe躒訙", "scheme": "vEȤƏ埮p",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "315", "name": "314",
"value": "316" "value": "315"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "317", "port": "316",
"host": "318" "host": "317"
} }
}, },
"preStop": { "preStop": {
"exec": { "exec": {
"command": [ "command": [
"319" "318"
] ]
}, },
"httpGet": { "httpGet": {
"path": "320", "path": "319",
"port": "321", "port": 1575106083,
"host": "322", "host": "320",
"scheme": "uE增猍ǵ xǨŴ", "scheme": "ş",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "323", "name": "321",
"value": "324" "value": "322"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": 2112112129, "port": "323",
"host": "325" "host": "324"
} }
} }
}, },
"terminationMessagePath": "326", "terminationMessagePath": "325",
"terminationMessagePolicy": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗", "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
"imagePullPolicy": "ĒzŔ瘍Nʊ", "imagePullPolicy": "ņ",
"securityContext": { "securityContext": {
"capabilities": { "capabilities": {
"add": [ "add": [
"璾ėȜv" "DŽ髐njʉBn(fǂǢ曣"
], ],
"drop": [ "drop": [
"b繐汚磉反-n覦灲閈誹" "ay"
] ]
}, },
"privileged": true, "privileged": false,
"seLinuxOptions": { "seLinuxOptions": {
"user": "327", "user": "326",
"role": "328", "role": "327",
"type": "329", "type": "328",
"level": "330" "level": "329"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "331", "gmsaCredentialSpecName": "330",
"gmsaCredentialSpec": "332", "gmsaCredentialSpec": "331",
"runAsUserName": "333" "runAsUserName": "332",
"hostProcess": true
}, },
"runAsUser": 8423952810832831481, "runAsUser": -3576337664396773931,
"runAsGroup": 7806703309589874498, "runAsGroup": -4786249339103684082,
"runAsNonRoot": true, "runAsNonRoot": true,
"readOnlyRootFilesystem": true, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false, "allowPrivilegeEscalation": true,
"procMount": "k(dŊiɢzĮ蛋I滞廬耐", "procMount": "u8晲",
"seccompProfile": { "seccompProfile": {
"type": "焬CQm坊柩", "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
"localhostProfile": "334" "localhostProfile": "333"
} }
} },
"stdin": true
} }
], ],
"ephemeralContainers": [ "ephemeralContainers": [
{ {
"name": "335", "name": "334",
"image": "336", "image": "335",
"command": [ "command": [
"337" "336"
], ],
"args": [ "args": [
"338" "337"
], ],
"workingDir": "339", "workingDir": "338",
"ports": [ "ports": [
{ {
"name": "340", "name": "339",
"hostPort": 1141812777, "hostPort": 1453852685,
"containerPort": -1830926023, "containerPort": 2037135322,
"protocol": "®EĨǔvÄÚ×p", "protocol": "ǧĒzŔ瘍N",
"hostIP": "341" "hostIP": "340"
} }
], ],
"envFrom": [ "envFrom": [
{ {
"prefix": "342", "prefix": "341",
"configMapRef": { "configMapRef": {
"name": "343", "name": "342",
"optional": true "optional": true
}, },
"secretRef": { "secretRef": {
"name": "344", "name": "343",
"optional": true "optional": true
} }
} }
], ],
"env": [ "env": [
{ {
"name": "345", "name": "344",
"value": "346", "value": "345",
"valueFrom": { "valueFrom": {
"fieldRef": { "fieldRef": {
"apiVersion": "347", "apiVersion": "346",
"fieldPath": "348" "fieldPath": "347"
}, },
"resourceFieldRef": { "resourceFieldRef": {
"containerName": "349", "containerName": "348",
"resource": "350", "resource": "349",
"divisor": "60" "divisor": "464"
}, },
"configMapKeyRef": { "configMapKeyRef": {
"name": "351", "name": "350",
"key": "352", "key": "351",
"optional": true "optional": true
}, },
"secretKeyRef": { "secretKeyRef": {
"name": "353", "name": "352",
"key": "354", "key": "353",
"optional": true "optional": false
} }
} }
} }
], ],
"resources": { "resources": {
"limits": { "limits": {
"": "262" "汚磉反-n": "653"
}, },
"requests": { "requests": {
"Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶": "1" "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
} }
}, },
"volumeMounts": [ "volumeMounts": [
{ {
"name": "355", "name": "354",
"mountPath": "356", "mountPath": "355",
"subPath": "357", "subPath": "356",
"mountPropagation": "TGÒ鵌Ē3Nh×DJ", "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
"subPathExpr": "358" "subPathExpr": "357"
} }
], ],
"volumeDevices": [ "volumeDevices": [
{ {
"name": "359", "name": "358",
"devicePath": "360" "devicePath": "359"
} }
], ],
"livenessProbe": { "livenessProbe": {
"exec": { "exec": {
"command": [ "command": [
"361" "360"
] ]
}, },
"httpGet": { "httpGet": {
"path": "362", "path": "361",
"port": -514169648, "port": -1088996269,
"host": "363", "host": "362",
"scheme": "\u0026疀", "scheme": "ƘƵŧ1ƟƓ宆!",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "364", "name": "363",
"value": "365" "value": "364"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "366", "port": -1836225650,
"host": "367" "host": "365"
}, },
"initialDelaySeconds": -39292476, "initialDelaySeconds": -1065853311,
"timeoutSeconds": 801902541, "timeoutSeconds": 559999152,
"periodSeconds": -1312249623, "periodSeconds": -843639240,
"successThreshold": -1089435479, "successThreshold": 1573261475,
"failureThreshold": -1031303729, "failureThreshold": -1211577347,
"terminationGracePeriodSeconds": -7317946572666008364 "terminationGracePeriodSeconds": 6567123901989213629
}, },
"readinessProbe": { "readinessProbe": {
"exec": { "exec": {
"command": [ "command": [
"368" "366"
] ]
}, },
"httpGet": { "httpGet": {
"path": "369", "path": "367",
"port": "370", "port": 705333281,
"host": "371", "host": "368",
"scheme": "ȷǻ.wȏâ磠Ƴ崖S«V¯ÁȦtl敷斢", "scheme": "xƂ9阠",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "372", "name": "369",
"value": "373" "value": "370"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "374", "port": -916583020,
"host": "375" "host": "371"
}, },
"initialDelaySeconds": 2102595797, "initialDelaySeconds": -606614374,
"timeoutSeconds": -1921957558, "timeoutSeconds": -3478003,
"periodSeconds": 180543684, "periodSeconds": 498878902,
"successThreshold": -1050610482, "successThreshold": 652646450,
"failureThreshold": 1191111236, "failureThreshold": 757223010,
"terminationGracePeriodSeconds": 5574781452707956333 "terminationGracePeriodSeconds": -8216131738691912586
}, },
"startupProbe": { "startupProbe": {
"exec": { "exec": {
"command": [ "command": [
"376" "372"
] ]
}, },
"httpGet": { "httpGet": {
"path": "377", "path": "373",
"port": "378", "port": "374",
"host": "379", "host": "375",
"scheme": "餸硷", "scheme": "Ů\u003cy鯶縆łƑ[澔",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "380", "name": "376",
"value": "381" "value": "377"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": 731136838, "port": 1288391156,
"host": "382" "host": "378"
}, },
"initialDelaySeconds": 1701169865, "initialDelaySeconds": -952255430,
"timeoutSeconds": 685946195, "timeoutSeconds": 1568034275,
"periodSeconds": 1871363087, "periodSeconds": -824007302,
"successThreshold": -614257963, "successThreshold": -359713104,
"failureThreshold": 1517970305, "failureThreshold": 1671084780,
"terminationGracePeriodSeconds": -3984053182430357055 "terminationGracePeriodSeconds": 1571605531283019612
}, },
"lifecycle": { "lifecycle": {
"postStart": { "postStart": {
"exec": { "exec": {
"command": [ "command": [
"383" "379"
] ]
}, },
"httpGet": { "httpGet": {
"path": "384", "path": "380",
"port": "385", "port": "381",
"host": "386", "host": "382",
"scheme": "ű嵞嬯t{Eɾ敹Ȯ-湷D谹気Ƀ秮òƬ", "scheme": "%ʝ`ǭ",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "387", "name": "383",
"value": "388" "value": "384"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "389", "port": -1467648837,
"host": "390" "host": "385"
} }
}, },
"preStop": { "preStop": {
"exec": { "exec": {
"command": [ "command": [
"391" "386"
] ]
}, },
"httpGet": { "httpGet": {
"path": "392", "path": "387",
"port": "393", "port": "388",
"host": "394", "host": "389",
"scheme": "cx赮ǒđ\u003e*劶?j", "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "395", "name": "390",
"value": "396" "value": "391"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "397", "port": "392",
"host": "398" "host": "393"
} }
} }
}, },
"terminationMessagePath": "399", "terminationMessagePath": "394",
"terminationMessagePolicy": "¥", "terminationMessagePolicy": "¯ÁȦtl敷斢",
"imagePullPolicy": "Ƈè*鑏='ʨ|ǓÓ敆OɈÏ 瞍髃", "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
"securityContext": { "securityContext": {
"capabilities": { "capabilities": {
"add": [ "add": [
"ȕW歹s" "鬬$矐_敕ű嵞嬯t{Eɾ"
], ],
"drop": [ "drop": [
"ɥʋăƻ遲" "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
] ]
}, },
"privileged": true, "privileged": true,
"seLinuxOptions": { "seLinuxOptions": {
"user": "400", "user": "395",
"role": "401", "role": "396",
"type": "402", "type": "397",
"level": "403" "level": "398"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "404", "gmsaCredentialSpecName": "399",
"gmsaCredentialSpec": "405", "gmsaCredentialSpec": "400",
"runAsUserName": "406" "runAsUserName": "401",
"hostProcess": true
}, },
"runAsUser": 3805707846751185585, "runAsUser": 4224635496843945227,
"runAsGroup": 4820130167691486230, "runAsGroup": 73764735411458498,
"runAsNonRoot": false, "runAsNonRoot": false,
"readOnlyRootFilesystem": false, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true, "allowPrivilegeEscalation": false,
"procMount": "Ů嫠!@@)Zq=歍þ螗ɃŒGm", "procMount": "s44矕Ƈè",
"seccompProfile": { "seccompProfile": {
"type": "z鋎", "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
"localhostProfile": "407" "localhostProfile": "402"
} }
}, },
"tty": true, "tty": true,
"targetContainerName": "408" "targetContainerName": "403"
} }
], ],
"restartPolicy": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸", "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
"terminationGracePeriodSeconds": -8963807447996144781, "terminationGracePeriodSeconds": -8335674866227004872,
"activeDeadlineSeconds": -5539971415578447792, "activeDeadlineSeconds": 3305070661619041050,
"dnsPolicy": "6", "dnsPolicy": "+Œ9两",
"nodeSelector": { "nodeSelector": {
"409": "410" "404": "405"
}, },
"serviceAccountName": "411", "serviceAccountName": "406",
"serviceAccount": "412", "serviceAccount": "407",
"automountServiceAccountToken": false, "automountServiceAccountToken": false,
"nodeName": "413", "nodeName": "408",
"hostNetwork": true,
"hostPID": true, "hostPID": true,
"hostIPC": true,
"shareProcessNamespace": true, "shareProcessNamespace": true,
"securityContext": { "securityContext": {
"seLinuxOptions": { "seLinuxOptions": {
"user": "414", "user": "409",
"role": "415", "role": "410",
"type": "416", "type": "411",
"level": "417" "level": "412"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "418", "gmsaCredentialSpecName": "413",
"gmsaCredentialSpec": "419", "gmsaCredentialSpec": "414",
"runAsUserName": "420" "runAsUserName": "415",
"hostProcess": false
}, },
"runAsUser": 4290717681745188904, "runAsUser": 3438266910774132295,
"runAsGroup": 3355244307027629244, "runAsGroup": 3230705132538051674,
"runAsNonRoot": false, "runAsNonRoot": true,
"supplementalGroups": [ "supplementalGroups": [
-7106117411092125093 -1600417733583164525
], ],
"fsGroup": -9164240834267238973, "fsGroup": -3964669311891901178,
"sysctls": [ "sysctls": [
{ {
"name": "421", "name": "416",
"value": "422" "value": "417"
} }
], ],
"fsGroupChangePolicy": "", "fsGroupChangePolicy": "ƴ4虵p",
"seccompProfile": { "seccompProfile": {
"type": "d'呪", "type": "沥7uPƒw©ɴĶ烷Ľthp",
"localhostProfile": "423" "localhostProfile": "418"
} }
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
"name": "424" "name": "419"
} }
], ],
"hostname": "425", "hostname": "420",
"subdomain": "426", "subdomain": "421",
"affinity": { "affinity": {
"nodeAffinity": { "nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": { "requiredDuringSchedulingIgnoredDuringExecution": {
@ -1326,19 +1330,19 @@
{ {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "427", "key": "422",
"operator": "W瀤oɢ嫎¸殚篎3o8[y", "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
"values": [ "values": [
"428" "423"
] ]
} }
], ],
"matchFields": [ "matchFields": [
{ {
"key": "429", "key": "424",
"operator": "ï驿笈", "operator": " ",
"values": [ "values": [
"430" "425"
] ]
} }
] ]
@ -1347,23 +1351,23 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1009377808, "weight": -5241849,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "431", "key": "426",
"operator": "a餖Ľƛ淴ɑ?¶ȲƪE1º轪d覉;Ĕ颪", "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
"values": [ "values": [
"432" "427"
] ]
} }
], ],
"matchFields": [ "matchFields": [
{ {
"key": "433", "key": "428",
"operator": "惍EʦŊĊ娮rȧ", "operator": "[y#t(",
"values": [ "values": [
"434" "429"
] ]
} }
] ]
@ -1376,7 +1380,7 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
@ -1389,9 +1393,9 @@
] ]
}, },
"namespaces": [ "namespaces": [
"441" "436"
], ],
"topologyKey": "442", "topologyKey": "437",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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" "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": [ "namespaces": [
"455" "450"
], ],
"topologyKey": "456", "topologyKey": "451",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "matchLabels": {
"Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E" "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
@ -1457,9 +1461,9 @@
] ]
}, },
"namespaces": [ "namespaces": [
"469" "464"
], ],
"topologyKey": "470", "topologyKey": "465",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "matchLabels": {
"m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT" "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
@ -1492,9 +1496,9 @@
] ]
}, },
"namespaces": [ "namespaces": [
"483" "478"
], ],
"topologyKey": "484", "topologyKey": "479",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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" "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": [ "tolerations": [
{ {
"key": "492", "key": "487",
"operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸", "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
"value": "493", "value": "488",
"effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ", "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
"tolerationSeconds": 3252034671163905138 "tolerationSeconds": 3252034671163905138
} }
], ],
"hostAliases": [ "hostAliases": [
{ {
"ip": "494", "ip": "489",
"hostnames": [ "hostnames": [
"495" "490"
] ]
} }
], ],
"priorityClassName": "496", "priorityClassName": "491",
"priority": 347613368, "priority": 347613368,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"497" "492"
], ],
"searches": [ "searches": [
"498" "493"
], ],
"options": [ "options": [
{ {
"name": "499", "name": "494",
"value": "500" "value": "495"
} }
] ]
}, },
@ -1550,7 +1554,7 @@
"conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ" "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
} }
], ],
"runtimeClassName": "501", "runtimeClassName": "496",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆", "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
"overhead": { "overhead": {
@ -1559,7 +1563,7 @@
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -484382570, "maxSkew": -484382570,
"topologyKey": "502", "topologyKey": "497",
"whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`", "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
@ -1591,13 +1595,13 @@
"status": { "status": {
"active": [ "active": [
{ {
"kind": "509", "kind": "504",
"namespace": "510", "namespace": "505",
"name": "511", "name": "506",
"uid": "暉Ŝ!ȣ绰", "uid": "暉Ŝ!ȣ绰",
"apiVersion": "512", "apiVersion": "507",
"resourceVersion": "513", "resourceVersion": "508",
"fieldPath": "514" "fieldPath": "509"
} }
] ]
} }

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -674,21 +674,21 @@
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "240", "gmsaCredentialSpecName": "240",
"gmsaCredentialSpec": "241", "gmsaCredentialSpec": "241",
"runAsUserName": "242" "runAsUserName": "242",
"hostProcess": false
}, },
"runAsUser": -1471909806757355977, "runAsUser": 8519427267030036521,
"runAsGroup": 2673502285499267331, "runAsGroup": -4151726557168738613,
"runAsNonRoot": true, "runAsNonRoot": true,
"readOnlyRootFilesystem": true, "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true, "allowPrivilegeEscalation": false,
"procMount": "ux", "procMount": "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ",
"seccompProfile": { "seccompProfile": {
"type": "VƋZ1Ůđ眊ľǎɳ,ǿ飏", "type": "ǣ萭",
"localhostProfile": "243" "localhostProfile": "243"
} }
}, },
"stdin": true, "stdin": true
"stdinOnce": true
} }
], ],
"containers": [ "containers": [
@ -705,9 +705,9 @@
"ports": [ "ports": [
{ {
"name": "249", "name": "249",
"hostPort": 474119379, "hostPort": 70206540,
"containerPort": 1923334396, "containerPort": -1694108493,
"protocol": "旿@掇lNdǂ\u003e5姣\u003e懔%熷谟þ", "protocol": "ǂ\u003e5姣\u003e懔%熷",
"hostIP": "250" "hostIP": "250"
} }
], ],
@ -716,11 +716,11 @@
"prefix": "251", "prefix": "251",
"configMapRef": { "configMapRef": {
"name": "252", "name": "252",
"optional": false "optional": true
}, },
"secretRef": { "secretRef": {
"name": "253", "name": "253",
"optional": true "optional": false
} }
} }
], ],
@ -736,36 +736,35 @@
"resourceFieldRef": { "resourceFieldRef": {
"containerName": "258", "containerName": "258",
"resource": "259", "resource": "259",
"divisor": "771" "divisor": "138"
}, },
"configMapKeyRef": { "configMapKeyRef": {
"name": "260", "name": "260",
"key": "261", "key": "261",
"optional": false "optional": true
}, },
"secretKeyRef": { "secretKeyRef": {
"name": "262", "name": "262",
"key": "263", "key": "263",
"optional": true "optional": false
} }
} }
} }
], ],
"resources": { "resources": {
"limits": { "limits": {
"吐": "777" "脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻": "575"
}, },
"requests": { "requests": {
"rʤî萨zvt莭琽§ć\\ ïì": "80" "丯Ƙ枛牐ɺ皚|": "933"
} }
}, },
"volumeMounts": [ "volumeMounts": [
{ {
"name": "264", "name": "264",
"readOnly": true,
"mountPath": "265", "mountPath": "265",
"subPath": "266", "subPath": "266",
"mountPropagation": "0矀Kʝ瘴I\\p[ħsĨɆâĺɗŹ倗S", "mountPropagation": "[ħsĨɆâĺɗŹ倗S晒嶗UÐ_Ʈ",
"subPathExpr": "267" "subPathExpr": "267"
} }
], ],
@ -783,9 +782,8 @@
}, },
"httpGet": { "httpGet": {
"path": "271", "path": "271",
"port": -1285424066, "port": 1087851818,
"host": "272", "host": "272",
"scheme": "ni酛3ƁÀ",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "273", "name": "273",
@ -932,19 +930,21 @@
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "307", "gmsaCredentialSpecName": "307",
"gmsaCredentialSpec": "308", "gmsaCredentialSpec": "308",
"runAsUserName": "309" "runAsUserName": "309",
"hostProcess": false
}, },
"runAsUser": -857934902638099053, "runAsUser": 161123823296532265,
"runAsGroup": 8967035373007538858, "runAsGroup": -6406791857291159870,
"runAsNonRoot": true, "runAsNonRoot": false,
"readOnlyRootFilesystem": false, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false, "allowPrivilegeEscalation": false,
"procMount": "Z鐫û咡W\u003c敄lu", "procMount": "鐫û咡W\u003c敄lu|榝",
"seccompProfile": { "seccompProfile": {
"type": "榝$î.Ȏ蝪ʜ5遰", "type": "î.Ȏ蝪ʜ5遰=",
"localhostProfile": "310" "localhostProfile": "310"
} }
}, },
"stdin": true,
"stdinOnce": true, "stdinOnce": true,
"tty": true "tty": true
} }
@ -963,9 +963,9 @@
"ports": [ "ports": [
{ {
"name": "316", "name": "316",
"hostPort": -1462219068, "hostPort": -370386363,
"containerPort": -370386363, "containerPort": 1714588921,
"protocol": "wƯ貾坢'跩aŕ翑0展}", "protocol": "Ư貾",
"hostIP": "317" "hostIP": "317"
} }
], ],
@ -974,7 +974,7 @@
"prefix": "318", "prefix": "318",
"configMapRef": { "configMapRef": {
"name": "319", "name": "319",
"optional": false "optional": true
}, },
"secretRef": { "secretRef": {
"name": "320", "name": "320",
@ -994,35 +994,36 @@
"resourceFieldRef": { "resourceFieldRef": {
"containerName": "325", "containerName": "325",
"resource": "326", "resource": "326",
"divisor": "185" "divisor": "271"
}, },
"configMapKeyRef": { "configMapKeyRef": {
"name": "327", "name": "327",
"key": "328", "key": "328",
"optional": true "optional": false
}, },
"secretKeyRef": { "secretKeyRef": {
"name": "329", "name": "329",
"key": "330", "key": "330",
"optional": false "optional": true
} }
} }
} }
], ],
"resources": { "resources": {
"limits": { "limits": {
"鬶l獕;跣Hǝcw": "242" "庰%皧V": "116"
}, },
"requests": { "requests": {
"$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ": "637" "": "289"
} }
}, },
"volumeMounts": [ "volumeMounts": [
{ {
"name": "331", "name": "331",
"readOnly": true,
"mountPath": "332", "mountPath": "332",
"subPath": "333", "subPath": "333",
"mountPropagation": "", "mountPropagation": "橨鬶l獕;跣Hǝcw媀瓄\u0026翜舞拉Œ",
"subPathExpr": "334" "subPathExpr": "334"
} }
], ],
@ -1040,26 +1041,26 @@
}, },
"httpGet": { "httpGet": {
"path": "338", "path": "338",
"port": "339", "port": 1907998540,
"host": "340", "host": "339",
"scheme": "", "scheme": "",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "341", "name": "340",
"value": "342" "value": "341"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": 1315054653, "port": "342",
"host": "343" "host": "343"
}, },
"initialDelaySeconds": 711020087, "initialDelaySeconds": -253326525,
"timeoutSeconds": 1103049140, "timeoutSeconds": 567263590,
"periodSeconds": -1965247100, "periodSeconds": 887319241,
"successThreshold": 218453478, "successThreshold": 1559618829,
"failureThreshold": 1993268896, "failureThreshold": 1156888068,
"terminationGracePeriodSeconds": -9140155223242250138 "terminationGracePeriodSeconds": -5566612115749133989
}, },
"readinessProbe": { "readinessProbe": {
"exec": { "exec": {
@ -1069,9 +1070,9 @@
}, },
"httpGet": { "httpGet": {
"path": "345", "path": "345",
"port": -1315487077, "port": 1315054653,
"host": "346", "host": "346",
"scheme": "ğ_", "scheme": "蚃ɣľ)酊龨δ摖ȱ",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "347", "name": "347",
@ -1083,12 +1084,12 @@
"port": "349", "port": "349",
"host": "350" "host": "350"
}, },
"initialDelaySeconds": 1272940694, "initialDelaySeconds": 1905181464,
"timeoutSeconds": -385597677, "timeoutSeconds": -1730959016,
"periodSeconds": 422133388, "periodSeconds": 1272940694,
"successThreshold": 1952458416, "successThreshold": -385597677,
"failureThreshold": 1456461851, "failureThreshold": 422133388,
"terminationGracePeriodSeconds": -6078441689118311403 "terminationGracePeriodSeconds": 8385745044578923915
}, },
"startupProbe": { "startupProbe": {
"exec": { "exec": {
@ -1098,9 +1099,9 @@
}, },
"httpGet": { "httpGet": {
"path": "352", "path": "352",
"port": 1332783160, "port": 1013673874,
"host": "353", "host": "353",
"scheme": "Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ;", "scheme": "ə娯Ȱ囌{",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "354", "name": "354",
@ -1109,156 +1110,158 @@
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": "356", "port": -1829146875,
"host": "357" "host": "356"
}, },
"initialDelaySeconds": -300247800, "initialDelaySeconds": -205176266,
"timeoutSeconds": 386804041, "timeoutSeconds": 490479437,
"periodSeconds": -126958936, "periodSeconds": -116469891,
"successThreshold": 186945072, "successThreshold": 311083651,
"failureThreshold": 620822482, "failureThreshold": 353361793,
"terminationGracePeriodSeconds": -2203905759223555727 "terminationGracePeriodSeconds": -8939747084334542875
}, },
"lifecycle": { "lifecycle": {
"postStart": { "postStart": {
"exec": { "exec": {
"command": [ "command": [
"358" "357"
] ]
}, },
"httpGet": { "httpGet": {
"path": "359", "path": "358",
"port": "360", "port": -1021949447,
"host": "361", "host": "359",
"scheme": "鯂²静", "scheme": "B芭",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "362", "name": "360",
"value": "363" "value": "361"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": -402384013, "port": "362",
"host": "364" "host": "363"
} }
}, },
"preStop": { "preStop": {
"exec": { "exec": {
"command": [ "command": [
"365" "364"
] ]
}, },
"httpGet": { "httpGet": {
"path": "366", "path": "365",
"port": "367", "port": "366",
"host": "368", "host": "367",
"scheme": "鏻砅邻爥", "scheme": "yƕ丆録²Ŏ)",
"httpHeaders": [ "httpHeaders": [
{ {
"name": "369", "name": "368",
"value": "370" "value": "369"
} }
] ]
}, },
"tcpSocket": { "tcpSocket": {
"port": -305362540, "port": 507384491,
"host": "371" "host": "370"
} }
} }
}, },
"terminationMessagePath": "372", "terminationMessagePath": "371",
"terminationMessagePolicy": "Ǩ繫ʎǑyZ涬P­蜷ɔ幩", "terminationMessagePolicy": "3",
"imagePullPolicy": "i绝5哇芆斩", "imagePullPolicy": "汰8ŕİi騎C\"6x$1s",
"securityContext": { "securityContext": {
"capabilities": { "capabilities": {
"add": [ "add": [
"" "p鋄5弢ȹ均i绝5"
], ],
"drop": [ "drop": [
"ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ" ""
] ]
}, },
"privileged": false, "privileged": true,
"seLinuxOptions": { "seLinuxOptions": {
"user": "373", "user": "372",
"role": "374", "role": "373",
"type": "375", "type": "374",
"level": "376" "level": "375"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "377", "gmsaCredentialSpecName": "376",
"gmsaCredentialSpec": "378", "gmsaCredentialSpec": "377",
"runAsUserName": "379" "runAsUserName": "378",
"hostProcess": false
}, },
"runAsUser": -7936947433725476327, "runAsUser": -3385088507022597813,
"runAsGroup": -5712715102324619404, "runAsGroup": 7023916302283403328,
"runAsNonRoot": false, "runAsNonRoot": false,
"readOnlyRootFilesystem": false, "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true, "allowPrivilegeEscalation": false,
"procMount": "W賁Ěɭɪǹ0", "procMount": "ş",
"seccompProfile": { "seccompProfile": {
"type": ",ƷƣMț譎懚XW疪鑳", "type": "諔迮ƙ",
"localhostProfile": "380" "localhostProfile": "379"
} }
}, },
"stdin": true,
"stdinOnce": true, "stdinOnce": true,
"tty": true, "targetContainerName": "380"
"targetContainerName": "381"
} }
], ],
"restartPolicy": "眵笭/9崍h趭(娕uE增猍ǵ x", "restartPolicy": "4ʗN,丽饾| 鞤ɱď",
"terminationGracePeriodSeconds": 5164725064832182831, "terminationGracePeriodSeconds": 5667186155078596628,
"activeDeadlineSeconds": -5669474827175536499, "activeDeadlineSeconds": 8952305945735902812,
"dnsPolicy": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎", "dnsPolicy": "µņP)DŽ髐njʉBn(fǂǢ",
"nodeSelector": { "nodeSelector": {
"382": "383" "381": "382"
}, },
"serviceAccountName": "384", "serviceAccountName": "383",
"serviceAccount": "385", "serviceAccount": "384",
"automountServiceAccountToken": false, "automountServiceAccountToken": false,
"nodeName": "386", "nodeName": "385",
"hostNetwork": true,
"hostPID": true, "hostPID": true,
"shareProcessNamespace": false, "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": { "securityContext": {
"seLinuxOptions": { "seLinuxOptions": {
"user": "387", "user": "386",
"role": "388", "role": "387",
"type": "389", "type": "388",
"level": "390" "level": "389"
}, },
"windowsOptions": { "windowsOptions": {
"gmsaCredentialSpecName": "391", "gmsaCredentialSpecName": "390",
"gmsaCredentialSpec": "392", "gmsaCredentialSpec": "391",
"runAsUserName": "393" "runAsUserName": "392",
"hostProcess": true
}, },
"runAsUser": 8748656795747647539, "runAsUser": 2373631082804169687,
"runAsGroup": 1362411221198469787, "runAsGroup": 6942343986058351509,
"runAsNonRoot": false, "runAsNonRoot": true,
"supplementalGroups": [ "supplementalGroups": [
6117757314288468928 3174735363260936461
], ],
"fsGroup": 692941646129076193, "fsGroup": -8460346884535567850,
"sysctls": [ "sysctls": [
{ {
"name": "394", "name": "393",
"value": "395" "value": "394"
} }
], ],
"fsGroupChangePolicy": "Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ", "fsGroupChangePolicy": "8",
"seccompProfile": { "seccompProfile": {
"type": "箨ʨIk(dŊiɢ", "type": "T[",
"localhostProfile": "396" "localhostProfile": "395"
} }
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
"name": "397" "name": "396"
} }
], ],
"hostname": "398", "hostname": "397",
"subdomain": "399", "subdomain": "398",
"affinity": { "affinity": {
"nodeAffinity": { "nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": { "requiredDuringSchedulingIgnoredDuringExecution": {
@ -1266,19 +1269,19 @@
{ {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "400", "key": "399",
"operator": "y竬ʆɞȥ}礤铟怖ý萜Ǖc8", "operator": "Ƶf",
"values": [ "values": [
"401" "400"
] ]
} }
], ],
"matchFields": [ "matchFields": [
{ {
"key": "402", "key": "401",
"operator": "ĝ®EĨǔvÄÚ×p鬷", "operator": "X鰨松/Ȁĵ鴁ĩȲǸ|蕎'佉賞",
"values": [ "values": [
"403" "402"
] ]
} }
] ]
@ -1287,23 +1290,23 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -843639240, "weight": -1519458130,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "404", "key": "403",
"operator": "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$", "operator": "Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n",
"values": [ "values": [
"405" "404"
] ]
} }
], ],
"matchFields": [ "matchFields": [
{ {
"key": "406", "key": "405",
"operator": "Z漤ŗ坟Ů\u003cy鯶縆ł", "operator": "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ",
"values": [ "values": [
"407" "406"
] ]
} }
] ]
@ -1316,32 +1319,29 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "4.B.__6m", "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q",
"operator": "In", "operator": "DoesNotExist"
"values": [
"3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn"
]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"414" "413"
], ],
"topologyKey": "415", "topologyKey": "414",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "matchLabels": {
"x-3/6-.7D.3_KPgL": "d._.Um.-__k.5" "4sE4": "B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", "key": "0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs",
"operator": "In", "operator": "NotIn",
"values": [ "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": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 1036096141, "weight": -688929182,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "Y.39g_.--_-_ve5.m_U", "key": "3--51",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1" "C.-e16-O5"
] ]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"428" "427"
], ],
"topologyKey": "429", "topologyKey": "428",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "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", "key": "8mtxb__-ex-_1_-ODgC_1-_8__3",
"operator": "NotIn", "operator": "DoesNotExist"
"values": [
"l67Q.-_t--O.3L.z2-y.-...C4_-_2G8"
]
} }
] ]
} }
@ -1393,29 +1390,26 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "4b699/B9n.2", "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": "In", "operator": "Exists"
"values": [
"MM7-.e.x"
]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"442" "441"
], ],
"topologyKey": "443", "topologyKey": "442",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J", "key": "P6j.u--.K--g__..b",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1424,34 +1418,34 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 1131487788, "weight": -616061040,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "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", "key": "b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X",
"operator": "NotIn", "operator": "Exists"
"values": [
"u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m"
]
} }
] ]
}, },
"namespaces": [ "namespaces": [
"456" "455"
], ],
"topologyKey": "457", "topologyKey": "456",
"namespaceSelector": { "namespaceSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T", "key": "vi.Z",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"03l-_86_u2-7_._qN__A_f_-B3_U__L.H"
]
} }
] ]
} }
@ -1460,67 +1454,64 @@
] ]
} }
}, },
"schedulerName": "464", "schedulerName": "463",
"tolerations": [ "tolerations": [
{ {
"key": "465", "key": "464",
"operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ", "operator": "瘂S淫íŶƭ鬯富Nú顏*z犔kU",
"value": "466", "value": "465",
"effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸", "effect": "甬Ʈ岢r臣鐐qwïźU痤ȵ",
"tolerationSeconds": -3147305732428645642 "tolerationSeconds": -4322909565451750640
} }
], ],
"hostAliases": [ "hostAliases": [
{ {
"ip": "467", "ip": "466",
"hostnames": [ "hostnames": [
"468" "467"
] ]
} }
], ],
"priorityClassName": "469", "priorityClassName": "468",
"priority": -1756088332, "priority": 780753434,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"470" "469"
], ],
"searches": [ "searches": [
"471" "470"
], ],
"options": [ "options": [
{ {
"name": "472", "name": "471",
"value": "473" "value": "472"
} }
] ]
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "#sM網" "conditionType": "¤趜磕绘翁揌p:oŇE"
} }
], ],
"runtimeClassName": "474", "runtimeClassName": "473",
"enableServiceLinks": true, "enableServiceLinks": false,
"preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡", "preemptionPolicy": "ħ\\",
"overhead": { "overhead": {
"炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452" "kƱ": "313"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -447559705, "maxSkew": 1674267790,
"topologyKey": "475", "topologyKey": "474",
"whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒", "whenUnsatisfiable": "G峣搒R谱ʜ篲\u0026ZǘtnjʣǕV",
"labelSelector": { "labelSelector": {
"matchLabels": { "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": [ "matchExpressions": [
{ {
"key": "KTlO.__0PX", "key": "h---dY7_M_-._M5..-N_H_55..--E3_2D1",
"operator": "In", "operator": "DoesNotExist"
"values": [
"V6K_.3_583-6.f-.9-.V..Q-K_6_3"
]
} }
] ]
} }

View File

@ -62,116 +62,111 @@ template:
selfLink: "23" selfLink: "23"
uid: SǡƏ uid: SǡƏ
spec: spec:
activeDeadlineSeconds: -5669474827175536499 activeDeadlineSeconds: 8952305945735902812
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "404" - key: "403"
operator: 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$ operator: Ŕ瘍Nʊ輔3璾ėȜv1b繐汚磉反-n
values: values:
- "405" - "404"
matchFields: matchFields:
- key: "406" - key: "405"
operator: Z漤ŗ坟Ů<y鯶縆ł operator: ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ
values: values:
- "407" - "406"
weight: -843639240 weight: -1519458130
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "400" - key: "399"
operator: y竬ʆɞȥ}礤铟怖ý萜Ǖc8 operator: Ƶf
values: values:
- "401" - "400"
matchFields: matchFields:
- key: "402" - key: "401"
operator: ĝ®EĨǔvÄÚ×p鬷 operator: X鰨松/Ȁĵ鴁ĩȲǸ|蕎'佉賞
values: values:
- "403" - "402"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: Y.39g_.--_-_ve5.m_U - key: 3--51
operator: NotIn operator: NotIn
values: values:
- nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1 - C.-e16-O5
matchLabels: 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: namespaceSelector:
matchExpressions: 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 - key: 8mtxb__-ex-_1_-ODgC_1-_8__3
operator: NotIn operator: DoesNotExist
values:
- l67Q.-_t--O.3L.z2-y.-...C4_-_2G8
matchLabels: 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: namespaces:
- "428" - "427"
topologyKey: "429" topologyKey: "428"
weight: 1036096141 weight: -688929182
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4.B.__6m - key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q
operator: In operator: DoesNotExist
values:
- 3-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__Xn
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C - key: 0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs
operator: In operator: NotIn
values: 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: matchLabels:
x-3/6-.7D.3_KPgL: d._.Um.-__k.5 4sE4: B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6
namespaces: namespaces:
- "414" - "413"
topologyKey: "415" topologyKey: "414"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: 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 - key: b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X
operator: NotIn operator: Exists
values:
- u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T - key: vi.Z
operator: DoesNotExist operator: NotIn
values:
- 03l-_86_u2-7_._qN__A_f_-B3_U__L.H
matchLabels: 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: namespaces:
- "456" - "455"
topologyKey: "457" topologyKey: "456"
weight: 1131487788 weight: -616061040
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4b699/B9n.2 - 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: In operator: Exists
values:
- MM7-.e.x
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J - key: P6j.u--.K--g__..b
operator: DoesNotExist operator: DoesNotExist
matchLabels: 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: namespaces:
- "442" - "441"
topologyKey: "443" topologyKey: "442"
automountServiceAccountToken: false automountServiceAccountToken: false
containers: containers:
- args: - args:
@ -185,26 +180,26 @@ template:
configMapKeyRef: configMapKeyRef:
key: "261" key: "261"
name: "260" name: "260"
optional: false optional: true
fieldRef: fieldRef:
apiVersion: "256" apiVersion: "256"
fieldPath: "257" fieldPath: "257"
resourceFieldRef: resourceFieldRef:
containerName: "258" containerName: "258"
divisor: "771" divisor: "138"
resource: "259" resource: "259"
secretKeyRef: secretKeyRef:
key: "263" key: "263"
name: "262" name: "262"
optional: true optional: false
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "252" name: "252"
optional: false optional: true
prefix: "251" prefix: "251"
secretRef: secretRef:
name: "253" name: "253"
optional: true optional: false
image: "245" image: "245"
imagePullPolicy: r嚧 imagePullPolicy: r嚧
lifecycle: lifecycle:
@ -249,8 +244,7 @@ template:
- name: "273" - name: "273"
value: "274" value: "274"
path: "271" path: "271"
port: -1285424066 port: 1087851818
scheme: ni酛3ƁÀ
initialDelaySeconds: -2036074491 initialDelaySeconds: -2036074491
periodSeconds: 165047920 periodSeconds: 165047920
successThreshold: -393291312 successThreshold: -393291312
@ -261,11 +255,11 @@ template:
timeoutSeconds: -148216266 timeoutSeconds: -148216266
name: "244" name: "244"
ports: ports:
- containerPort: 1923334396 - containerPort: -1694108493
hostIP: "250" hostIP: "250"
hostPort: 474119379 hostPort: 70206540
name: "249" name: "249"
protocol: 旿@掇lNdǂ>5姣>懔%熷谟þ protocol: ǂ>5姣>懔%熷
readinessProbe: readinessProbe:
exec: exec:
command: command:
@ -289,9 +283,9 @@ template:
timeoutSeconds: -1745509819 timeoutSeconds: -1745509819
resources: resources:
limits: limits:
: "777" 脾嚏吐ĠLƐȤ藠3.v-鿧悮坮Ȣ幟ļ腻: "575"
requests: requests:
rʤî萨zvt莭琽§ć\ ïì: "80" 丯Ƙ枛牐ɺ皚|: "933"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
@ -300,11 +294,11 @@ template:
drop: drop:
- ʁ岼昕ĬÇ - ʁ岼昕ĬÇ
privileged: true privileged: true
procMount: Z鐫û咡W<敄lu procMount: 鐫û咡W<敄lu|榝
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: 8967035373007538858 runAsGroup: -6406791857291159870
runAsNonRoot: true runAsNonRoot: false
runAsUser: -857934902638099053 runAsUser: 161123823296532265
seLinuxOptions: seLinuxOptions:
level: "306" level: "306"
role: "304" role: "304"
@ -312,10 +306,11 @@ template:
user: "303" user: "303"
seccompProfile: seccompProfile:
localhostProfile: "310" localhostProfile: "310"
type: 榝$î.Ȏ蝪ʜ5遰 type: î.Ȏ蝪ʜ5遰=
windowsOptions: windowsOptions:
gmsaCredentialSpec: "308" gmsaCredentialSpec: "308"
gmsaCredentialSpecName: "307" gmsaCredentialSpecName: "307"
hostProcess: false
runAsUserName: "309" runAsUserName: "309"
startupProbe: startupProbe:
exec: exec:
@ -338,6 +333,7 @@ template:
port: -1099429189 port: -1099429189
terminationGracePeriodSeconds: 7258403424756645907 terminationGracePeriodSeconds: 7258403424756645907
timeoutSeconds: 1752155096 timeoutSeconds: 1752155096
stdin: true
stdinOnce: true stdinOnce: true
terminationMessagePath: "302" terminationMessagePath: "302"
terminationMessagePolicy: ĸ輦唊 terminationMessagePolicy: ĸ輦唊
@ -347,22 +343,21 @@ template:
name: "268" name: "268"
volumeMounts: volumeMounts:
- mountPath: "265" - mountPath: "265"
mountPropagation: 0矀Kʝ瘴I\p[ħsĨɆâĺɗŹ倗S mountPropagation: '[ħsĨɆâĺɗŹ倗S晒嶗UÐ_Ʈ'
name: "264" name: "264"
readOnly: true
subPath: "266" subPath: "266"
subPathExpr: "267" subPathExpr: "267"
workingDir: "248" workingDir: "248"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "470" - "469"
options: options:
- name: "472" - name: "471"
value: "473" value: "472"
searches: searches:
- "471" - "470"
dnsPolicy: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎 dnsPolicy: µņP)DŽ髐njʉBn(fǂǢ
enableServiceLinks: true enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "314" - "314"
@ -375,183 +370,185 @@ template:
configMapKeyRef: configMapKeyRef:
key: "328" key: "328"
name: "327" name: "327"
optional: true optional: false
fieldRef: fieldRef:
apiVersion: "323" apiVersion: "323"
fieldPath: "324" fieldPath: "324"
resourceFieldRef: resourceFieldRef:
containerName: "325" containerName: "325"
divisor: "185" divisor: "271"
resource: "326" resource: "326"
secretKeyRef: secretKeyRef:
key: "330" key: "330"
name: "329" name: "329"
optional: false optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "319" name: "319"
optional: false optional: true
prefix: "318" prefix: "318"
secretRef: secretRef:
name: "320" name: "320"
optional: false optional: false
image: "312" image: "312"
imagePullPolicy: i绝5哇芆斩 imagePullPolicy: 汰8ŕİi騎C"6x$1s
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "358" - "357"
httpGet: httpGet:
host: "361" host: "359"
httpHeaders: httpHeaders:
- name: "362" - name: "360"
value: "363" value: "361"
path: "359" path: "358"
port: "360" port: -1021949447
scheme: 鯂²静 scheme: B芭
tcpSocket: tcpSocket:
host: "364" host: "363"
port: -402384013 port: "362"
preStop: preStop:
exec: exec:
command: command:
- "365" - "364"
httpGet: httpGet:
host: "368" host: "367"
httpHeaders: httpHeaders:
- name: "369" - name: "368"
value: "370" value: "369"
path: "366" path: "365"
port: "367" port: "366"
scheme: 鏻砅邻爥 scheme: yƕ丆録²Ŏ)
tcpSocket: tcpSocket:
host: "371" host: "370"
port: -305362540 port: 507384491
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "337" - "337"
failureThreshold: 1993268896 failureThreshold: 1156888068
httpGet: httpGet:
host: "340" host: "339"
httpHeaders: httpHeaders:
- name: "341" - name: "340"
value: "342" value: "341"
path: "338" path: "338"
port: "339" port: 1907998540
scheme: scheme: ',ŕ'
initialDelaySeconds: 711020087 initialDelaySeconds: -253326525
periodSeconds: -1965247100 periodSeconds: 887319241
successThreshold: 218453478 successThreshold: 1559618829
tcpSocket: tcpSocket:
host: "343" host: "343"
port: 1315054653 port: "342"
terminationGracePeriodSeconds: -9140155223242250138 terminationGracePeriodSeconds: -5566612115749133989
timeoutSeconds: 1103049140 timeoutSeconds: 567263590
name: "311" name: "311"
ports: ports:
- containerPort: -370386363 - containerPort: 1714588921
hostIP: "317" hostIP: "317"
hostPort: -1462219068 hostPort: -370386363
name: "316" name: "316"
protocol: wƯ貾坢'跩aŕ翑0展} protocol: Ư貾
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "344" - "344"
failureThreshold: 1456461851 failureThreshold: 422133388
httpGet: httpGet:
host: "346" host: "346"
httpHeaders: httpHeaders:
- name: "347" - name: "347"
value: "348" value: "348"
path: "345" path: "345"
port: -1315487077 port: 1315054653
scheme: ğ_ scheme: 蚃ɣľ)酊龨δ摖ȱ
initialDelaySeconds: 1272940694 initialDelaySeconds: 1905181464
periodSeconds: 422133388 periodSeconds: 1272940694
successThreshold: 1952458416 successThreshold: -385597677
tcpSocket: tcpSocket:
host: "350" host: "350"
port: "349" port: "349"
terminationGracePeriodSeconds: -6078441689118311403 terminationGracePeriodSeconds: 8385745044578923915
timeoutSeconds: -385597677 timeoutSeconds: -1730959016
resources: resources:
limits: limits:
鬶l獕;跣Hǝcw: "242" 庰%皧V: "116"
requests: requests:
$ɽ丟×x锏ɟ4Ǒ輂,ŕĪĠ: "637" "": "289"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- "" - p鋄5弢ȹ均i绝5
drop: drop:
- ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ - ""
privileged: false privileged: true
procMount: W賁Ěɭɪǹ0 procMount: ş
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -5712715102324619404 runAsGroup: 7023916302283403328
runAsNonRoot: false runAsNonRoot: false
runAsUser: -7936947433725476327 runAsUser: -3385088507022597813
seLinuxOptions: seLinuxOptions:
level: "376" level: "375"
role: "374" role: "373"
type: "375" type: "374"
user: "373" user: "372"
seccompProfile: seccompProfile:
localhostProfile: "380" localhostProfile: "379"
type: ',ƷƣMț譎懚XW疪鑳' type: 諔迮ƙ
windowsOptions: windowsOptions:
gmsaCredentialSpec: "378" gmsaCredentialSpec: "377"
gmsaCredentialSpecName: "377" gmsaCredentialSpecName: "376"
runAsUserName: "379" hostProcess: false
runAsUserName: "378"
startupProbe: startupProbe:
exec: exec:
command: command:
- "351" - "351"
failureThreshold: 620822482 failureThreshold: 353361793
httpGet: httpGet:
host: "353" host: "353"
httpHeaders: httpHeaders:
- name: "354" - name: "354"
value: "355" value: "355"
path: "352" path: "352"
port: 1332783160 port: 1013673874
scheme: Ȱ囌{屿oiɥ嵐sC8?Ǻ鱎ƙ; scheme: ə娯Ȱ囌{
initialDelaySeconds: -300247800 initialDelaySeconds: -205176266
periodSeconds: -126958936 periodSeconds: -116469891
successThreshold: 186945072 successThreshold: 311083651
tcpSocket: tcpSocket:
host: "357" host: "356"
port: "356" port: -1829146875
terminationGracePeriodSeconds: -2203905759223555727 terminationGracePeriodSeconds: -8939747084334542875
timeoutSeconds: 386804041 timeoutSeconds: 490479437
stdin: true
stdinOnce: true stdinOnce: true
targetContainerName: "381" targetContainerName: "380"
terminationMessagePath: "372" terminationMessagePath: "371"
terminationMessagePolicy: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 terminationMessagePolicy: "3"
tty: true
volumeDevices: volumeDevices:
- devicePath: "336" - devicePath: "336"
name: "335" name: "335"
volumeMounts: volumeMounts:
- mountPath: "332" - mountPath: "332"
mountPropagation: "" mountPropagation: 橨鬶l獕;跣Hǝcw媀瓄&翜舞拉Œ
name: "331" name: "331"
readOnly: true
subPath: "333" subPath: "333"
subPathExpr: "334" subPathExpr: "334"
workingDir: "315" workingDir: "315"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "468" - "467"
ip: "467" ip: "466"
hostIPC: true
hostNetwork: true
hostPID: true hostPID: true
hostname: "398" hostname: "397"
imagePullSecrets: imagePullSecrets:
- name: "397" - name: "396"
initContainers: initContainers:
- args: - args:
- "175" - "175"
@ -672,18 +669,18 @@ template:
requests: requests:
瓷碑: "809" 瓷碑: "809"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF - p儼Ƿ裚瓶釆Ɗ+j忊Ŗȫ焗捏ĨF
drop: drop:
- 籘Àǒɿʒ刽ʼn - 籘Àǒɿʒ刽ʼn
privileged: false privileged: false
procMount: ux procMount: x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 2673502285499267331 runAsGroup: -4151726557168738613
runAsNonRoot: true runAsNonRoot: true
runAsUser: -1471909806757355977 runAsUser: 8519427267030036521
seLinuxOptions: seLinuxOptions:
level: "239" level: "239"
role: "237" role: "237"
@ -691,10 +688,11 @@ template:
user: "236" user: "236"
seccompProfile: seccompProfile:
localhostProfile: "243" localhostProfile: "243"
type: VƋZ1Ůđ眊ľǎɳ,ǿ飏 type: ǣ萭
windowsOptions: windowsOptions:
gmsaCredentialSpec: "241" gmsaCredentialSpec: "241"
gmsaCredentialSpecName: "240" gmsaCredentialSpecName: "240"
hostProcess: false
runAsUserName: "242" runAsUserName: "242"
startupProbe: startupProbe:
exec: exec:
@ -718,7 +716,6 @@ template:
terminationGracePeriodSeconds: 6388225771169951791 terminationGracePeriodSeconds: 6388225771169951791
timeoutSeconds: 1487007476 timeoutSeconds: 1487007476
stdin: true stdin: true
stdinOnce: true
terminationMessagePath: "235" terminationMessagePath: "235"
terminationMessagePolicy: Ⱦdz@ùƸʋŀ terminationMessagePolicy: Ⱦdz@ùƸʋŀ
volumeDevices: volumeDevices:
@ -731,66 +728,65 @@ template:
subPath: "194" subPath: "194"
subPathExpr: "195" subPathExpr: "195"
workingDir: "176" workingDir: "176"
nodeName: "386" nodeName: "385"
nodeSelector: nodeSelector:
"382": "383" "381": "382"
overhead: overhead:
炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452" : "313"
preemptionPolicy: ûŠl倳ţü¿Sʟ鍡 preemptionPolicy: ħ\
priority: -1756088332 priority: 780753434
priorityClassName: "469" priorityClassName: "468"
readinessGates: readinessGates:
- conditionType: '#sM網' - conditionType: ¤趜磕绘翁揌p:oŇE
restartPolicy: 眵笭/9崍h趭(娕uE增猍ǵ x restartPolicy: 4ʗN,丽饾| 鞤ɱď
runtimeClassName: "474" runtimeClassName: "473"
schedulerName: "464" schedulerName: "463"
securityContext: securityContext:
fsGroup: 692941646129076193 fsGroup: -8460346884535567850
fsGroupChangePolicy: Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ fsGroupChangePolicy: "8"
runAsGroup: 1362411221198469787 runAsGroup: 6942343986058351509
runAsNonRoot: false runAsNonRoot: true
runAsUser: 8748656795747647539 runAsUser: 2373631082804169687
seLinuxOptions: seLinuxOptions:
level: "390" level: "389"
role: "388" role: "387"
type: "389" type: "388"
user: "387" user: "386"
seccompProfile: seccompProfile:
localhostProfile: "396" localhostProfile: "395"
type: 箨ʨIk(dŊiɢ type: T[
supplementalGroups: supplementalGroups:
- 6117757314288468928 - 3174735363260936461
sysctls: sysctls:
- name: "394" - name: "393"
value: "395" value: "394"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "392" gmsaCredentialSpec: "391"
gmsaCredentialSpecName: "391" gmsaCredentialSpecName: "390"
runAsUserName: "393" hostProcess: true
serviceAccount: "385" runAsUserName: "392"
serviceAccountName: "384" serviceAccount: "384"
serviceAccountName: "383"
setHostnameAsFQDN: false setHostnameAsFQDN: false
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "399" subdomain: "398"
terminationGracePeriodSeconds: 5164725064832182831 terminationGracePeriodSeconds: 5667186155078596628
tolerations: tolerations:
- effect: ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸ - effect: 甬Ʈ岢r臣鐐qwïźU痤ȵ
key: "465" key: "464"
operator: E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ operator: 瘂S淫íŶƭ鬯富Nú顏*z犔kU
tolerationSeconds: -3147305732428645642 tolerationSeconds: -4322909565451750640
value: "466" value: "465"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: KTlO.__0PX - key: h---dY7_M_-._M5..-N_H_55..--E3_2D1
operator: In operator: DoesNotExist
values:
- V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels: 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
maxSkew: -447559705 maxSkew: 1674267790
topologyKey: "475" topologyKey: "474"
whenUnsatisfiable: TaI楅©Ǫ壿/š^劶äɲ泒 whenUnsatisfiable: G峣搒R谱ʜ篲&ZǘtnjʣǕV
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "43" fsType: "43"

View File

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

View File

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

View File

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

View File

@ -31,8 +31,8 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 1467929320 minReadySeconds: 1559072561
revisionHistoryLimit: 2090664533 revisionHistoryLimit: -69450448
selector: selector:
matchExpressions: 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 - 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" selfLink: "29"
uid: TʡȂŏ{sǡƟ uid: TʡȂŏ{sǡƟ
spec: spec:
activeDeadlineSeconds: -1284119655860768065 activeDeadlineSeconds: -8925090445844634303
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "412" - key: "415"
operator: Mɮ6) operator: 襉{遠
values: values:
- "413" - "416"
matchFields: matchFields:
- key: "414" - key: "417"
operator: 杞¹t骳ɰɰUʜʔŜ0¢啥ƵǸG啾 operator: 诰ðÈ娒Ġ滔xvŗÑ"
values: values:
- "415" - "418"
weight: -1280563546 weight: 1690937616
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "408" - key: "411"
operator: UǷ坒 operator: Üɉ愂,wa纝佯fɞ
values: values:
- "409" - "412"
matchFields: matchFields:
- key: "410" - key: "413"
operator: "" operator: 鏚U駯Ĕ驢.'鿳Ï掗掍瓣;
values: values:
- "411" - "414"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: n-9n7p22o4a-w----11rqy3eo79p-f4r1--7p--053--suug/5-4_ed-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV9 - key: 3--_9QW2JkU27_.-4T-I.-..K.2
operator: NotIn operator: In
values: values:
- f8k - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels: 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: namespaceSelector:
matchExpressions: 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 operator: DoesNotExist
matchLabels: 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: namespaces:
- "436" - "439"
topologyKey: "437" topologyKey: "440"
weight: -2118597352 weight: -947725955
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g - key: G_2kCpS__.39g_.--_-_ve5.m_2_--XZ-x._0
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
operator: DoesNotExist operator: DoesNotExist
matchLabels: 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: namespaces:
- "422" - "425"
topologyKey: "423" topologyKey: "426"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: x3___-..f5-6x-_-o_6O_If-5_-_U - key: 62o787-7lk2/L.--4P--_q-.9
operator: DoesNotExist operator: Exists
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: aVX--7_lD.--_Z92.8-.-j-Rf2_--_-__q6Q_--a_-_zz_QVP0YdOYR-CI.c9_7 - key: 9rl-l-u575b93-r0.j-0r3qtm-8vuo17qre-33-5-u8f0f1qv--i2/7_2---2.E.p9-.-3.__a.bl_--..-._S-.-_-16-...8
operator: NotIn operator: In
values: values:
- 9-.66hcB.rTt7bm9I.-..q-n - x3___-..f5-6x-_-o_6O_If-5_-_.F
matchLabels: 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: namespaces:
- "464" - "467"
topologyKey: "465" topologyKey: "468"
weight: 1943011795 weight: 1819321475
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/qN__A_f_-B3_U__L.KH6K.Rs - key: w.3-._CJ4a1._-_CH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j1
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
operator: Exists operator: Exists
matchLabels: 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: namespaces:
- "450" - "453"
topologyKey: "451" topologyKey: "454"
automountServiceAccountToken: true automountServiceAccountToken: true
containers: containers:
- args: - args:
@ -307,11 +303,11 @@ spec:
drop: drop:
- 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹 - 氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹
privileged: false privileged: false
procMount: ʙcx procMount: cx赮ǒđ>*劶?j
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -6657305077321335240 runAsGroup: -6292316479661489180
runAsNonRoot: false runAsNonRoot: false
runAsUser: 4369716065827112267 runAsUser: -1286199491017539507
seLinuxOptions: seLinuxOptions:
level: "316" level: "316"
role: "314" role: "314"
@ -319,10 +315,11 @@ spec:
user: "313" user: "313"
seccompProfile: seccompProfile:
localhostProfile: "320" localhostProfile: "320"
type: ǒđ>*劶?jĎĭ type: ĭ¥#ƱÁR
windowsOptions: windowsOptions:
gmsaCredentialSpec: "318" gmsaCredentialSpec: "318"
gmsaCredentialSpecName: "317" gmsaCredentialSpecName: "317"
hostProcess: true
runAsUserName: "319" runAsUserName: "319"
startupProbe: startupProbe:
exec: exec:
@ -345,8 +342,10 @@ spec:
port: -1894647727 port: -1894647727
terminationGracePeriodSeconds: -7637760856622746738 terminationGracePeriodSeconds: -7637760856622746738
timeoutSeconds: 564558594 timeoutSeconds: 564558594
stdin: true
terminationMessagePath: "312" terminationMessagePath: "312"
terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a terminationMessagePolicy: 躌ñ?卶滿筇ȟP:/a
tty: true
volumeDevices: volumeDevices:
- devicePath: "275" - devicePath: "275"
name: "274" name: "274"
@ -360,13 +359,13 @@ spec:
workingDir: "254" workingDir: "254"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "478" - "481"
options: options:
- name: "480" - name: "483"
value: "481" value: "484"
searches: searches:
- "479" - "482"
dnsPolicy: 錏嬮#ʐ dnsPolicy: q沷¾!
enableServiceLinks: false enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
@ -380,13 +379,13 @@ spec:
configMapKeyRef: configMapKeyRef:
key: "338" key: "338"
name: "337" name: "337"
optional: true optional: false
fieldRef: fieldRef:
apiVersion: "333" apiVersion: "333"
fieldPath: "334" fieldPath: "334"
resourceFieldRef: resourceFieldRef:
containerName: "335" containerName: "335"
divisor: "684" divisor: "473"
resource: "336" resource: "336"
secretKeyRef: secretKeyRef:
key: "340" key: "340"
@ -399,165 +398,164 @@ spec:
prefix: "328" prefix: "328"
secretRef: secretRef:
name: "330" name: "330"
optional: true optional: false
image: "322" image: "322"
imagePullPolicy: ɧeʫį淓¯ imagePullPolicy: 委>,趐V曡88 u怞荊ù灹8緔Tj
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "367" - "368"
httpGet: httpGet:
host: "369" host: "370"
httpHeaders: httpHeaders:
- name: "370" - name: "371"
value: "371" value: "372"
path: "368" path: "369"
port: -1460652193 port: 1176168596
scheme: 8ï驿笈¯rƈa餖Ľƛ淴ɑ? scheme: 轪d覉;Ĕ
tcpSocket: tcpSocket:
host: "373" host: "374"
port: "372" port: "373"
preStop: preStop:
exec: exec:
command: command:
- "374" - "375"
httpGet: httpGet:
host: "376" host: "378"
httpHeaders: httpHeaders:
- name: "377" - name: "379"
value: "378" value: "380"
path: "375" path: "376"
port: 71524977 port: "377"
scheme: 鍻G鯇ɀ魒Ð扬=惍EʦŊĊ娮rȧŹ黷 scheme: ʦŊĊ娮
tcpSocket: tcpSocket:
host: "379" host: "382"
port: -565041796 port: "381"
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "347" - "347"
failureThreshold: 1587036035 failureThreshold: 1566765016
httpGet: httpGet:
host: "349" host: "349"
httpHeaders: httpHeaders:
- name: "350" - name: "350"
value: "351" value: "351"
path: "348" path: "348"
port: -121675052 port: 1034835933
scheme: W#ļǹʅŚO虀^ scheme: O虀^背遻堣灭ƴɦ燻踸陴
initialDelaySeconds: -1959891996 initialDelaySeconds: 650448405
periodSeconds: 1475033091 periodSeconds: -168773629
successThreshold: 1782790310 successThreshold: 2068592383
tcpSocket: tcpSocket:
host: "353" host: "352"
port: "352" port: -1744546613
terminationGracePeriodSeconds: 7560036535013464461 terminationGracePeriodSeconds: -1112599546012453731
timeoutSeconds: -1442230895 timeoutSeconds: 1943254244
name: "321" name: "321"
ports: ports:
- containerPort: -651405950 - containerPort: -1371690155
hostIP: "327" hostIP: "327"
hostPort: 1805682547 hostPort: 2032588794
name: "326" name: "326"
protocol: 淹揀.e鍃G昧牱fsǕT衩kƒK07 protocol: G昧牱fsǕT衩kƒK07曳wœj堑
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "354" - "353"
failureThreshold: 408029351 failureThreshold: 902204699
httpGet: httpGet:
host: "356" host: "356"
httpHeaders: httpHeaders:
- name: "357" - name: "357"
value: "358" value: "358"
path: "355" path: "354"
port: -1744546613 port: "355"
scheme: ʓɻŊ scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
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'
initialDelaySeconds: 636493142 initialDelaySeconds: 636493142
periodSeconds: 420595064 periodSeconds: 420595064
successThreshold: 1195176401 successThreshold: 1195176401
tcpSocket: tcpSocket:
host: "366" host: "360"
port: "365" port: "359"
terminationGracePeriodSeconds: 9196919020604133323 terminationGracePeriodSeconds: 9196919020604133323
timeoutSeconds: -192358697 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 stdin: true
targetContainerName: "389" stdinOnce: true
terminationMessagePath: "380" targetContainerName: "392"
terminationMessagePolicy: Ƭ婦d terminationMessagePath: "383"
tty: true terminationMessagePolicy: Ź黷`嵐;Ƭ婦d%蹶/ʗp壥Ƥ揤郡ɑ
volumeDevices: volumeDevices:
- devicePath: "346" - devicePath: "346"
name: "345" name: "345"
volumeMounts: volumeMounts:
- mountPath: "342" - mountPath: "342"
mountPropagation: 葰賦 mountPropagation: 讅缔m葰賦迾娙ƴ4虵p
name: "341" name: "341"
readOnly: true
subPath: "343" subPath: "343"
subPathExpr: "344" subPathExpr: "344"
workingDir: "325" workingDir: "325"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "476" - "479"
ip: "475" ip: "478"
hostIPC: true hostIPC: true
hostPID: true hostname: "409"
hostname: "406"
imagePullSecrets: imagePullSecrets:
- name: "405" - name: "408"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -685,11 +683,11 @@ spec:
drop: drop:
- H鯂²静ƲǦŐnj汰8ŕİi騎C"6 - H鯂²静ƲǦŐnj汰8ŕİi騎C"6
privileged: false privileged: false
procMount: ȹ均i绝5哇芆斩ìh4Ɋ procMount: ȹ均i绝5哇芆斩ìh4Ɋ
readOnlyRootFilesystem: false readOnlyRootFilesystem: true
runAsGroup: 6901713258562004024 runAsGroup: 4041264710404335706
runAsNonRoot: true runAsNonRoot: false
runAsUser: 9148233193771851687 runAsUser: -7299434051955863644
seLinuxOptions: seLinuxOptions:
level: "245" level: "245"
role: "243" role: "243"
@ -701,6 +699,7 @@ spec:
windowsOptions: windowsOptions:
gmsaCredentialSpec: "247" gmsaCredentialSpec: "247"
gmsaCredentialSpecName: "246" gmsaCredentialSpecName: "246"
hostProcess: true
runAsUserName: "248" runAsUserName: "248"
startupProbe: startupProbe:
exec: exec:
@ -735,64 +734,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "394" nodeName: "397"
nodeSelector: nodeSelector:
"390": "391" "393": "394"
overhead: overhead:
"": "359" D傕Ɠ栊闔虝巒瀦ŕ: "124"
preemptionPolicy: "" preemptionPolicy: Iƭij韺ʧ>
priority: -860768401 priority: 743241089
priorityClassName: "477" priorityClassName: "480"
readinessGates: readinessGates:
- conditionType: '@.ȇʟ' - conditionType: 0yVA嬂刲;牆詒ĸąs
restartPolicy: 鹚蝉茲ʛ饊 restartPolicy: 砘Cș栣险¹贮獘薟8Mĕ霉}閜LI
runtimeClassName: "482" runtimeClassName: "485"
schedulerName: "472" schedulerName: "475"
securityContext: securityContext:
fsGroup: -1867959832193971598 fsGroup: 3564097949592109139
fsGroupChangePolicy: ʦ婷ɂ挃ŪǗȦɆ悼j蛑q沷¾! fsGroupChangePolicy: ûǭg怨彬ɈNƋl塠傫üMɮ6
runAsGroup: 6465579957265382985 runAsGroup: 2960114664726223450
runAsNonRoot: false runAsNonRoot: false
runAsUser: -4904722847506013622 runAsUser: -3496040522639830925
seLinuxOptions: seLinuxOptions:
level: "398" level: "401"
role: "396" role: "399"
type: "397" type: "400"
user: "395" user: "398"
seccompProfile: seccompProfile:
localhostProfile: "404" localhostProfile: "407"
type: '`翾''ųŎ群E牬庘颮6(|ǖû' type: .¸赂ʓ蔋 ǵq砯á缈gȇǙ屏宨殴妓ɡ
supplementalGroups: supplementalGroups:
- -981432507446869083 - 2402603282459663167
sysctls: sysctls:
- name: "402" - name: "405"
value: "403" value: "406"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "400" gmsaCredentialSpec: "403"
gmsaCredentialSpecName: "399" gmsaCredentialSpecName: "402"
runAsUserName: "401" hostProcess: true
serviceAccount: "393" runAsUserName: "404"
serviceAccountName: "392" serviceAccount: "396"
serviceAccountName: "395"
setHostnameAsFQDN: true setHostnameAsFQDN: true
shareProcessNamespace: false shareProcessNamespace: true
subdomain: "407" subdomain: "410"
terminationGracePeriodSeconds: 1736985756995615785 terminationGracePeriodSeconds: 3296766428578159624
tolerations: tolerations:
- effect: ɮ-nʣž吞Ƞ唄®窂爪 - effect: '慰x:'
key: "473" key: "476"
operator: 杻扞Ğuƈ?犻盪ǵĿř岈ǎǏ] operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
tolerationSeconds: -5154627301352060136 tolerationSeconds: 3362400521064014157
value: "474" value: "477"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6K_.3_583-6.f-.9-.V..Q-K_6__.W-.lSKp.Iw2Q - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
operator: Exists operator: In
values:
- zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
matchLabels: 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
maxSkew: -2013945465 maxSkew: -174245111
topologyKey: "483" topologyKey: "486"
whenUnsatisfiable: '½ǩ ' whenUnsatisfiable: ""
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1045,25 +1047,25 @@ spec:
storagePolicyID: "106" storagePolicyID: "106"
storagePolicyName: "105" storagePolicyName: "105"
volumePath: "103" volumePath: "103"
templateGeneration: 6217170132371410053 templateGeneration: 5029735218517286947
updateStrategy: updateStrategy:
rollingUpdate: rollingUpdate:
maxSurge: 3 maxSurge: 3
maxUnavailable: 2 maxUnavailable: 2
type: Ä_ʝ3Ƙr埁摢噓涫祲ŗȨĽ堐mpƮ type: 秮ȳĵ/Ş槀墺=Ĉ鳟/d&
status: status:
collisionCount: 380871347 collisionCount: -286154190
conditions: conditions:
- lastTransitionTime: "2688-06-15T12:51:56Z" - lastTransitionTime: "2194-10-19T16:17:18Z"
message: "491" message: "494"
reason: "490" reason: "493"
status: Ç[輚趞ț@郺丮嘱uȒ status: De½t;Ä
type: D齆O#ȞM<²彾Ǟʈɐ碓yƗÄ. type: 鶼K癨琞Z氞唬蹵ɥeȿĦ`垨Džɞ堹
currentNumberScheduled: -1371816595 currentNumberScheduled: -212409426
desiredNumberScheduled: -788475912 desiredNumberScheduled: 1329525670
numberAvailable: 340429479 numberAvailable: -161888815
numberMisscheduled: 1219820375 numberMisscheduled: 17761427
numberReady: 415140088 numberReady: -1169406076
numberUnavailable: -1024715512 numberUnavailable: 1676195855
observedGeneration: 8590184840880420513 observedGeneration: -660751236671399271
updatedNumberScheduled: 16994744 updatedNumberScheduled: 171558604

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -73,116 +73,112 @@ spec:
selfLink: "29" selfLink: "29"
uid: ʬ uid: ʬ
spec: spec:
activeDeadlineSeconds: 579099652389333099 activeDeadlineSeconds: 3305070661619041050
affinity: affinity:
nodeAffinity: nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "408" - key: "407"
operator: 霎ȃň operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
values: values:
- "409" - "408"
matchFields: matchFields:
- key: "410" - key: "409"
operator: ʓ滨 operator: '[y#t('
values: values:
- "411" - "410"
weight: -259047269 weight: -5241849
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "404" - key: "403"
operator: 灭ƴɦ燻踸陴Sĕ operator: ʓɻŊ0蚢鑸鶲Ãqb轫
values: values:
- "405" - "404"
matchFields: matchFields:
- key: "406" - key: "405"
operator: 筿ɾ operator: ' '
values: values:
- "407" - "406"
podAffinity: podAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: Q_--v-3-BzO5z80n_HtW - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
operator: NotIn operator: Exists
values:
- 3_.4_W_-_-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__w
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
operator: In operator: DoesNotExist
values:
- U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
matchLabels: 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 Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
: P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_QA
namespaces: namespaces:
- "432" - "431"
topologyKey: "433" topologyKey: "432"
weight: 2001693468 weight: -234140
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 3QC1--L--v_Z--ZgC - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: Exists operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: 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: namespaceSelector:
matchExpressions: matchExpressions:
- key: 7Vz_6.Hz_V_.r_v_._X - 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: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "418" - "417"
topologyKey: "419" topologyKey: "418"
podAntiAffinity: podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8v---a9j23/9 - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
operator: In operator: DoesNotExist
values:
- y__y.9O.L-.m.3h
matchLabels: 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: namespaceSelector:
matchExpressions: 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 - 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: Exists operator: DoesNotExist
matchLabels: 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: namespaces:
- "460" - "459"
topologyKey: "461" topologyKey: "460"
weight: 1920802622 weight: 1276377114
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: T - 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: 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
operator: In operator: In
values: 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: 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: namespaces:
- "446" - "445"
topologyKey: "447" topologyKey: "446"
automountServiceAccountToken: true automountServiceAccountToken: false
containers: containers:
- args: - args:
- "249" - "249"
@ -201,7 +197,7 @@ spec:
fieldPath: "259" fieldPath: "259"
resourceFieldRef: resourceFieldRef:
containerName: "260" containerName: "260"
divisor: "9" divisor: "861"
resource: "261" resource: "261"
secretKeyRef: secretKeyRef:
key: "265" key: "265"
@ -214,196 +210,197 @@ spec:
prefix: "253" prefix: "253"
secretRef: secretRef:
name: "255" name: "255"
optional: true optional: false
image: "247" image: "247"
imagePullPolicy: ǚ鍰\縑ɀ撑¼蠾8餑噭 imagePullPolicy: ʒǚ鍰\縑ɀ撑¼蠾8餑噭
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "291" - "293"
httpGet: httpGet:
host: "294" host: "295"
httpHeaders: httpHeaders:
- name: "295" - name: "296"
value: "296" value: "297"
path: "292" path: "294"
port: "293" port: -1699531929
scheme: Ǩ繫ʎǑyZ涬P­蜷ɔ幩 scheme: Z涬P­蜷ɔ幩šeS
tcpSocket: tcpSocket:
host: "297" host: "298"
port: 1167615307 port: 155090390
preStop: preStop:
exec: exec:
command: command:
- "298" - "299"
httpGet: httpGet:
host: "300" host: "302"
httpHeaders: httpHeaders:
- name: "301" - name: "303"
value: "302" value: "304"
path: "299" path: "300"
port: -115833863 port: "301"
scheme: ì
tcpSocket: tcpSocket:
host: "304" host: "305"
port: "303" port: -727263154
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "272" - "272"
failureThreshold: -1129218498 failureThreshold: 472742933
httpGet: httpGet:
host: "274" host: "275"
httpHeaders: httpHeaders:
- name: "275" - name: "276"
value: "276" value: "277"
path: "273" path: "273"
port: -1468297794 port: "274"
scheme: 磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴Ɏ scheme: 冓鍓贯
initialDelaySeconds: 1308698792 initialDelaySeconds: 1290950685
periodSeconds: -934378634 periodSeconds: 1058960779
successThreshold: -1453143878 successThreshold: -2133441986
tcpSocket: tcpSocket:
host: "278" host: "279"
port: "277" port: "278"
terminationGracePeriodSeconds: 2471155705902100229 terminationGracePeriodSeconds: 217739466937954194
timeoutSeconds: 1401790459 timeoutSeconds: 12533543
name: "246" name: "246"
ports: ports:
- containerPort: -1784617397 - containerPort: -614161319
hostIP: "252" hostIP: "252"
hostPort: 465972736 hostPort: 59244165
name: "251" name: "251"
protocol: Ƭƶ氩Ȩ<6 protocol: Ȩ<6鄰簳°Ļǟi&
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "279" - "280"
failureThreshold: 323903711 failureThreshold: 1843491416
httpGet: httpGet:
host: "281" host: "282"
httpHeaders: httpHeaders:
- name: "282" - name: "283"
value: "283" value: "284"
path: "280" path: "281"
port: -614098868 port: 1401790459
scheme: ȗÔÂɘɢ scheme: ǵɐ鰥Z
initialDelaySeconds: -942399354 initialDelaySeconds: -614098868
periodSeconds: -1803854120 periodSeconds: 846286700
successThreshold: -1412915219 successThreshold: 1080545253
tcpSocket: tcpSocket:
host: "284" host: "285"
port: 802134138 port: -1103045151
terminationGracePeriodSeconds: -9192251189672401053 terminationGracePeriodSeconds: -5175286970144973961
timeoutSeconds: 1264624019 timeoutSeconds: 234253676
resources: resources:
limits: limits:
lNKƙ順\E¦队偯J僳徥淳: "93" ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ: "178"
requests: requests:
媀瓄&翜舞拉Œɥ颶妧Ö闊: "472" Ö闊 鰔澝qV: "752"
securityContext: securityContext:
allowPrivilegeEscalation: true allowPrivilegeEscalation: false
capabilities: capabilities:
add: add:
- ņ
drop:
- )DŽ髐njʉBn(fǂ - )DŽ髐njʉBn(fǂ
drop:
- 曣ŋayåe躒訙
privileged: false privileged: false
procMount: Ǫʓ)ǂť嗆u procMount: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
readOnlyRootFilesystem: true readOnlyRootFilesystem: false
runAsGroup: -495558749504439559 runAsGroup: 6245571390016329382
runAsNonRoot: false runAsNonRoot: true
runAsUser: -6717020695319852049 runAsUser: 1083662227773909466
seLinuxOptions: seLinuxOptions:
level: "309" level: "310"
role: "307" role: "308"
type: "308" type: "309"
user: "306" user: "307"
seccompProfile: seccompProfile:
localhostProfile: "313" localhostProfile: "314"
type: 晲T[irȎ3Ĕ\ type: '|蕎''佉賞ǧ'
windowsOptions: windowsOptions:
gmsaCredentialSpec: "311" gmsaCredentialSpec: "312"
gmsaCredentialSpecName: "310" gmsaCredentialSpecName: "311"
runAsUserName: "312" hostProcess: true
runAsUserName: "313"
startupProbe: startupProbe:
exec: exec:
command: command:
- "285" - "286"
failureThreshold: 1658749995 failureThreshold: -793616601
httpGet: httpGet:
host: "287" host: "289"
httpHeaders: httpHeaders:
- name: "288" - name: "290"
value: "289" value: "291"
path: "286" path: "287"
port: -992558278 port: "288"
scheme: 鯂²静 scheme: 芭花ª瘡蟦JBʟ鍏H鯂²静ƲǦŐnj
initialDelaySeconds: -181601395 initialDelaySeconds: 1658749995
periodSeconds: 1851229369 periodSeconds: 809683205
successThreshold: -560238386 successThreshold: -1615316902
tcpSocket: tcpSocket:
host: "290" host: "292"
port: -402384013 port: -560238386
terminationGracePeriodSeconds: -4030490994049395944 terminationGracePeriodSeconds: -2242897509815578930
timeoutSeconds: -617381112 timeoutSeconds: -938421813
terminationMessagePath: "305" stdin: true
terminationMessagePolicy: ɊHȖ|ʐşƧ諔迮ƙIJ嘢4ʗ terminationMessagePath: "306"
tty: true terminationMessagePolicy: Ȗ|ʐşƧ諔迮ƙIJ嘢4
volumeDevices: volumeDevices:
- devicePath: "271" - devicePath: "271"
name: "270" name: "270"
volumeMounts: volumeMounts:
- mountPath: "267" - mountPath: "267"
mountPropagation: ĠM蘇KŅ/»頸+SÄ蚃 mountPropagation: /»頸+SÄ蚃ɣľ)酊龨Î
name: "266" name: "266"
readOnly: true
subPath: "268" subPath: "268"
subPathExpr: "269" subPathExpr: "269"
workingDir: "250" workingDir: "250"
dnsConfig: dnsConfig:
nameservers: nameservers:
- "474" - "473"
options: options:
- name: "476" - name: "475"
value: "477" value: "476"
searches: searches:
- "475" - "474"
dnsPolicy: '''蠨磼O_h盌3+Œ9两@8' dnsPolicy: +Œ9两
enableServiceLinks: false enableServiceLinks: false
ephemeralContainers: ephemeralContainers:
- args: - args:
- "317" - "318"
command: command:
- "316" - "317"
env: env:
- name: "324" - name: "325"
value: "325" value: "326"
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: "331" key: "332"
name: "330" name: "331"
optional: true optional: true
fieldRef: fieldRef:
apiVersion: "326" apiVersion: "327"
fieldPath: "327" fieldPath: "328"
resourceFieldRef: resourceFieldRef:
containerName: "328" containerName: "329"
divisor: "69" divisor: "992"
resource: "329" resource: "330"
secretKeyRef: secretKeyRef:
key: "333" key: "334"
name: "332" name: "333"
optional: false optional: true
envFrom: envFrom:
- configMapRef: - configMapRef:
name: "322"
optional: true
prefix: "321"
secretRef:
name: "323" name: "323"
optional: false optional: true
image: "315" prefix: "322"
secretRef:
name: "324"
optional: true
image: "316"
imagePullPolicy: ǰ詀ǿ忀oɎƺL imagePullPolicy: ǰ詀ǿ忀oɎƺL
lifecycle: lifecycle:
postStart: postStart:
@ -411,85 +408,85 @@ spec:
command: command:
- "361" - "361"
httpGet: httpGet:
host: "364" host: "363"
httpHeaders: httpHeaders:
- name: "365" - name: "364"
value: "366" value: "365"
path: "362" path: "362"
port: "363" port: 1445923603
scheme: 卶滿筇ȟP:/a殆诵H玲鑠ĭ$# scheme: 殆诵H玲鑠ĭ$#卛8ð仁Q
tcpSocket: tcpSocket:
host: "368" host: "367"
port: "367" port: "366"
preStop: preStop:
exec: exec:
command: command:
- "369" - "368"
httpGet: httpGet:
host: "371" host: "371"
httpHeaders: httpHeaders:
- name: "372" - name: "372"
value: "373" value: "373"
path: "370" path: "369"
port: 1791758702 port: "370"
scheme: tl敷斢杧ż鯀 scheme: 杧ż鯀1'
tcpSocket: tcpSocket:
host: "375" host: "374"
port: "374" port: 1297979953
livenessProbe: livenessProbe:
exec: exec:
command: command:
- "340" - "341"
failureThreshold: -36573584 failureThreshold: 2046765799
httpGet: httpGet:
host: "343" host: "343"
httpHeaders: httpHeaders:
- name: "344" - name: "344"
value: "345" value: "345"
path: "341" path: "342"
port: "342" port: 1529027685
scheme: ȥ}礤铟怖ý萜Ǖ scheme: żLj捲攻xƂ9阠$嬏wy¶熀
initialDelaySeconds: -1922458514 initialDelaySeconds: -2106399359
periodSeconds: 692511776 periodSeconds: -1038975198
successThreshold: -1231653807 successThreshold: 1821835340
tcpSocket: tcpSocket:
host: "346" host: "346"
port: -1088996269 port: -1912967242
terminationGracePeriodSeconds: -2524837786321986358 terminationGracePeriodSeconds: -6946775447206795219
timeoutSeconds: 1480364858 timeoutSeconds: 1443270783
name: "314" name: "315"
ports: ports:
- containerPort: -1918622971 - containerPort: -1842062977
hostIP: "320" hostIP: "321"
hostPort: -1656699070 hostPort: -1920304485
name: "319" name: "320"
protocol: ĵ鴁ĩȲǸ|蕎'佉賞ǧĒz protocol: 輔3璾ėȜv1b繐汚磉反-n覦
readinessProbe: readinessProbe:
exec: exec:
command: command:
- "347" - "347"
failureThreshold: 1443270783 failureThreshold: 1671084780
httpGet: httpGet:
host: "349" host: "350"
httpHeaders: httpHeaders:
- name: "350" - name: "351"
value: "351" value: "352"
path: "348" path: "348"
port: 1219644543 port: "349"
scheme: ȑoG鄧蜢暳ǽżLj捲攻xƂ9阠$嬏wy scheme: Ƒ[澔
initialDelaySeconds: 652646450 initialDelaySeconds: -952255430
periodSeconds: -1912967242 periodSeconds: -824007302
successThreshold: -2106399359 successThreshold: -359713104
tcpSocket: tcpSocket:
host: "353" host: "353"
port: "352" port: 1288391156
terminationGracePeriodSeconds: -4462364494060795190 terminationGracePeriodSeconds: 1571605531283019612
timeoutSeconds: 757223010 timeoutSeconds: 1568034275
resources: resources:
limits: limits:
1b: "328" ʨIk(dŊiɢzĮ蛋I滞: "394"
requests: requests:
'}Ñ蠂Ü[ƛ^輅9ɛ棕ƈ眽炊': "699" ɞȥ}礤铟怖ý萜Ǖ: "305"
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
@ -498,68 +495,68 @@ spec:
drop: drop:
- 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:' - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
privileged: true privileged: true
procMount: s44矕Ƈè*鑏= procMount: s44矕Ƈè
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: -1232960403847883886 runAsGroup: 73764735411458498
runAsNonRoot: true runAsNonRoot: false
runAsUser: 2114633499332155907 runAsUser: 4224635496843945227
seLinuxOptions: seLinuxOptions:
level: "380" level: "379"
role: "378" role: "377"
type: "379" type: "378"
user: "377" user: "376"
seccompProfile: seccompProfile:
localhostProfile: "384" localhostProfile: "383"
type: ʨ|ǓÓ敆OɈÏ 瞍髃# type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
windowsOptions: windowsOptions:
gmsaCredentialSpec: "382" gmsaCredentialSpec: "381"
gmsaCredentialSpecName: "381" gmsaCredentialSpecName: "380"
runAsUserName: "383" hostProcess: true
runAsUserName: "382"
startupProbe: startupProbe:
exec: exec:
command: command:
- "354" - "354"
failureThreshold: 64459150 failureThreshold: -1031303729
httpGet: httpGet:
host: "356" host: "356"
httpHeaders: httpHeaders:
- name: "357" - name: "357"
value: "358" value: "358"
path: "355" path: "355"
port: -902839620 port: -514169648
scheme: 縆łƑ[澔槃JŵǤ桒ɴ鉂W scheme: '&疀'
initialDelaySeconds: -574742201 initialDelaySeconds: -39292476
periodSeconds: -514169648 periodSeconds: -1312249623
successThreshold: -1186167291 successThreshold: -1089435479
tcpSocket: tcpSocket:
host: "360" host: "360"
port: "359" port: "359"
terminationGracePeriodSeconds: -4166164136222066963 terminationGracePeriodSeconds: -7317946572666008364
timeoutSeconds: -1182912186 timeoutSeconds: 801902541
stdin: true targetContainerName: "384"
targetContainerName: "385" terminationMessagePath: "375"
terminationMessagePath: "376" terminationMessagePolicy: ǘ炙
terminationMessagePolicy: 鸔ɧWǘ炙
tty: true tty: true
volumeDevices: volumeDevices:
- devicePath: "339" - devicePath: "340"
name: "338" name: "339"
volumeMounts: volumeMounts:
- mountPath: "335" - mountPath: "336"
mountPropagation: Ik(dŊiɢzĮ蛋I mountPropagation: Ƒĝ®EĨǔvÄÚ×p鬷m
name: "334" name: "335"
readOnly: true readOnly: true
subPath: "336" subPath: "337"
subPathExpr: "337" subPathExpr: "338"
workingDir: "318" workingDir: "319"
hostAliases: hostAliases:
- hostnames: - hostnames:
- "472" - "471"
ip: "471" ip: "470"
hostNetwork: true hostPID: true
hostname: "402" hostname: "401"
imagePullSecrets: imagePullSecrets:
- name: "401" - name: "400"
initContainers: initContainers:
- args: - args:
- "181" - "181"
@ -687,11 +684,11 @@ spec:
drop: drop:
- W:ĸ輦唊#v - W:ĸ輦唊#v
privileged: false privileged: false
procMount: Ÿ8T 苧yñKJɐ扵 procMount: 8T 苧yñKJɐ扵Gƚ绤fʀ
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsGroup: 8839567045362091290 runAsGroup: -1629447906545846003
runAsNonRoot: true runAsNonRoot: true
runAsUser: 1946087648860511217 runAsUser: 7510677649797968740
seLinuxOptions: seLinuxOptions:
level: "241" level: "241"
role: "239" role: "239"
@ -699,10 +696,11 @@ spec:
user: "238" user: "238"
seccompProfile: seccompProfile:
localhostProfile: "245" localhostProfile: "245"
type: ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞 type: 腩墺Ò媁荭gw忊|E剒蔞|表徶
windowsOptions: windowsOptions:
gmsaCredentialSpec: "243" gmsaCredentialSpec: "243"
gmsaCredentialSpecName: "242" gmsaCredentialSpecName: "242"
hostProcess: true
runAsUserName: "244" runAsUserName: "244"
startupProbe: startupProbe:
exec: exec:
@ -728,7 +726,6 @@ spec:
stdin: true stdin: true
terminationMessagePath: "237" terminationMessagePath: "237"
terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ' terminationMessagePolicy: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
tty: true
volumeDevices: volumeDevices:
- devicePath: "203" - devicePath: "203"
name: "202" name: "202"
@ -740,66 +737,67 @@ spec:
subPath: "200" subPath: "200"
subPathExpr: "201" subPathExpr: "201"
workingDir: "182" workingDir: "182"
nodeName: "390" nodeName: "389"
nodeSelector: nodeSelector:
"386": "387" "385": "386"
overhead: overhead:
»Š: "727" D輷: "792"
preemptionPolicy: džH0ƾ瘿¸'q钨羲;"T#sM網mA preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
priority: 1188651641 priority: 347613368
priorityClassName: "473" priorityClassName: "472"
readinessGates: readinessGates:
- conditionType: lD傕Ɠ栊闔虝巒瀦ŕ蘴濼DZj鎒ũW - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
restartPolicy: W歹s梊ɥʋăƻ restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
runtimeClassName: "478" runtimeClassName: "477"
schedulerName: "468" schedulerName: "467"
securityContext: securityContext:
fsGroup: -8322686588708543096 fsGroup: -3964669311891901178
fsGroupChangePolicy: 4虵p蓋沥7uPƒ fsGroupChangePolicy: ƴ4虵p
runAsGroup: -2549376519991319825 runAsGroup: 3230705132538051674
runAsNonRoot: true runAsNonRoot: true
runAsUser: 3011215457607075123 runAsUser: 3438266910774132295
seLinuxOptions: seLinuxOptions:
level: "394" level: "393"
role: "392" role: "391"
type: "393" type: "392"
user: "391" user: "390"
seccompProfile: seccompProfile:
localhostProfile: "400" localhostProfile: "399"
type: "" type: 沥7uPƒw©ɴĶ烷Ľthp
supplementalGroups: supplementalGroups:
- 8667724420266764868 - -1600417733583164525
sysctls: sysctls:
- name: "398" - name: "397"
value: "399" value: "398"
windowsOptions: windowsOptions:
gmsaCredentialSpec: "396" gmsaCredentialSpec: "395"
gmsaCredentialSpecName: "395" gmsaCredentialSpecName: "394"
runAsUserName: "397" hostProcess: false
serviceAccount: "389" runAsUserName: "396"
serviceAccountName: "388" serviceAccount: "388"
serviceAccountName: "387"
setHostnameAsFQDN: false setHostnameAsFQDN: false
shareProcessNamespace: true shareProcessNamespace: true
subdomain: "403" subdomain: "402"
terminationGracePeriodSeconds: 1031455728822209328 terminationGracePeriodSeconds: -8335674866227004872
tolerations: tolerations:
- effect: ;牆詒ĸąsƶ - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
key: "469" key: "468"
operator: NL觀嫧酞篐8郫焮3ó緼Ŷ獃夕Ɔ operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ
tolerationSeconds: -456102350746071856 tolerationSeconds: 3252034671163905138
value: "470" value: "469"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: br..1.--S-w-5_..D.pz_-ad - 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: In operator: NotIn
values: values:
- Q.__y644 - h.v._5.vB-.-7-.6Jv-86___3
matchLabels: 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 n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
maxSkew: -388643187 maxSkew: -484382570
topologyKey: "479" topologyKey: "478"
whenUnsatisfiable: i僠噚恗N whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "49" fsType: "49"
@ -1051,14 +1049,14 @@ spec:
storagePolicyName: "105" storagePolicyName: "105"
volumePath: "103" volumePath: "103"
status: status:
availableReplicas: 876226690 availableReplicas: -2060941196
conditions: conditions:
- lastTransitionTime: "2951-06-01T06:00:17Z" - lastTransitionTime: "2597-11-21T15:14:16Z"
message: "487" message: "486"
reason: "486" reason: "485"
status: '%ÿ¼璤ňɈȀę' status: <暉Ŝ!ȣ绰爪qĖĖȠ姓ȇ>尪璎
type: C`牯雫 type: 犓`ɜɅco\穜T睭憲Ħ焵i,ŋŨN
fullyLabeledReplicas: 516555648 fullyLabeledReplicas: 415168801
observedGeneration: 1436288218546692842 observedGeneration: 7426283174216567769
readyReplicas: 2104777337 readyReplicas: 1448332644
replicas: -2095627603 replicas: 2106170541

View File

@ -24,6 +24,7 @@ type WindowsSecurityContextOptionsApplyConfiguration struct {
GMSACredentialSpecName *string `json:"gmsaCredentialSpecName,omitempty"` GMSACredentialSpecName *string `json:"gmsaCredentialSpecName,omitempty"`
GMSACredentialSpec *string `json:"gmsaCredentialSpec,omitempty"` GMSACredentialSpec *string `json:"gmsaCredentialSpec,omitempty"`
RunAsUserName *string `json:"runAsUserName,omitempty"` RunAsUserName *string `json:"runAsUserName,omitempty"`
HostProcess *bool `json:"hostProcess,omitempty"`
} }
// WindowsSecurityContextOptionsApplyConfiguration constructs an declarative configuration of the WindowsSecurityContextOptions type for use with // WindowsSecurityContextOptionsApplyConfiguration constructs an declarative configuration of the WindowsSecurityContextOptions type for use with
@ -55,3 +56,11 @@ func (b *WindowsSecurityContextOptionsApplyConfiguration) WithRunAsUserName(valu
b.RunAsUserName = &value b.RunAsUserName = &value
return b 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 - name: gmsaCredentialSpecName
type: type:
scalar: string scalar: string
- name: hostProcess
type:
scalar: boolean
- name: runAsUserName - name: runAsUserName
type: type:
scalar: string 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; map<string, string> annotations = 7;
// Optional configurations specific to Linux hosts. // Optional configurations specific to Linux hosts.
LinuxPodSandboxConfig linux = 8; LinuxPodSandboxConfig linux = 8;
// Optional configurations specific to Windows hosts.
WindowsPodSandboxConfig windows = 9;
} }
message RunPodSandboxRequest { message RunPodSandboxRequest {
@ -687,6 +689,29 @@ message LinuxContainerConfig {
LinuxContainerSecurityContext security_context = 2; 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. // WindowsContainerSecurityContext holds windows security configuration that will be applied to a container.
message WindowsContainerSecurityContext { message WindowsContainerSecurityContext {
// User name to run the container process as. If specified, the user MUST // 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. // The contents of the GMSA credential spec to use to run this container.
string credential_spec = 2; 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 // 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; map<string, string> annotations = 7;
// Optional configurations specific to Linux hosts. // Optional configurations specific to Linux hosts.
LinuxPodSandboxConfig linux = 8; LinuxPodSandboxConfig linux = 8;
// Optional configurations specific to Windows hosts.
WindowsPodSandboxConfig windows = 9;
} }
message RunPodSandboxRequest { message RunPodSandboxRequest {
@ -693,6 +695,29 @@ message LinuxContainerConfig {
LinuxContainerSecurityContext security_context = 2; 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. // WindowsContainerSecurityContext holds windows security configuration that will be applied to a container.
message WindowsContainerSecurityContext { message WindowsContainerSecurityContext {
// User name to run the container process as. If specified, the user MUST // 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. // The contents of the GMSA credential spec to use to run this container.
string credential_spec = 2; 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 // 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")
}
}