Merge pull request #79489 from bclau/feature/run-as-username

Adds WindowsOptions.RunAsUserName field
This commit is contained in:
Kubernetes Prow Robot 2019-07-17 19:34:24 -07:00 committed by GitHub
commit 2b21e478b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
79 changed files with 6245 additions and 5559 deletions

View File

@ -9757,7 +9757,7 @@
},
"windowsOptions": {
"$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
"description": "Windows security options."
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
@ -11016,7 +11016,7 @@
},
"windowsOptions": {
"$ref": "#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions",
"description": "Windows security options."
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
@ -11779,6 +11779,10 @@
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
"type": "string"
},
"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. This field is alpha-level and it is only honored by servers that enable the WindowsRunAsUserName feature flag.",
"type": "string"
}
},
"type": "object"

View File

@ -379,6 +379,8 @@ func dropDisabledFields(
dropDisabledGMSAFields(podSpec, oldPodSpec)
dropDisabledRunAsUserNameFields(podSpec, oldPodSpec)
if !utilfeature.DefaultFeatureGate.Enabled(features.RuntimeClass) && !runtimeClassInUse(oldPodSpec) {
// Set RuntimeClassName to nil only if feature is disabled and it is not used
podSpec.RuntimeClassName = nil
@ -450,6 +452,38 @@ func dropDisabledGMSAFieldsFromContainers(containers []api.Container) {
}
}
// dropDisabledRunAsUserNameFields removes disabled fields related to WindowsOptions.RunAsUserName
// from the given PodSpec.
func dropDisabledRunAsUserNameFields(podSpec, oldPodSpec *api.PodSpec) {
if utilfeature.DefaultFeatureGate.Enabled(features.WindowsRunAsUserName) ||
runAsUserNameFieldsInUse(oldPodSpec) {
return
}
if podSpec.SecurityContext != nil {
dropDisabledRunAsUserNameFieldsFromWindowsSecurityOptions(podSpec.SecurityContext.WindowsOptions)
}
dropDisabledRunAsUserNameFieldsFromContainers(podSpec.Containers)
dropDisabledRunAsUserNameFieldsFromContainers(podSpec.InitContainers)
}
// dropDisabledRunAsUserNameFieldsFromWindowsSecurityOptions removes disabled fields
// related to RunAsUserName from the given WindowsSecurityContextOptions.
func dropDisabledRunAsUserNameFieldsFromWindowsSecurityOptions(windowsOptions *api.WindowsSecurityContextOptions) {
if windowsOptions != nil {
windowsOptions.RunAsUserName = nil
}
}
// dropDisabledRunAsUserNameFieldsFromContainers removes disabled fields
func dropDisabledRunAsUserNameFieldsFromContainers(containers []api.Container) {
for i := range containers {
if containers[i].SecurityContext != nil {
dropDisabledRunAsUserNameFieldsFromWindowsSecurityOptions(containers[i].SecurityContext.WindowsOptions)
}
}
}
// dropDisabledProcMountField removes disabled fields from PodSpec related
// to ProcMount only if it is not already used by the old spec
func dropDisabledProcMountField(podSpec, oldPodSpec *api.PodSpec) {
@ -703,6 +737,39 @@ func gMSAFieldsInUseInAnyContainer(containers []api.Container) bool {
return false
}
// runAsUserNameFieldsInUse returns true if the pod spec is non-nil and has the RunAsUserName
// field set in the PodSecurityContext or any container's SecurityContext.
func runAsUserNameFieldsInUse(podSpec *api.PodSpec) bool {
if podSpec == nil {
return false
}
if podSpec.SecurityContext != nil && runAsUserNameFieldsInUseInWindowsSecurityOptions(podSpec.SecurityContext.WindowsOptions) {
return true
}
return runAsUserNameFieldsInUseInAnyContainer(podSpec.Containers) ||
runAsUserNameFieldsInUseInAnyContainer(podSpec.InitContainers)
}
// runAsUserNameFieldsInUseInWindowsSecurityOptions returns true if the given WindowsSecurityContextOptions is
// non-nil and its RunAsUserName field is set.
func runAsUserNameFieldsInUseInWindowsSecurityOptions(windowsOptions *api.WindowsSecurityContextOptions) bool {
return windowsOptions != nil && windowsOptions.RunAsUserName != nil
}
// runAsUserNameFieldsInUseInAnyContainer returns true if any of the given Containers has its
// SecurityContext's RunAsUserName field set.
func runAsUserNameFieldsInUseInAnyContainer(containers []api.Container) bool {
for _, container := range containers {
if container.SecurityContext != nil && runAsUserNameFieldsInUseInWindowsSecurityOptions(container.SecurityContext.WindowsOptions) {
return true
}
}
return false
}
// subpathExprInUse returns true if the pod spec is non-nil and has a volume mount that makes use of the subPathExpr feature
func subpathExprInUse(podSpec *api.PodSpec) bool {
if podSpec == nil {

View File

@ -1545,6 +1545,180 @@ func TestDropGMSAFields(t *testing.T) {
}
}
func TestDropWindowsRunAsUserNameFields(t *testing.T) {
defaultContainerSecurityContextFactory := func() *api.SecurityContext {
defaultProcMount := api.DefaultProcMount
return &api.SecurityContext{ProcMount: &defaultProcMount}
}
podWithoutWindowsOptionsFactory := func() *api.Pod {
return &api.Pod{
Spec: api.PodSpec{
RestartPolicy: api.RestartPolicyNever,
SecurityContext: &api.PodSecurityContext{},
Containers: []api.Container{{Name: "container1", Image: "testimage", SecurityContext: defaultContainerSecurityContextFactory()}},
InitContainers: []api.Container{{Name: "initContainer1", Image: "testimage", SecurityContext: defaultContainerSecurityContextFactory()}},
},
}
}
type podFactoryInfo struct {
description string
hasRunAsUserNameField bool
// this factory should generate the input pod whose spec will be fed to dropDisabledFields
podFactory func() *api.Pod
// this factory should generate the expected pod after the RunAsUserName fields have been dropped
// we can't just use podWithoutWindowsOptionsFactory as is for this, since in some cases
// we'll be left with a WindowsSecurityContextOptions struct with no RunAsUserName field set,
// as oposed to a nil pointer in the pod generated by podWithoutWindowsOptionsFactory
// if this field is not set, it will default to the podFactory
strippedPodFactory func() *api.Pod
}
toPtr := func(s string) *string {
return &s
}
podFactoryInfos := []podFactoryInfo{
{
description: "is nil",
hasRunAsUserNameField: false,
podFactory: func() *api.Pod { return nil },
},
{
description: "does not have any RunAsUserName field set",
hasRunAsUserNameField: false,
podFactory: podWithoutWindowsOptionsFactory,
},
{
description: "has a pod-level WindowsSecurityContextOptions struct with no RunAsUserName field set",
hasRunAsUserNameField: false,
podFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{}
return pod
},
},
{
description: "has a WindowsSecurityContextOptions struct with no RunAsUserName field set on a container",
hasRunAsUserNameField: false,
podFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.Containers[0].SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{}
return pod
},
},
{
description: "has a WindowsSecurityContextOptions struct with no RunAsUserName field set on an init container",
hasRunAsUserNameField: false,
podFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.InitContainers[0].SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{}
return pod
},
},
{
description: "has RunAsUserName field set in the PodSecurityContext",
hasRunAsUserNameField: true,
podFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{RunAsUserName: toPtr("foo-lish")}
return pod
},
strippedPodFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{}
return pod
},
},
{
description: "has RunAsUserName field set in a container's SecurityContext",
hasRunAsUserNameField: true,
podFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.Containers[0].SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{RunAsUserName: toPtr("foo-lish")}
return pod
},
strippedPodFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.Containers[0].SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{}
return pod
},
},
{
description: "has RunAsUserName field set in an init container's PodSecurityContext",
hasRunAsUserNameField: true,
podFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.InitContainers[0].SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{RunAsUserName: toPtr("foo-lish")}
return pod
},
strippedPodFactory: func() *api.Pod {
pod := podWithoutWindowsOptionsFactory()
pod.Spec.InitContainers[0].SecurityContext.WindowsOptions = &api.WindowsSecurityContextOptions{}
return pod
},
},
}
for _, enabled := range []bool{true, false} {
for _, oldPodFactoryInfo := range podFactoryInfos {
for _, newPodFactoryInfo := range podFactoryInfos {
newPodHasRunAsUserNameField, newPod := newPodFactoryInfo.hasRunAsUserNameField, newPodFactoryInfo.podFactory()
if newPod == nil {
continue
}
oldPodHasRunAsUserNameField, oldPod := oldPodFactoryInfo.hasRunAsUserNameField, oldPodFactoryInfo.podFactory()
t.Run(fmt.Sprintf("feature enabled=%v, old pod %s, new pod %s", enabled, oldPodFactoryInfo.description, newPodFactoryInfo.description), func(t *testing.T) {
defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WindowsRunAsUserName, enabled)()
var oldPodSpec *api.PodSpec
if oldPod != nil {
oldPodSpec = &oldPod.Spec
}
dropDisabledFields(&newPod.Spec, nil, oldPodSpec, nil)
// old pod should never be changed
if !reflect.DeepEqual(oldPod, oldPodFactoryInfo.podFactory()) {
t.Errorf("old pod changed: %v", diff.ObjectReflectDiff(oldPod, oldPodFactoryInfo.podFactory()))
}
switch {
case enabled || oldPodHasRunAsUserNameField:
// new pod should not be changed if the feature is enabled, or if the old pod had the RunAsUserName field set
if !reflect.DeepEqual(newPod, newPodFactoryInfo.podFactory()) {
t.Errorf("new pod changed: %v", diff.ObjectReflectDiff(newPod, newPodFactoryInfo.podFactory()))
}
case newPodHasRunAsUserNameField:
// new pod should be changed
if reflect.DeepEqual(newPod, newPodFactoryInfo.podFactory()) {
t.Errorf("%v", oldPod)
t.Errorf("%v", newPod)
t.Errorf("new pod was not changed")
}
// new pod should not have the RunAsUserName field set
var expectedStrippedPod *api.Pod
if newPodFactoryInfo.strippedPodFactory == nil {
expectedStrippedPod = newPodFactoryInfo.podFactory()
} else {
expectedStrippedPod = newPodFactoryInfo.strippedPodFactory()
}
if !reflect.DeepEqual(newPod, expectedStrippedPod) {
t.Errorf("new pod had some RunAsUserName field set: %v", diff.ObjectReflectDiff(newPod, expectedStrippedPod))
}
default:
// new pod should not need to be changed
if !reflect.DeepEqual(newPod, newPodFactoryInfo.podFactory()) {
t.Errorf("new pod changed: %v", diff.ObjectReflectDiff(newPod, newPodFactoryInfo.podFactory()))
}
}
})
}
}
}
}
func TestDropPodSysctls(t *testing.T) {
podWithSysctls := func() *api.Pod {
return &api.Pod{

View File

@ -2768,7 +2768,9 @@ type PodSecurityContext struct {
// takes precedence for that container.
// +optional
SELinuxOptions *SELinuxOptions
// Windows security options.
// The Windows specific settings applied to all containers.
// If unspecified, the options within a container's SecurityContext will be used.
// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
WindowsOptions *WindowsSecurityContextOptions
// The UID to run the entrypoint of the container process.
@ -4704,7 +4706,9 @@ type SecurityContext struct {
// PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
SELinuxOptions *SELinuxOptions
// Windows security options.
// The Windows specific settings applied to all containers.
// If unspecified, the options from the PodSecurityContext will be used.
// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
WindowsOptions *WindowsSecurityContextOptions
// The UID to run the entrypoint of the container process.
@ -4786,6 +4790,14 @@ type WindowsSecurityContextOptions struct {
// This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.
// +optional
GMSACredentialSpec *string
// 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.
// This field is alpha-level and it is only honored by servers that enable the WindowsRunAsUserName feature flag.
// +optional
RunAsUserName *string
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

View File

@ -7657,6 +7657,7 @@ func Convert_core_WeightedPodAffinityTerm_To_v1_WeightedPodAffinityTerm(in *core
func autoConvert_v1_WindowsSecurityContextOptions_To_core_WindowsSecurityContextOptions(in *v1.WindowsSecurityContextOptions, out *core.WindowsSecurityContextOptions, s conversion.Scope) error {
out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
return nil
}
@ -7668,6 +7669,7 @@ func Convert_v1_WindowsSecurityContextOptions_To_core_WindowsSecurityContextOpti
func autoConvert_core_WindowsSecurityContextOptions_To_v1_WindowsSecurityContextOptions(in *core.WindowsSecurityContextOptions, out *v1.WindowsSecurityContextOptions, s conversion.Scope) error {
out.GMSACredentialSpecName = (*string)(unsafe.Pointer(in.GMSACredentialSpecName))
out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
return nil
}

View File

@ -5360,9 +5360,37 @@ func ValidateSecurityContext(sc *core.SecurityContext, fldPath *field.Path) fiel
// maxGMSACredentialSpecLength is the max length, in bytes, for the actual contents
// of a GMSA cred spec. In general, those shouldn't be more than a few hundred bytes,
// so we want to give plenty of room here while still providing an upper bound.
// The runAsUserName field will be used to execute the given container's entrypoint, and
// it can be formatted as "DOMAIN/USER", where the DOMAIN is optional, maxRunAsUserNameDomainLength
// is the max character length for the user's DOMAIN, and maxRunAsUserNameUserLength
// is the max character length for the USER itself. Both the DOMAIN and USER have their
// own restrictions, and more information about them can be found here:
// https://support.microsoft.com/en-us/help/909264/naming-conventions-in-active-directory-for-computers-domains-sites-and
// https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.localaccounts/new-localuser?view=powershell-5.1
const (
maxGMSACredentialSpecLengthInKiB = 64
maxGMSACredentialSpecLength = maxGMSACredentialSpecLengthInKiB * 1024
maxRunAsUserNameDomainLength = 256
maxRunAsUserNameUserLength = 21
)
var (
// control characters are not permitted in the runAsUserName field.
ctrlRegex = regexp.MustCompile(`[[:cntrl:]]+`)
// a valid NetBios Domain name cannot start with a dot, has at least 1 character,
// at most 15 characters, and it cannot the characters: \ / : * ? " < > |
validNetBiosRegex = regexp.MustCompile(`^[^\\/:\*\?"<>|\.][^\\/:\*\?"<>|]{0,14}$`)
// a valid DNS name contains only alphanumeric characters, dots, and dashes.
dnsLabelFormat = `[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?`
dnsSubdomainFormat = fmt.Sprintf(`^%s(?:\.%s)*$`, dnsLabelFormat, dnsLabelFormat)
validWindowsUserDomainDNSRegex = regexp.MustCompile(dnsSubdomainFormat)
// a username is invalid if it contains the characters: " / \ [ ] : ; | = , + * ? < > @
// or it contains only dots or spaces.
invalidUserNameCharsRegex = regexp.MustCompile(`["/\\:;|=,\+\*\?<>@\[\]]`)
invalidUserNameDotsSpacesRegex = regexp.MustCompile(`^[\. ]+$`)
)
func validateWindowsSecurityContextOptions(windowsOptions *core.WindowsSecurityContextOptions, fieldPath *field.Path) field.ErrorList {
@ -5388,6 +5416,59 @@ func validateWindowsSecurityContextOptions(windowsOptions *core.WindowsSecurityC
}
}
if windowsOptions.RunAsUserName != nil {
if l := len(*windowsOptions.RunAsUserName); l == 0 {
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, "runAsUserName cannot be an empty string"))
} else if ctrlRegex.MatchString(*windowsOptions.RunAsUserName) {
errMsg := fmt.Sprintf("runAsUserName cannot contain control characters")
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
} else if parts := strings.Split(*windowsOptions.RunAsUserName, "\\"); len(parts) > 2 {
errMsg := fmt.Sprintf("runAsUserName cannot contain more than one backslash")
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
} else {
var (
hasDomain = false
domain = ""
user string
)
if len(parts) == 1 {
user = parts[0]
} else {
hasDomain = true
domain = parts[0]
user = parts[1]
}
if len(domain) >= maxRunAsUserNameDomainLength {
errMsg := fmt.Sprintf("runAsUserName's Domain length must be under %d characters", maxRunAsUserNameDomainLength)
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
}
if hasDomain && !(validNetBiosRegex.MatchString(domain) || validWindowsUserDomainDNSRegex.MatchString(domain)) {
errMsg := "runAsUserName's Domain doesn't match the NetBios nor the DNS format"
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
}
if l := len(user); l == 0 {
errMsg := fmt.Sprintf("runAsUserName's User cannot be empty")
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
} else if l >= maxRunAsUserNameUserLength {
errMsg := fmt.Sprintf("runAsUserName's User length must be under %d characters", maxRunAsUserNameUserLength)
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
}
if invalidUserNameDotsSpacesRegex.MatchString(user) {
errMsg := `runAsUserName's User cannot contain only periods or spaces`
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
}
if invalidUserNameCharsRegex.MatchString(user) {
errMsg := `runAsUserName's User cannot contain the following characters: "/\:;|=,+*?<>@[]`
allErrs = append(allErrs, field.Invalid(fieldPath.Child("runAsUserName"), windowsOptions.RunAsUserName, errMsg))
}
}
}
return allErrs
}

View File

@ -13485,6 +13485,134 @@ func TestValidateWindowsSecurityContextOptions(t *testing.T) {
},
expectedErrorSubstring: "gmsaCredentialSpec size must be under",
},
{
testName: "RunAsUserName is nil",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: nil,
},
},
{
testName: "a valid RunAsUserName",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Container. User"),
},
},
{
testName: "a valid RunAsUserName with NetBios Domain",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Network Service\\Container. User"),
},
},
{
testName: "a valid RunAsUserName with DNS Domain",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(strings.Repeat("fOo", 20) + ".liSH\\Container. User"),
},
},
{
testName: "a valid RunAsUserName with DNS Domain with a single character segment",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(strings.Repeat("fOo", 20) + ".l\\Container. User"),
},
},
{
testName: "a valid RunAsUserName with a long single segment DNS Domain",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(strings.Repeat("a", 42) + "\\Container. User"),
},
},
{
testName: "an empty RunAsUserName",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(""),
},
expectedErrorSubstring: "runAsUserName cannot be an empty string",
},
{
testName: "RunAsUserName containing a control character",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Container\tUser"),
},
expectedErrorSubstring: "runAsUserName cannot contain control characters",
},
{
testName: "RunAsUserName containing too many backslashes",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Container\\Foo\\Lish"),
},
expectedErrorSubstring: "runAsUserName cannot contain more than one backslash",
},
{
testName: "RunAsUserName containing backslash but empty Domain",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("\\User"),
},
expectedErrorSubstring: "runAsUserName's Domain doesn't match the NetBios nor the DNS format",
},
{
testName: "RunAsUserName containing backslash but empty User",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Container\\"),
},
expectedErrorSubstring: "runAsUserName's User cannot be empty",
},
{
testName: "RunAsUserName's NetBios Domain is too long",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("NetBios " + strings.Repeat("a", 8) + "\\user"),
},
expectedErrorSubstring: "runAsUserName's Domain doesn't match the NetBios",
},
{
testName: "RunAsUserName's DNS Domain is too long",
windowsOptions: &core.WindowsSecurityContextOptions{
// even if this tests the max Domain length, the Domain should still be "valid".
RunAsUserName: toPtr(strings.Repeat(strings.Repeat("a", 63)+".", 4)[:253] + ".com\\user"),
},
expectedErrorSubstring: "runAsUserName's Domain length must be under",
},
{
testName: "RunAsUserName's User is too long",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(strings.Repeat("a", maxRunAsUserNameUserLength)),
},
expectedErrorSubstring: "runAsUserName's User length must be under",
},
{
testName: "RunAsUserName's User cannot contain only spaces or periods",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("... ..."),
},
expectedErrorSubstring: "runAsUserName's User cannot contain only periods or spaces",
},
{
testName: "RunAsUserName's NetBios Domain cannot start with a dot",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(".FooLish\\User"),
},
expectedErrorSubstring: "runAsUserName's Domain doesn't match the NetBios",
},
{
testName: "RunAsUserName's NetBios Domain cannot contain invalid characters",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Foo? Lish?\\User"),
},
expectedErrorSubstring: "runAsUserName's Domain doesn't match the NetBios",
},
{
testName: "RunAsUserName's DNS Domain cannot contain invalid characters",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr(strings.Repeat("a", 32) + ".com-\\user"),
},
expectedErrorSubstring: "runAsUserName's Domain doesn't match the NetBios nor the DNS format",
},
{
testName: "RunAsUserName's User cannot contain invalid characters",
windowsOptions: &core.WindowsSecurityContextOptions{
RunAsUserName: toPtr("Container/User"),
},
expectedErrorSubstring: "runAsUserName's User cannot contain the following characters",
},
}
for _, testCase := range testCases {

View File

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

View File

@ -408,6 +408,12 @@ const (
// Enables GMSA support for Windows workloads.
WindowsGMSA featuregate.Feature = "WindowsGMSA"
// owner: @bclau
// alpha: v1.16
//
// Enables support for running container entrypoints as different usernames than their default ones.
WindowsRunAsUserName featuregate.Feature = "WindowsRunAsUserName"
// owner: @adisky
// alpha: v1.14
//
@ -526,6 +532,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
TTLAfterFinished: {Default: false, PreRelease: featuregate.Alpha},
KubeletPodResources: {Default: true, PreRelease: featuregate.Beta},
WindowsGMSA: {Default: false, PreRelease: featuregate.Alpha},
WindowsRunAsUserName: {Default: false, PreRelease: featuregate.Alpha},
ServiceLoadBalancerFinalizer: {Default: false, PreRelease: featuregate.Alpha},
LocalStorageCapacityIsolationFSQuotaMonitoring: {Default: false, PreRelease: featuregate.Alpha},
NonPreemptingPriority: {Default: false, PreRelease: featuregate.Alpha},

View File

@ -102,5 +102,10 @@ func (m *kubeGenericRuntimeManager) generateWindowsContainerConfig(container *v1
wc.SecurityContext.CredentialSpec = *effectiveSc.WindowsOptions.GMSACredentialSpec
}
// override with Windows options if present
if effectiveSc.WindowsOptions != nil && effectiveSc.WindowsOptions.RunAsUserName != nil {
wc.SecurityContext.RunAsUsername = *effectiveSc.WindowsOptions.RunAsUserName
}
return wc, nil
}

View File

@ -76,6 +76,9 @@ func DetermineEffectiveSecurityContext(pod *v1.Pod, container *v1.Container) *v1
effectiveSc.WindowsOptions.GMSACredentialSpecName = containerSc.WindowsOptions.GMSACredentialSpecName
effectiveSc.WindowsOptions.GMSACredentialSpec = containerSc.WindowsOptions.GMSACredentialSpec
}
if containerSc.WindowsOptions.RunAsUserName != nil {
effectiveSc.WindowsOptions.RunAsUserName = containerSc.WindowsOptions.RunAsUserName
}
}
if containerSc.Capabilities != nil {

File diff suppressed because it is too large Load Diff

View File

@ -2955,7 +2955,9 @@ message PodSecurityContext {
// +optional
optional SELinuxOptions seLinuxOptions = 1;
// Windows security options.
// The Windows specific settings applied to all containers.
// If unspecified, the options within a container's SecurityContext will be used.
// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
optional WindowsSecurityContextOptions windowsOptions = 8;
@ -4139,7 +4141,9 @@ message SecurityContext {
// +optional
optional SELinuxOptions seLinuxOptions = 3;
// Windows security options.
// The Windows specific settings applied to all containers.
// If unspecified, the options from the PodSecurityContext will be used.
// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
optional WindowsSecurityContextOptions windowsOptions = 10;
@ -4918,5 +4922,13 @@ message WindowsSecurityContextOptions {
// This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.
// +optional
optional string gmsaCredentialSpec = 2;
// 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.
// This field is alpha-level and it is only honored by servers that enable the WindowsRunAsUserName feature flag.
// +optional
optional string runAsUserName = 3;
}

View File

@ -3038,7 +3038,9 @@ type PodSecurityContext struct {
// takes precedence for that container.
// +optional
SELinuxOptions *SELinuxOptions `json:"seLinuxOptions,omitempty" protobuf:"bytes,1,opt,name=seLinuxOptions"`
// Windows security options.
// The Windows specific settings applied to all containers.
// If unspecified, the options within a container's SecurityContext will be used.
// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
WindowsOptions *WindowsSecurityContextOptions `json:"windowsOptions,omitempty" protobuf:"bytes,8,opt,name=windowsOptions"`
// The UID to run the entrypoint of the container process.
@ -5333,7 +5335,9 @@ type SecurityContext struct {
// PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
SELinuxOptions *SELinuxOptions `json:"seLinuxOptions,omitempty" protobuf:"bytes,3,opt,name=seLinuxOptions"`
// Windows security options.
// The Windows specific settings applied to all containers.
// If unspecified, the options from the PodSecurityContext will be used.
// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
// +optional
WindowsOptions *WindowsSecurityContextOptions `json:"windowsOptions,omitempty" protobuf:"bytes,10,opt,name=windowsOptions"`
// The UID to run the entrypoint of the container process.
@ -5419,6 +5423,14 @@ type WindowsSecurityContextOptions struct {
// This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.
// +optional
GMSACredentialSpec *string `json:"gmsaCredentialSpec,omitempty" protobuf:"bytes,2,opt,name=gmsaCredentialSpec"`
// 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.
// This field is alpha-level and it is only honored by servers that enable the WindowsRunAsUserName feature flag.
// +optional
RunAsUserName *string `json:"runAsUserName,omitempty" protobuf:"bytes,3,opt,name=runAsUserName"`
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

View File

@ -1512,7 +1512,7 @@ func (PodReadinessGate) SwaggerDoc() map[string]string {
var map_PodSecurityContext = map[string]string{
"": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"seLinuxOptions": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"windowsOptions": "Windows security options.",
"windowsOptions": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"runAsUser": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"runAsGroup": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"runAsNonRoot": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
@ -2025,7 +2025,7 @@ var map_SecurityContext = map[string]string{
"capabilities": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.",
"privileged": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"seLinuxOptions": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"windowsOptions": "Windows security options.",
"windowsOptions": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"runAsUser": "The UID to run the entrypoint of the container process. Defaults to 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.",
"runAsGroup": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"runAsNonRoot": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
@ -2379,6 +2379,7 @@ var map_WindowsSecurityContextOptions = map[string]string{
"": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"gmsaCredentialSpecName": "GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
"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. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
"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. This field is alpha-level and it is only honored by servers that enable the WindowsRunAsUserName feature flag.",
}
func (WindowsSecurityContextOptions) SwaggerDoc() map[string]string {

View File

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

View File

@ -579,7 +579,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "216",
"gmsaCredentialSpec": "217"
"gmsaCredentialSpec": "217",
"runAsUserName": "218"
},
"runAsUser": 6743064379422188907,
"runAsGroup": 3541984878507294780,
@ -594,59 +595,59 @@
],
"containers": [
{
"name": "218",
"image": "219",
"name": "219",
"image": "220",
"command": [
"220"
],
"args": [
"221"
],
"workingDir": "222",
"args": [
"222"
],
"workingDir": "223",
"ports": [
{
"name": "223",
"name": "224",
"hostPort": -1167973499,
"containerPort": 692541847,
"protocol": "Gưoɘ檲ɨ銦妰黖ȓƇ",
"hostIP": "224"
"hostIP": "225"
}
],
"envFrom": [
{
"prefix": "225",
"prefix": "226",
"configMapRef": {
"name": "226",
"name": "227",
"optional": true
},
"secretRef": {
"name": "227",
"name": "228",
"optional": false
}
}
],
"env": [
{
"name": "228",
"value": "229",
"name": "229",
"value": "230",
"valueFrom": {
"fieldRef": {
"apiVersion": "230",
"fieldPath": "231"
"apiVersion": "231",
"fieldPath": "232"
},
"resourceFieldRef": {
"containerName": "232",
"resource": "233",
"containerName": "233",
"resource": "234",
"divisor": "385"
},
"configMapKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": false
},
"secretKeyRef": {
"name": "236",
"key": "237",
"name": "237",
"key": "238",
"optional": true
}
}
@ -662,40 +663,40 @@
},
"volumeMounts": [
{
"name": "238",
"mountPath": "239",
"subPath": "240",
"name": "239",
"mountPath": "240",
"subPath": "241",
"mountPropagation": "2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN",
"subPathExpr": "241"
"subPathExpr": "242"
}
],
"volumeDevices": [
{
"name": "242",
"devicePath": "243"
"name": "243",
"devicePath": "244"
}
],
"livenessProbe": {
"exec": {
"command": [
"244"
"245"
]
},
"httpGet": {
"path": "245",
"port": "246",
"host": "247",
"path": "246",
"port": "247",
"host": "248",
"scheme": "}",
"httpHeaders": [
{
"name": "248",
"value": "249"
"name": "249",
"value": "250"
}
]
},
"tcpSocket": {
"port": "250",
"host": "251"
"port": "251",
"host": "252"
},
"initialDelaySeconds": 1030243869,
"timeoutSeconds": -1080853187,
@ -706,23 +707,23 @@
"readinessProbe": {
"exec": {
"command": [
"252"
"253"
]
},
"httpGet": {
"path": "253",
"port": "254",
"host": "255",
"path": "254",
"port": "255",
"host": "256",
"httpHeaders": [
{
"name": "256",
"value": "257"
"name": "257",
"value": "258"
}
]
},
"tcpSocket": {
"port": -289900366,
"host": "258"
"host": "259"
},
"initialDelaySeconds": 559781916,
"timeoutSeconds": -1703360754,
@ -734,51 +735,51 @@
"postStart": {
"exec": {
"command": [
"259"
"260"
]
},
"httpGet": {
"path": "260",
"port": "261",
"host": "262",
"path": "261",
"port": "262",
"host": "263",
"scheme": ":贅wE@Ȗs«öʮĀ\u003cé瞾",
"httpHeaders": [
{
"name": "263",
"value": "264"
"name": "264",
"value": "265"
}
]
},
"tcpSocket": {
"port": "265",
"host": "266"
"port": "266",
"host": "267"
}
},
"preStop": {
"exec": {
"command": [
"267"
"268"
]
},
"httpGet": {
"path": "268",
"path": "269",
"port": -1718681455,
"host": "269",
"host": "270",
"scheme": "*ʙ嫙\u0026蒒5靇C'ɵK.",
"httpHeaders": [
{
"name": "270",
"value": "271"
"name": "271",
"value": "272"
}
]
},
"tcpSocket": {
"port": "272",
"host": "273"
"port": "273",
"host": "274"
}
}
},
"terminationMessagePath": "274",
"terminationMessagePath": "275",
"terminationMessagePolicy": "£ȹ嫰ƹǔw÷nI粛E煹",
"imagePullPolicy": "ȃv渟7",
"securityContext": {
@ -792,14 +793,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "275",
"role": "276",
"type": "277",
"level": "278"
"user": "276",
"role": "277",
"type": "278",
"level": "279"
},
"windowsOptions": {
"gmsaCredentialSpecName": "279",
"gmsaCredentialSpec": "280"
"gmsaCredentialSpecName": "280",
"gmsaCredentialSpec": "281",
"runAsUserName": "282"
},
"runAsUser": -6244232606031635964,
"runAsGroup": -2537458620093904059,
@ -816,24 +818,25 @@
"activeDeadlineSeconds": -1172377136758373368,
"dnsPolicy": "Ndǂ\u003e5姣\u003e懔%熷谟þ蛯ɰ",
"nodeSelector": {
"281": "282"
"283": "284"
},
"serviceAccountName": "283",
"serviceAccount": "284",
"serviceAccountName": "285",
"serviceAccount": "286",
"automountServiceAccountToken": true,
"nodeName": "285",
"nodeName": "287",
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "286",
"role": "287",
"type": "288",
"level": "289"
"user": "288",
"role": "289",
"type": "290",
"level": "291"
},
"windowsOptions": {
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291"
"gmsaCredentialSpecName": "292",
"gmsaCredentialSpec": "293",
"runAsUserName": "294"
},
"runAsUser": 5824892309487369487,
"runAsGroup": 6134106493278592168,
@ -844,18 +847,18 @@
"fsGroup": -3979882341327374195,
"sysctls": [
{
"name": "292",
"value": "293"
"name": "295",
"value": "296"
}
]
},
"imagePullSecrets": [
{
"name": "294"
"name": "297"
}
],
"hostname": "295",
"subdomain": "296",
"hostname": "298",
"subdomain": "299",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -863,19 +866,19 @@
{
"matchExpressions": [
{
"key": "297",
"key": "300",
"operator": "t莭琽§ć\\ ïì",
"values": [
"298"
"301"
]
}
],
"matchFields": [
{
"key": "299",
"key": "302",
"operator": "ȿ0矀Kʝ",
"values": [
"300"
"303"
]
}
]
@ -888,19 +891,19 @@
"preference": {
"matchExpressions": [
{
"key": "301",
"key": "304",
"operator": "",
"values": [
"302"
"305"
]
}
],
"matchFields": [
{
"key": "303",
"key": "306",
"operator": "粕擓ƖHVe熼'FD",
"values": [
"304"
"307"
]
}
]
@ -926,9 +929,9 @@
]
},
"namespaces": [
"311"
"314"
],
"topologyKey": "312"
"topologyKey": "315"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -950,9 +953,9 @@
]
},
"namespaces": [
"319"
"322"
],
"topologyKey": "320"
"topologyKey": "323"
}
}
]
@ -972,9 +975,9 @@
]
},
"namespaces": [
"327"
"330"
],
"topologyKey": "328"
"topologyKey": "331"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -996,45 +999,45 @@
]
},
"namespaces": [
"335"
"338"
],
"topologyKey": "336"
"topologyKey": "339"
}
}
]
}
},
"schedulerName": "337",
"schedulerName": "340",
"tolerations": [
{
"key": "338",
"key": "341",
"operator": "Uȍ",
"value": "339",
"value": "342",
"effect": "^\u003cu綡Ţ搯唧",
"tolerationSeconds": 5874355269862618775
}
],
"hostAliases": [
{
"ip": "340",
"ip": "343",
"hostnames": [
"341"
"344"
]
}
],
"priorityClassName": "342",
"priorityClassName": "345",
"priority": -1662855542,
"dnsConfig": {
"nameservers": [
"343"
"346"
],
"searches": [
"344"
"347"
],
"options": [
{
"name": "345",
"value": "346"
"name": "348",
"value": "349"
}
]
},
@ -1043,7 +1046,7 @@
"conditionType": "l=ƈư呄"
}
],
"runtimeClassName": "347",
"runtimeClassName": "350",
"enableServiceLinks": true,
"preemptionPolicy": "ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ",
"overhead": {
@ -1075,8 +1078,8 @@
"type": "ŜĂ",
"status": "!ń1ċƹ|慼櫁色苆试揯遐",
"lastTransitionTime": "2058-09-30T18:21:51Z",
"reason": "348",
"message": "349"
"reason": "351",
"message": "352"
}
]
}

View File

@ -80,28 +80,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "301"
- key: "304"
operator: ""
values:
- "302"
- "305"
matchFields:
- key: "303"
- key: "306"
operator: 粕擓ƖHVe熼'FD
values:
- "304"
- "307"
weight: 1281792166
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "297"
- key: "300"
operator: t莭琽§ć\ ïì
values:
- "298"
- "301"
matchFields:
- key: "299"
- key: "302"
operator: ȿ0矀Kʝ
values:
- "300"
- "303"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -114,8 +114,8 @@ spec:
matchLabels:
aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x.2K_q: N0S-CqW.D_8--21kF-c026.-iTl.1-.VT--5mj_9.M.3
namespaces:
- "319"
topologyKey: "320"
- "322"
topologyKey: "323"
weight: -1129218498
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -127,8 +127,8 @@ spec:
matchLabels:
q1d---x/31..jtFe8b_A_..P1s-V.9.4..9..cu: i.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_m
namespaces:
- "311"
topologyKey: "312"
- "314"
topologyKey: "315"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -141,8 +141,8 @@ spec:
matchLabels:
1.O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.C.-e16O: 5Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-Wo
namespaces:
- "335"
topologyKey: "336"
- "338"
topologyKey: "339"
weight: 1262074531
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -152,118 +152,118 @@ spec:
matchLabels:
1j2--a.pp9-8--m-cbck561-72-l84--162-gk2-99v2xu-3po4--3os1-5-ufkr-x0/3G.b_9_1o.w_aI._31-_I-A-_3bz._8MU: P_3..H..k9M86.9a_-0R_.ZI
namespaces:
- "327"
topologyKey: "328"
- "330"
topologyKey: "331"
automountServiceAccountToken: true
containers:
- args:
- "221"
- "222"
command:
- "220"
- "221"
env:
- name: "228"
value: "229"
- name: "229"
value: "230"
valueFrom:
configMapKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: false
fieldRef:
apiVersion: "230"
fieldPath: "231"
apiVersion: "231"
fieldPath: "232"
resourceFieldRef:
containerName: "232"
containerName: "233"
divisor: "385"
resource: "233"
resource: "234"
secretKeyRef:
key: "237"
name: "236"
key: "238"
name: "237"
optional: true
envFrom:
- configMapRef:
name: "226"
optional: true
prefix: "225"
secretRef:
name: "227"
optional: true
prefix: "226"
secretRef:
name: "228"
optional: false
image: "219"
image: "220"
imagePullPolicy: ȃv渟7
lifecycle:
postStart:
exec:
command:
- "259"
- "260"
httpGet:
host: "262"
host: "263"
httpHeaders:
- name: "263"
value: "264"
path: "260"
port: "261"
- name: "264"
value: "265"
path: "261"
port: "262"
scheme: :贅wE@Ȗs«öʮĀ<é瞾
tcpSocket:
host: "266"
port: "265"
host: "267"
port: "266"
preStop:
exec:
command:
- "267"
- "268"
httpGet:
host: "269"
host: "270"
httpHeaders:
- name: "270"
value: "271"
path: "268"
- name: "271"
value: "272"
path: "269"
port: -1718681455
scheme: '*ʙ嫙&蒒5靇C''ɵK.'
tcpSocket:
host: "273"
port: "272"
host: "274"
port: "273"
livenessProbe:
exec:
command:
- "244"
- "245"
failureThreshold: -31530684
httpGet:
host: "247"
host: "248"
httpHeaders:
- name: "248"
value: "249"
path: "245"
port: "246"
- name: "249"
value: "250"
path: "246"
port: "247"
scheme: '}'
initialDelaySeconds: 1030243869
periodSeconds: -185042403
successThreshold: -374922344
tcpSocket:
host: "251"
port: "250"
host: "252"
port: "251"
timeoutSeconds: -1080853187
name: "218"
name: "219"
ports:
- containerPort: 692541847
hostIP: "224"
hostIP: "225"
hostPort: -1167973499
name: "223"
name: "224"
protocol: Gưoɘ檲ɨ銦妰黖ȓƇ
readinessProbe:
exec:
command:
- "252"
- "253"
failureThreshold: 1471432155
httpGet:
host: "255"
host: "256"
httpHeaders:
- name: "256"
value: "257"
path: "253"
port: "254"
- name: "257"
value: "258"
path: "254"
port: "255"
initialDelaySeconds: 559781916
periodSeconds: -1569009987
successThreshold: -1053603859
tcpSocket:
host: "258"
host: "259"
port: -289900366
timeoutSeconds: -1703360754
resources:
@ -285,44 +285,45 @@ spec:
runAsNonRoot: false
runAsUser: -6244232606031635964
seLinuxOptions:
level: "278"
role: "276"
type: "277"
user: "275"
level: "279"
role: "277"
type: "278"
user: "276"
windowsOptions:
gmsaCredentialSpec: "280"
gmsaCredentialSpecName: "279"
gmsaCredentialSpec: "281"
gmsaCredentialSpecName: "280"
runAsUserName: "282"
stdinOnce: true
terminationMessagePath: "274"
terminationMessagePath: "275"
terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹
volumeDevices:
- devicePath: "243"
name: "242"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "239"
- mountPath: "240"
mountPropagation: 2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN
name: "238"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "343"
- "346"
options:
- name: "345"
value: "346"
- name: "348"
value: "349"
searches:
- "344"
- "347"
dnsPolicy: Ndǂ>5姣>懔%熷谟þ蛯ɰ
enableServiceLinks: true
hostAliases:
- hostnames:
- "341"
ip: "340"
- "344"
ip: "343"
hostPID: true
hostname: "295"
hostname: "298"
imagePullSecrets:
- name: "294"
- name: "297"
initContainers:
- args:
- "159"
@ -461,6 +462,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "217"
gmsaCredentialSpecName: "216"
runAsUserName: "218"
stdin: true
terminationMessagePath: "211"
terminationMessagePolicy: 恰nj揠8lj黳鈫ʕ
@ -476,48 +478,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "285"
nodeName: "287"
nodeSelector:
"281": "282"
"283": "284"
overhead:
硑Ț匡婲#ɛ蛳j惧鷋簡SļŽɣB矗E: "667"
preemptionPolicy: ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ
priority: -1662855542
priorityClassName: "342"
priorityClassName: "345"
readinessGates:
- conditionType: l=ƈư呄
restartPolicy: ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
runtimeClassName: "347"
schedulerName: "337"
runtimeClassName: "350"
schedulerName: "340"
securityContext:
fsGroup: -3979882341327374195
runAsGroup: 6134106493278592168
runAsNonRoot: true
runAsUser: 5824892309487369487
seLinuxOptions:
level: "289"
role: "287"
type: "288"
user: "286"
level: "291"
role: "289"
type: "290"
user: "288"
supplementalGroups:
- -4964947941541214699
sysctls:
- name: "292"
value: "293"
- name: "295"
value: "296"
windowsOptions:
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
serviceAccount: "284"
serviceAccountName: "283"
gmsaCredentialSpec: "293"
gmsaCredentialSpecName: "292"
runAsUserName: "294"
serviceAccount: "286"
serviceAccountName: "285"
shareProcessNamespace: true
subdomain: "296"
subdomain: "299"
terminationGracePeriodSeconds: 1221494839594199191
tolerations:
- effect: ^<u綡Ţ搯唧
key: "338"
key: "341"
operator:
tolerationSeconds: 5874355269862618775
value: "339"
value: "342"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -725,8 +728,8 @@ status:
collisionCount: 256213209
conditions:
- lastTransitionTime: "2058-09-30T18:21:51Z"
message: "349"
reason: "348"
message: "352"
reason: "351"
status: '!ń1ċƹ|慼櫁色苆试揯遐'
type: ŜĂ
currentNumberScheduled: -699990187

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1081,8 +1084,8 @@
"status": "}óǑ獰Ĉ癯頯",
"lastUpdateTime": "2605-01-14T06:17:32Z",
"lastTransitionTime": "2709-11-25T14:54:03Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
],
"collisionCount": -2053075334

View File

@ -86,28 +86,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -120,8 +120,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -133,8 +133,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -147,8 +147,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -160,120 +160,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -294,45 +294,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -471,6 +472,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -484,48 +486,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -734,8 +737,8 @@ status:
conditions:
- lastTransitionTime: "2709-11-25T14:54:03Z"
lastUpdateTime: "2605-01-14T06:17:32Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: '}óǑ獰Ĉ癯頯'
type: ªɛȨç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥摮
observedGeneration: -2515851994541435779

View File

@ -577,7 +577,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "215",
"gmsaCredentialSpec": "216"
"gmsaCredentialSpec": "216",
"runAsUserName": "217"
},
"runAsUser": -7286288718856494813,
"runAsGroup": -5951050835676650382,
@ -591,59 +592,59 @@
],
"containers": [
{
"name": "217",
"image": "218",
"name": "218",
"image": "219",
"command": [
"219"
],
"args": [
"220"
],
"workingDir": "221",
"args": [
"221"
],
"workingDir": "222",
"ports": [
{
"name": "222",
"name": "223",
"hostPort": -1470854631,
"containerPort": -1815391069,
"protocol": ʋŀ樺ȃv",
"hostIP": "223"
"hostIP": "224"
}
],
"envFrom": [
{
"prefix": "224",
"prefix": "225",
"configMapRef": {
"name": "225",
"name": "226",
"optional": true
},
"secretRef": {
"name": "226",
"name": "227",
"optional": true
}
}
],
"env": [
{
"name": "227",
"value": "228",
"name": "228",
"value": "229",
"valueFrom": {
"fieldRef": {
"apiVersion": "229",
"fieldPath": "230"
"apiVersion": "230",
"fieldPath": "231"
},
"resourceFieldRef": {
"containerName": "231",
"resource": "232",
"containerName": "232",
"resource": "233",
"divisor": "508"
},
"configMapKeyRef": {
"name": "233",
"key": "234",
"name": "234",
"key": "235",
"optional": false
},
"secretKeyRef": {
"name": "235",
"key": "236",
"name": "236",
"key": "237",
"optional": true
}
}
@ -659,41 +660,41 @@
},
"volumeMounts": [
{
"name": "237",
"name": "238",
"readOnly": true,
"mountPath": "238",
"subPath": "239",
"mountPath": "239",
"subPath": "240",
"mountPropagation": "",
"subPathExpr": "240"
"subPathExpr": "241"
}
],
"volumeDevices": [
{
"name": "241",
"devicePath": "242"
"name": "242",
"devicePath": "243"
}
],
"livenessProbe": {
"exec": {
"command": [
"243"
"244"
]
},
"httpGet": {
"path": "244",
"port": "245",
"host": "246",
"path": "245",
"port": "246",
"host": "247",
"scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽",
"httpHeaders": [
{
"name": "247",
"value": "248"
"name": "248",
"value": "249"
}
]
},
"tcpSocket": {
"port": 1096174794,
"host": "249"
"host": "250"
},
"initialDelaySeconds": 1591029717,
"timeoutSeconds": 1255169591,
@ -704,24 +705,24 @@
"readinessProbe": {
"exec": {
"command": [
"250"
"251"
]
},
"httpGet": {
"path": "251",
"port": "252",
"host": "253",
"path": "252",
"port": "253",
"host": "254",
"scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ",
"httpHeaders": [
{
"name": "254",
"value": "255"
"name": "255",
"value": "256"
}
]
},
"tcpSocket": {
"port": "256",
"host": "257"
"port": "257",
"host": "258"
},
"initialDelaySeconds": -394397948,
"timeoutSeconds": 2040455355,
@ -733,51 +734,51 @@
"postStart": {
"exec": {
"command": [
"258"
"259"
]
},
"httpGet": {
"path": "259",
"port": "260",
"host": "261",
"path": "260",
"port": "261",
"host": "262",
"scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7",
"httpHeaders": [
{
"name": "262",
"value": "263"
"name": "263",
"value": "264"
}
]
},
"tcpSocket": {
"port": "264",
"host": "265"
"port": "265",
"host": "266"
}
},
"preStop": {
"exec": {
"command": [
"266"
"267"
]
},
"httpGet": {
"path": "267",
"path": "268",
"port": -1675041613,
"host": "268",
"host": "269",
"scheme": "揆ɘȌ脾嚏吐",
"httpHeaders": [
{
"name": "269",
"value": "270"
"name": "270",
"value": "271"
}
]
},
"tcpSocket": {
"port": -194343002,
"host": "271"
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": "Ȥ藠3.",
"imagePullPolicy": "t莭琽§ć\\ ïì",
"securityContext": {
@ -791,14 +792,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -2142888785755371163,
"runAsGroup": -2879304435996142911,
@ -815,25 +817,26 @@
"activeDeadlineSeconds": -5860790522738935260,
"dnsPolicy": "w(ğ儴Ůĺ}潷ʒ胵",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -7059779929916534575,
"runAsGroup": -4105014793515441558,
@ -844,18 +847,18 @@
"fsGroup": 7861919711004065015,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -863,19 +866,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "t叀碧闳ȩr嚧ʣq埄",
"values": [
"298"
"301"
]
}
]
@ -888,19 +891,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "岼昕ĬÇó藢xɮĵȑ6L*Z",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "绤fʀļ腩墺Ò媁荭g",
"values": [
"302"
"305"
]
}
]
@ -923,9 +926,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -944,9 +947,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -966,9 +969,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -990,45 +993,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "}缫,",
"value": "337",
"value": "340",
"effect": "ɉ愂",
"tolerationSeconds": 5005983565679986804
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": 178156526,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1037,7 +1040,7 @@
"conditionType": "糮R(_âŔ獎$ƆJije檗"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "ʜ_ȭwɵ糫武诰ð",
"overhead": {
@ -1057,8 +1060,8 @@
"type": "\u003cvĝ線Ưȫ喆5O2.:鑋Ļ",
"status": "H筆U锟蕞纥奆0ǔ廘ɵ岳v\u0026ȝxɕū",
"lastTransitionTime": "2732-10-05T01:06:26Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
]
}

View File

@ -81,28 +81,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: 岼昕ĬÇó藢xɮĵȑ6L*Z
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: 绤fʀļ腩墺Ò媁荭g
values:
- "302"
- "305"
weight: -379385405
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: t叀碧闳ȩr嚧ʣq埄
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -113,8 +113,8 @@ spec:
matchLabels:
N-_-vv-Q2q7: 3.4....-h._.GgT7_7P
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: 1258370227
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -124,8 +124,8 @@ spec:
matchLabels:
6-d42--clo90---461v-07r--0---8-30i-uo/9DF: AH-Q.GM72_-c-.-.6--3-__t
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -138,8 +138,8 @@ spec:
matchLabels:
gr-y7nlp97v-0-1y-t3---2ga-v205p-26-l.p2-t--m-l80--5o1--cp6-5-x1---0w4rm0/f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--wO: ""
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: 1289969734
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -149,120 +149,120 @@ spec:
matchLabels:
927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-53-x1y-8---3----7/mf.-f.-zv._._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_x32: 0U1_-__.71-_-9_._X-D---k..1Q7N
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "220"
- "221"
command:
- "219"
- "220"
env:
- name: "227"
value: "228"
- name: "228"
value: "229"
valueFrom:
configMapKeyRef:
key: "234"
name: "233"
key: "235"
name: "234"
optional: false
fieldRef:
apiVersion: "229"
fieldPath: "230"
apiVersion: "230"
fieldPath: "231"
resourceFieldRef:
containerName: "231"
containerName: "232"
divisor: "508"
resource: "232"
resource: "233"
secretKeyRef:
key: "236"
name: "235"
key: "237"
name: "236"
optional: true
envFrom:
- configMapRef:
name: "225"
optional: true
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
prefix: "225"
secretRef:
name: "227"
optional: true
image: "219"
imagePullPolicy: t莭琽§ć\ ïì
lifecycle:
postStart:
exec:
command:
- "258"
- "259"
httpGet:
host: "261"
host: "262"
httpHeaders:
- name: "262"
value: "263"
path: "259"
port: "260"
- name: "263"
value: "264"
path: "260"
port: "261"
scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7
tcpSocket:
host: "265"
port: "264"
host: "266"
port: "265"
preStop:
exec:
command:
- "266"
- "267"
httpGet:
host: "268"
host: "269"
httpHeaders:
- name: "269"
value: "270"
path: "267"
- name: "270"
value: "271"
path: "268"
port: -1675041613
scheme: 揆ɘȌ脾嚏吐
tcpSocket:
host: "271"
host: "272"
port: -194343002
livenessProbe:
exec:
command:
- "243"
- "244"
failureThreshold: 817152661
httpGet:
host: "246"
host: "247"
httpHeaders:
- name: "247"
value: "248"
path: "244"
port: "245"
- name: "248"
value: "249"
path: "245"
port: "246"
scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽
initialDelaySeconds: 1591029717
periodSeconds: 622473257
successThreshold: -966649167
tcpSocket:
host: "249"
host: "250"
port: 1096174794
timeoutSeconds: 1255169591
name: "217"
name: "218"
ports:
- containerPort: -1815391069
hostIP: "223"
hostIP: "224"
hostPort: -1470854631
name: "222"
name: "223"
protocol: Ƹʋŀ樺ȃv
readinessProbe:
exec:
command:
- "250"
- "251"
failureThreshold: 1214895765
httpGet:
host: "253"
host: "254"
httpHeaders:
- name: "254"
value: "255"
path: "251"
port: "252"
- name: "255"
value: "256"
path: "252"
port: "253"
scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ
initialDelaySeconds: -394397948
periodSeconds: 1505972335
successThreshold: -26910286
tcpSocket:
host: "257"
port: "256"
host: "258"
port: "257"
timeoutSeconds: 2040455355
resources:
limits:
@ -283,46 +283,47 @@ spec:
runAsNonRoot: false
runAsUser: -2142888785755371163
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdin: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: Ȥ藠3.
volumeDevices:
- devicePath: "242"
name: "241"
- devicePath: "243"
name: "242"
volumeMounts:
- mountPath: "238"
- mountPath: "239"
mountPropagation: ""
name: "237"
name: "238"
readOnly: true
subPath: "239"
subPathExpr: "240"
workingDir: "221"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: w(ğ儴Ůĺ}潷ʒ胵
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostPID: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -461,6 +462,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "216"
gmsaCredentialSpecName: "215"
runAsUserName: "217"
stdinOnce: true
terminationMessagePath: "210"
terminationMessagePolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ
@ -474,48 +476,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
娒Ġ滔xvŗÑ"虆k遚釾ʼn{: "803"
preemptionPolicy: ʜ_ȭwɵ糫武诰ð
priority: 178156526
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: 糮R(_âŔ獎$ƆJije檗
restartPolicy: ȶ网棊ʢ=wǕɳɷ9Ì
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: 7861919711004065015
runAsGroup: -4105014793515441558
runAsNonRoot: true
runAsUser: -7059779929916534575
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 830921445879518469
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -860974700141841896
tolerations:
- effect: ɉ愂
key: "336"
key: "339"
operator: '}缫,'
tolerationSeconds: 5005983565679986804
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -716,8 +719,8 @@ status:
availableReplicas: -746105654
conditions:
- lastTransitionTime: "2732-10-05T01:06:26Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: H筆U锟蕞纥奆0ǔ廘ɵ岳v&ȝxɕū
type: <vĝ線Ưȫ喆5O2.:鑋Ļ
fullyLabeledReplicas: 801466911

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1061,40 +1064,40 @@
"volumeClaimTemplates": [
{
"metadata": {
"name": "346",
"generateName": "347",
"namespace": "348",
"selfLink": "349",
"name": "349",
"generateName": "350",
"namespace": "351",
"selfLink": "352",
"resourceVersion": "5540407251138887855",
"generation": -3511493794676511173,
"creationTimestamp": null,
"deletionGracePeriodSeconds": 5247456886637678767,
"labels": {
"351": "352"
"354": "355"
},
"annotations": {
"353": "354"
"356": "357"
},
"ownerReferences": [
{
"apiVersion": "355",
"kind": "356",
"name": "357",
"apiVersion": "358",
"kind": "359",
"name": "360",
"uid": "Bb偃礳Ȭ痍脉PP",
"controller": false,
"blockOwnerDeletion": true
}
],
"finalizers": [
"358"
"361"
],
"clusterName": "359",
"clusterName": "362",
"managedFields": [
{
"manager": "360",
"manager": "363",
"operation": "餘ŁƁ翂|C",
"apiVersion": "361",
"fields": {"362":{"363":null}}
"apiVersion": "364",
"fields": {"365":{"366":null}}
}
]
},
@ -1121,13 +1124,13 @@
"Z綶ĀRġ磸": "628"
}
},
"volumeName": "372",
"storageClassName": "373",
"volumeName": "375",
"storageClassName": "376",
"volumeMode": "ȗ\u003c8^翜T蘈",
"dataSource": {
"apiGroup": "374",
"kind": "375",
"name": "376"
"apiGroup": "377",
"kind": "378",
"name": "379"
}
},
"status": {
@ -1144,14 +1147,14 @@
"status": "4'N擻",
"lastProbeTime": "2725-12-02T15:24:11Z",
"lastTransitionTime": "2546-07-16T14:04:49Z",
"reason": "377",
"message": "378"
"reason": "380",
"message": "381"
}
]
}
}
],
"serviceName": "379",
"serviceName": "382",
"updateStrategy": {
"rollingUpdate": {
"partition": 1952497813
@ -1165,16 +1168,16 @@
"readyReplicas": -1147281085,
"currentReplicas": -2037929910,
"updatedReplicas": 1589830480,
"currentRevision": "380",
"updateRevision": "381",
"currentRevision": "383",
"updateRevision": "384",
"collisionCount": 1897665453,
"conditions": [
{
"type": "\u003c僚徘ó蒿",
"status": "誀ŭ\"ɦ?",
"lastTransitionTime": "2741-08-01T23:33:42Z",
"reason": "382",
"message": "383"
"reason": "385",
"message": "386"
}
]
}

View File

@ -42,7 +42,7 @@ spec:
- y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16
matchLabels:
w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F
serviceName: "379"
serviceName: "382"
template:
metadata:
annotations:
@ -82,28 +82,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -116,8 +116,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -129,8 +129,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -143,8 +143,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -156,120 +156,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -290,45 +290,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -467,6 +468,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -480,48 +482,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -730,41 +733,41 @@ spec:
volumeClaimTemplates:
- metadata:
annotations:
"353": "354"
clusterName: "359"
"356": "357"
clusterName: "362"
creationTimestamp: null
deletionGracePeriodSeconds: 5247456886637678767
finalizers:
- "358"
generateName: "347"
- "361"
generateName: "350"
generation: -3511493794676511173
labels:
"351": "352"
"354": "355"
managedFields:
- apiVersion: "361"
- apiVersion: "364"
fields:
"362":
"363": null
manager: "360"
"365":
"366": null
manager: "363"
operation: 餘ŁƁ翂|C
name: "346"
namespace: "348"
name: "349"
namespace: "351"
ownerReferences:
- apiVersion: "355"
- apiVersion: "358"
blockOwnerDeletion: true
controller: false
kind: "356"
name: "357"
kind: "359"
name: "360"
uid: Bb偃礳Ȭ痍脉PP
resourceVersion: "5540407251138887855"
selfLink: "349"
selfLink: "352"
spec:
accessModes:
- 藷曥摮Z Ǐg鲅峣/vɟ擅Ɇǥ
dataSource:
apiGroup: "374"
kind: "375"
name: "376"
apiGroup: "377"
kind: "378"
name: "379"
resources:
limits:
"": "204"
@ -776,9 +779,9 @@ spec:
operator: Exists
matchLabels:
L_1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__40: a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
storageClassName: "373"
storageClassName: "376"
volumeMode: ȗ<8^翜T蘈
volumeName: "372"
volumeName: "375"
status:
accessModes:
- ""
@ -787,8 +790,8 @@ spec:
conditions:
- lastProbeTime: "2725-12-02T15:24:11Z"
lastTransitionTime: "2546-07-16T14:04:49Z"
message: "378"
reason: "377"
message: "381"
reason: "380"
status: 4'N擻
type: mAȥ睙蜵E坉Ɖ虼/h毂y覙 
phase: 筞X銲tHǽ÷閂抰
@ -796,14 +799,14 @@ status:
collisionCount: 1897665453
conditions:
- lastTransitionTime: "2741-08-01T23:33:42Z"
message: "383"
reason: "382"
message: "386"
reason: "385"
status: 誀ŭ"ɦ?
type: <僚徘ó蒿
currentReplicas: -2037929910
currentRevision: "380"
currentRevision: "383"
observedGeneration: 8218676932085767799
readyReplicas: -1147281085
replicas: 1423120294
updateRevision: "381"
updateRevision: "384"
updatedReplicas: 1589830480

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1084,8 +1087,8 @@
"status": "@ǮJ=礏ƴ磳藷曥摮Z",
"lastUpdateTime": "2156-01-27T01:49:17Z",
"lastTransitionTime": "2915-06-26T10:11:26Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
],
"collisionCount": -248869594

View File

@ -88,28 +88,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -122,8 +122,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -135,8 +135,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -149,8 +149,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -162,120 +162,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -296,45 +296,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -473,6 +474,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -486,48 +488,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -736,8 +739,8 @@ status:
conditions:
- lastTransitionTime: "2915-06-26T10:11:26Z"
lastUpdateTime: "2156-01-27T01:49:17Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: '@ǮJ=礏ƴ磳藷曥摮Z'
type: 餘ŁƁ翂|C
observedGeneration: -7566638657230957553

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1061,40 +1064,40 @@
"volumeClaimTemplates": [
{
"metadata": {
"name": "346",
"generateName": "347",
"namespace": "348",
"selfLink": "349",
"name": "349",
"generateName": "350",
"namespace": "351",
"selfLink": "352",
"resourceVersion": "5540407251138887855",
"generation": -3511493794676511173,
"creationTimestamp": null,
"deletionGracePeriodSeconds": 5247456886637678767,
"labels": {
"351": "352"
"354": "355"
},
"annotations": {
"353": "354"
"356": "357"
},
"ownerReferences": [
{
"apiVersion": "355",
"kind": "356",
"name": "357",
"apiVersion": "358",
"kind": "359",
"name": "360",
"uid": "Bb偃礳Ȭ痍脉PP",
"controller": false,
"blockOwnerDeletion": true
}
],
"finalizers": [
"358"
"361"
],
"clusterName": "359",
"clusterName": "362",
"managedFields": [
{
"manager": "360",
"manager": "363",
"operation": "餘ŁƁ翂|C",
"apiVersion": "361",
"fields": {"362":{"363":null}}
"apiVersion": "364",
"fields": {"365":{"366":null}}
}
]
},
@ -1121,13 +1124,13 @@
"Z綶ĀRġ磸": "628"
}
},
"volumeName": "372",
"storageClassName": "373",
"volumeName": "375",
"storageClassName": "376",
"volumeMode": "ȗ\u003c8^翜T蘈",
"dataSource": {
"apiGroup": "374",
"kind": "375",
"name": "376"
"apiGroup": "377",
"kind": "378",
"name": "379"
}
},
"status": {
@ -1144,14 +1147,14 @@
"status": "4'N擻",
"lastProbeTime": "2725-12-02T15:24:11Z",
"lastTransitionTime": "2546-07-16T14:04:49Z",
"reason": "377",
"message": "378"
"reason": "380",
"message": "381"
}
]
}
}
],
"serviceName": "379",
"serviceName": "382",
"updateStrategy": {
"rollingUpdate": {
"partition": 1952497813
@ -1165,16 +1168,16 @@
"readyReplicas": 1948226499,
"currentReplicas": 2000161472,
"updatedReplicas": -326058040,
"currentRevision": "380",
"updateRevision": "381",
"currentRevision": "383",
"updateRevision": "384",
"collisionCount": 1345726423,
"conditions": [
{
"type": "暬Ƒ琇ũ齑誀ŭ\"ɦ?鮻ȧH僠",
"status": "ÙQ阉(闒ƈƳ萎Ŋ\u003ceÙ蝌铀í",
"lastTransitionTime": "2059-07-10T07:14:14Z",
"reason": "382",
"message": "383"
"reason": "385",
"message": "386"
}
]
}

View File

@ -42,7 +42,7 @@ spec:
- y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16
matchLabels:
w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F
serviceName: "379"
serviceName: "382"
template:
metadata:
annotations:
@ -82,28 +82,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -116,8 +116,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -129,8 +129,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -143,8 +143,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -156,120 +156,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -290,45 +290,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -467,6 +468,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -480,48 +482,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -730,41 +733,41 @@ spec:
volumeClaimTemplates:
- metadata:
annotations:
"353": "354"
clusterName: "359"
"356": "357"
clusterName: "362"
creationTimestamp: null
deletionGracePeriodSeconds: 5247456886637678767
finalizers:
- "358"
generateName: "347"
- "361"
generateName: "350"
generation: -3511493794676511173
labels:
"351": "352"
"354": "355"
managedFields:
- apiVersion: "361"
- apiVersion: "364"
fields:
"362":
"363": null
manager: "360"
"365":
"366": null
manager: "363"
operation: 餘ŁƁ翂|C
name: "346"
namespace: "348"
name: "349"
namespace: "351"
ownerReferences:
- apiVersion: "355"
- apiVersion: "358"
blockOwnerDeletion: true
controller: false
kind: "356"
name: "357"
kind: "359"
name: "360"
uid: Bb偃礳Ȭ痍脉PP
resourceVersion: "5540407251138887855"
selfLink: "349"
selfLink: "352"
spec:
accessModes:
- 藷曥摮Z Ǐg鲅峣/vɟ擅Ɇǥ
dataSource:
apiGroup: "374"
kind: "375"
name: "376"
apiGroup: "377"
kind: "378"
name: "379"
resources:
limits:
"": "204"
@ -776,9 +779,9 @@ spec:
operator: Exists
matchLabels:
L_1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__40: a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
storageClassName: "373"
storageClassName: "376"
volumeMode: ȗ<8^翜T蘈
volumeName: "372"
volumeName: "375"
status:
accessModes:
- ""
@ -787,8 +790,8 @@ spec:
conditions:
- lastProbeTime: "2725-12-02T15:24:11Z"
lastTransitionTime: "2546-07-16T14:04:49Z"
message: "378"
reason: "377"
message: "381"
reason: "380"
status: 4'N擻
type: mAȥ睙蜵E坉Ɖ虼/h毂y覙 
phase: 筞X銲tHǽ÷閂抰
@ -796,14 +799,14 @@ status:
collisionCount: 1345726423
conditions:
- lastTransitionTime: "2059-07-10T07:14:14Z"
message: "383"
reason: "382"
message: "386"
reason: "385"
status: ÙQ阉(闒ƈƳ萎Ŋ<eÙ蝌铀í
type: 暬Ƒ琇ũ齑誀ŭ"ɦ?鮻ȧH僠
currentReplicas: 2000161472
currentRevision: "380"
currentRevision: "383"
observedGeneration: 1489387970461329270
readyReplicas: 1948226499
replicas: 1836894267
updateRevision: "381"
updateRevision: "384"
updatedReplicas: -326058040

View File

@ -579,7 +579,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "216",
"gmsaCredentialSpec": "217"
"gmsaCredentialSpec": "217",
"runAsUserName": "218"
},
"runAsUser": 6743064379422188907,
"runAsGroup": 3541984878507294780,
@ -594,59 +595,59 @@
],
"containers": [
{
"name": "218",
"image": "219",
"name": "219",
"image": "220",
"command": [
"220"
],
"args": [
"221"
],
"workingDir": "222",
"args": [
"222"
],
"workingDir": "223",
"ports": [
{
"name": "223",
"name": "224",
"hostPort": -1167973499,
"containerPort": 692541847,
"protocol": "Gưoɘ檲ɨ銦妰黖ȓƇ",
"hostIP": "224"
"hostIP": "225"
}
],
"envFrom": [
{
"prefix": "225",
"prefix": "226",
"configMapRef": {
"name": "226",
"name": "227",
"optional": true
},
"secretRef": {
"name": "227",
"name": "228",
"optional": false
}
}
],
"env": [
{
"name": "228",
"value": "229",
"name": "229",
"value": "230",
"valueFrom": {
"fieldRef": {
"apiVersion": "230",
"fieldPath": "231"
"apiVersion": "231",
"fieldPath": "232"
},
"resourceFieldRef": {
"containerName": "232",
"resource": "233",
"containerName": "233",
"resource": "234",
"divisor": "385"
},
"configMapKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": false
},
"secretKeyRef": {
"name": "236",
"key": "237",
"name": "237",
"key": "238",
"optional": true
}
}
@ -662,40 +663,40 @@
},
"volumeMounts": [
{
"name": "238",
"mountPath": "239",
"subPath": "240",
"name": "239",
"mountPath": "240",
"subPath": "241",
"mountPropagation": "2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN",
"subPathExpr": "241"
"subPathExpr": "242"
}
],
"volumeDevices": [
{
"name": "242",
"devicePath": "243"
"name": "243",
"devicePath": "244"
}
],
"livenessProbe": {
"exec": {
"command": [
"244"
"245"
]
},
"httpGet": {
"path": "245",
"port": "246",
"host": "247",
"path": "246",
"port": "247",
"host": "248",
"scheme": "}",
"httpHeaders": [
{
"name": "248",
"value": "249"
"name": "249",
"value": "250"
}
]
},
"tcpSocket": {
"port": "250",
"host": "251"
"port": "251",
"host": "252"
},
"initialDelaySeconds": 1030243869,
"timeoutSeconds": -1080853187,
@ -706,23 +707,23 @@
"readinessProbe": {
"exec": {
"command": [
"252"
"253"
]
},
"httpGet": {
"path": "253",
"port": "254",
"host": "255",
"path": "254",
"port": "255",
"host": "256",
"httpHeaders": [
{
"name": "256",
"value": "257"
"name": "257",
"value": "258"
}
]
},
"tcpSocket": {
"port": -289900366,
"host": "258"
"host": "259"
},
"initialDelaySeconds": 559781916,
"timeoutSeconds": -1703360754,
@ -734,51 +735,51 @@
"postStart": {
"exec": {
"command": [
"259"
"260"
]
},
"httpGet": {
"path": "260",
"port": "261",
"host": "262",
"path": "261",
"port": "262",
"host": "263",
"scheme": ":贅wE@Ȗs«öʮĀ\u003cé瞾",
"httpHeaders": [
{
"name": "263",
"value": "264"
"name": "264",
"value": "265"
}
]
},
"tcpSocket": {
"port": "265",
"host": "266"
"port": "266",
"host": "267"
}
},
"preStop": {
"exec": {
"command": [
"267"
"268"
]
},
"httpGet": {
"path": "268",
"path": "269",
"port": -1718681455,
"host": "269",
"host": "270",
"scheme": "*ʙ嫙\u0026蒒5靇C'ɵK.",
"httpHeaders": [
{
"name": "270",
"value": "271"
"name": "271",
"value": "272"
}
]
},
"tcpSocket": {
"port": "272",
"host": "273"
"port": "273",
"host": "274"
}
}
},
"terminationMessagePath": "274",
"terminationMessagePath": "275",
"terminationMessagePolicy": "£ȹ嫰ƹǔw÷nI粛E煹",
"imagePullPolicy": "ȃv渟7",
"securityContext": {
@ -792,14 +793,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "275",
"role": "276",
"type": "277",
"level": "278"
"user": "276",
"role": "277",
"type": "278",
"level": "279"
},
"windowsOptions": {
"gmsaCredentialSpecName": "279",
"gmsaCredentialSpec": "280"
"gmsaCredentialSpecName": "280",
"gmsaCredentialSpec": "281",
"runAsUserName": "282"
},
"runAsUser": -6244232606031635964,
"runAsGroup": -2537458620093904059,
@ -816,24 +818,25 @@
"activeDeadlineSeconds": -1172377136758373368,
"dnsPolicy": "Ndǂ\u003e5姣\u003e懔%熷谟þ蛯ɰ",
"nodeSelector": {
"281": "282"
"283": "284"
},
"serviceAccountName": "283",
"serviceAccount": "284",
"serviceAccountName": "285",
"serviceAccount": "286",
"automountServiceAccountToken": true,
"nodeName": "285",
"nodeName": "287",
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "286",
"role": "287",
"type": "288",
"level": "289"
"user": "288",
"role": "289",
"type": "290",
"level": "291"
},
"windowsOptions": {
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291"
"gmsaCredentialSpecName": "292",
"gmsaCredentialSpec": "293",
"runAsUserName": "294"
},
"runAsUser": 5824892309487369487,
"runAsGroup": 6134106493278592168,
@ -844,18 +847,18 @@
"fsGroup": -3979882341327374195,
"sysctls": [
{
"name": "292",
"value": "293"
"name": "295",
"value": "296"
}
]
},
"imagePullSecrets": [
{
"name": "294"
"name": "297"
}
],
"hostname": "295",
"subdomain": "296",
"hostname": "298",
"subdomain": "299",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -863,19 +866,19 @@
{
"matchExpressions": [
{
"key": "297",
"key": "300",
"operator": "t莭琽§ć\\ ïì",
"values": [
"298"
"301"
]
}
],
"matchFields": [
{
"key": "299",
"key": "302",
"operator": "ȿ0矀Kʝ",
"values": [
"300"
"303"
]
}
]
@ -888,19 +891,19 @@
"preference": {
"matchExpressions": [
{
"key": "301",
"key": "304",
"operator": "",
"values": [
"302"
"305"
]
}
],
"matchFields": [
{
"key": "303",
"key": "306",
"operator": "粕擓ƖHVe熼'FD",
"values": [
"304"
"307"
]
}
]
@ -926,9 +929,9 @@
]
},
"namespaces": [
"311"
"314"
],
"topologyKey": "312"
"topologyKey": "315"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -950,9 +953,9 @@
]
},
"namespaces": [
"319"
"322"
],
"topologyKey": "320"
"topologyKey": "323"
}
}
]
@ -972,9 +975,9 @@
]
},
"namespaces": [
"327"
"330"
],
"topologyKey": "328"
"topologyKey": "331"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -996,45 +999,45 @@
]
},
"namespaces": [
"335"
"338"
],
"topologyKey": "336"
"topologyKey": "339"
}
}
]
}
},
"schedulerName": "337",
"schedulerName": "340",
"tolerations": [
{
"key": "338",
"key": "341",
"operator": "Uȍ",
"value": "339",
"value": "342",
"effect": "^\u003cu綡Ţ搯唧",
"tolerationSeconds": 5874355269862618775
}
],
"hostAliases": [
{
"ip": "340",
"ip": "343",
"hostnames": [
"341"
"344"
]
}
],
"priorityClassName": "342",
"priorityClassName": "345",
"priority": -1662855542,
"dnsConfig": {
"nameservers": [
"343"
"346"
],
"searches": [
"344"
"347"
],
"options": [
{
"name": "345",
"value": "346"
"name": "348",
"value": "349"
}
]
},
@ -1043,7 +1046,7 @@
"conditionType": "l=ƈư呄"
}
],
"runtimeClassName": "347",
"runtimeClassName": "350",
"enableServiceLinks": true,
"preemptionPolicy": "ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ",
"overhead": {
@ -1075,8 +1078,8 @@
"type": "ŜĂ",
"status": "!ń1ċƹ|慼櫁色苆试揯遐",
"lastTransitionTime": "2058-09-30T18:21:51Z",
"reason": "348",
"message": "349"
"reason": "351",
"message": "352"
}
]
}

View File

@ -80,28 +80,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "301"
- key: "304"
operator: ""
values:
- "302"
- "305"
matchFields:
- key: "303"
- key: "306"
operator: 粕擓ƖHVe熼'FD
values:
- "304"
- "307"
weight: 1281792166
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "297"
- key: "300"
operator: t莭琽§ć\ ïì
values:
- "298"
- "301"
matchFields:
- key: "299"
- key: "302"
operator: ȿ0矀Kʝ
values:
- "300"
- "303"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -114,8 +114,8 @@ spec:
matchLabels:
aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x.2K_q: N0S-CqW.D_8--21kF-c026.-iTl.1-.VT--5mj_9.M.3
namespaces:
- "319"
topologyKey: "320"
- "322"
topologyKey: "323"
weight: -1129218498
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -127,8 +127,8 @@ spec:
matchLabels:
q1d---x/31..jtFe8b_A_..P1s-V.9.4..9..cu: i.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_m
namespaces:
- "311"
topologyKey: "312"
- "314"
topologyKey: "315"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -141,8 +141,8 @@ spec:
matchLabels:
1.O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.C.-e16O: 5Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-Wo
namespaces:
- "335"
topologyKey: "336"
- "338"
topologyKey: "339"
weight: 1262074531
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -152,118 +152,118 @@ spec:
matchLabels:
1j2--a.pp9-8--m-cbck561-72-l84--162-gk2-99v2xu-3po4--3os1-5-ufkr-x0/3G.b_9_1o.w_aI._31-_I-A-_3bz._8MU: P_3..H..k9M86.9a_-0R_.ZI
namespaces:
- "327"
topologyKey: "328"
- "330"
topologyKey: "331"
automountServiceAccountToken: true
containers:
- args:
- "221"
- "222"
command:
- "220"
- "221"
env:
- name: "228"
value: "229"
- name: "229"
value: "230"
valueFrom:
configMapKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: false
fieldRef:
apiVersion: "230"
fieldPath: "231"
apiVersion: "231"
fieldPath: "232"
resourceFieldRef:
containerName: "232"
containerName: "233"
divisor: "385"
resource: "233"
resource: "234"
secretKeyRef:
key: "237"
name: "236"
key: "238"
name: "237"
optional: true
envFrom:
- configMapRef:
name: "226"
optional: true
prefix: "225"
secretRef:
name: "227"
optional: true
prefix: "226"
secretRef:
name: "228"
optional: false
image: "219"
image: "220"
imagePullPolicy: ȃv渟7
lifecycle:
postStart:
exec:
command:
- "259"
- "260"
httpGet:
host: "262"
host: "263"
httpHeaders:
- name: "263"
value: "264"
path: "260"
port: "261"
- name: "264"
value: "265"
path: "261"
port: "262"
scheme: :贅wE@Ȗs«öʮĀ<é瞾
tcpSocket:
host: "266"
port: "265"
host: "267"
port: "266"
preStop:
exec:
command:
- "267"
- "268"
httpGet:
host: "269"
host: "270"
httpHeaders:
- name: "270"
value: "271"
path: "268"
- name: "271"
value: "272"
path: "269"
port: -1718681455
scheme: '*ʙ嫙&蒒5靇C''ɵK.'
tcpSocket:
host: "273"
port: "272"
host: "274"
port: "273"
livenessProbe:
exec:
command:
- "244"
- "245"
failureThreshold: -31530684
httpGet:
host: "247"
host: "248"
httpHeaders:
- name: "248"
value: "249"
path: "245"
port: "246"
- name: "249"
value: "250"
path: "246"
port: "247"
scheme: '}'
initialDelaySeconds: 1030243869
periodSeconds: -185042403
successThreshold: -374922344
tcpSocket:
host: "251"
port: "250"
host: "252"
port: "251"
timeoutSeconds: -1080853187
name: "218"
name: "219"
ports:
- containerPort: 692541847
hostIP: "224"
hostIP: "225"
hostPort: -1167973499
name: "223"
name: "224"
protocol: Gưoɘ檲ɨ銦妰黖ȓƇ
readinessProbe:
exec:
command:
- "252"
- "253"
failureThreshold: 1471432155
httpGet:
host: "255"
host: "256"
httpHeaders:
- name: "256"
value: "257"
path: "253"
port: "254"
- name: "257"
value: "258"
path: "254"
port: "255"
initialDelaySeconds: 559781916
periodSeconds: -1569009987
successThreshold: -1053603859
tcpSocket:
host: "258"
host: "259"
port: -289900366
timeoutSeconds: -1703360754
resources:
@ -285,44 +285,45 @@ spec:
runAsNonRoot: false
runAsUser: -6244232606031635964
seLinuxOptions:
level: "278"
role: "276"
type: "277"
user: "275"
level: "279"
role: "277"
type: "278"
user: "276"
windowsOptions:
gmsaCredentialSpec: "280"
gmsaCredentialSpecName: "279"
gmsaCredentialSpec: "281"
gmsaCredentialSpecName: "280"
runAsUserName: "282"
stdinOnce: true
terminationMessagePath: "274"
terminationMessagePath: "275"
terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹
volumeDevices:
- devicePath: "243"
name: "242"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "239"
- mountPath: "240"
mountPropagation: 2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN
name: "238"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "343"
- "346"
options:
- name: "345"
value: "346"
- name: "348"
value: "349"
searches:
- "344"
- "347"
dnsPolicy: Ndǂ>5姣>懔%熷谟þ蛯ɰ
enableServiceLinks: true
hostAliases:
- hostnames:
- "341"
ip: "340"
- "344"
ip: "343"
hostPID: true
hostname: "295"
hostname: "298"
imagePullSecrets:
- name: "294"
- name: "297"
initContainers:
- args:
- "159"
@ -461,6 +462,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "217"
gmsaCredentialSpecName: "216"
runAsUserName: "218"
stdin: true
terminationMessagePath: "211"
terminationMessagePolicy: 恰nj揠8lj黳鈫ʕ
@ -476,48 +478,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "285"
nodeName: "287"
nodeSelector:
"281": "282"
"283": "284"
overhead:
硑Ț匡婲#ɛ蛳j惧鷋簡SļŽɣB矗E: "667"
preemptionPolicy: ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ
priority: -1662855542
priorityClassName: "342"
priorityClassName: "345"
readinessGates:
- conditionType: l=ƈư呄
restartPolicy: ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
runtimeClassName: "347"
schedulerName: "337"
runtimeClassName: "350"
schedulerName: "340"
securityContext:
fsGroup: -3979882341327374195
runAsGroup: 6134106493278592168
runAsNonRoot: true
runAsUser: 5824892309487369487
seLinuxOptions:
level: "289"
role: "287"
type: "288"
user: "286"
level: "291"
role: "289"
type: "290"
user: "288"
supplementalGroups:
- -4964947941541214699
sysctls:
- name: "292"
value: "293"
- name: "295"
value: "296"
windowsOptions:
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
serviceAccount: "284"
serviceAccountName: "283"
gmsaCredentialSpec: "293"
gmsaCredentialSpecName: "292"
runAsUserName: "294"
serviceAccount: "286"
serviceAccountName: "285"
shareProcessNamespace: true
subdomain: "296"
subdomain: "299"
terminationGracePeriodSeconds: 1221494839594199191
tolerations:
- effect: ^<u綡Ţ搯唧
key: "338"
key: "341"
operator:
tolerationSeconds: 5874355269862618775
value: "339"
value: "342"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -725,8 +728,8 @@ status:
collisionCount: 256213209
conditions:
- lastTransitionTime: "2058-09-30T18:21:51Z"
message: "349"
reason: "348"
message: "352"
reason: "351"
status: '!ń1ċƹ|慼櫁色苆试揯遐'
type: ŜĂ
currentNumberScheduled: -699990187

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1081,8 +1084,8 @@
"status": "}óǑ獰Ĉ癯頯",
"lastUpdateTime": "2605-01-14T06:17:32Z",
"lastTransitionTime": "2709-11-25T14:54:03Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
],
"collisionCount": -2053075334

View File

@ -86,28 +86,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -120,8 +120,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -133,8 +133,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -147,8 +147,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -160,120 +160,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -294,45 +294,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -471,6 +472,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -484,48 +486,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -734,8 +737,8 @@ status:
conditions:
- lastTransitionTime: "2709-11-25T14:54:03Z"
lastUpdateTime: "2605-01-14T06:17:32Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: '}óǑ獰Ĉ癯頯'
type: ªɛȨç捌聮ŃŻ@ǮJ=礏ƴ磳藷曥摮
observedGeneration: -2515851994541435779

View File

@ -577,7 +577,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "215",
"gmsaCredentialSpec": "216"
"gmsaCredentialSpec": "216",
"runAsUserName": "217"
},
"runAsUser": -7286288718856494813,
"runAsGroup": -5951050835676650382,
@ -591,59 +592,59 @@
],
"containers": [
{
"name": "217",
"image": "218",
"name": "218",
"image": "219",
"command": [
"219"
],
"args": [
"220"
],
"workingDir": "221",
"args": [
"221"
],
"workingDir": "222",
"ports": [
{
"name": "222",
"name": "223",
"hostPort": -1470854631,
"containerPort": -1815391069,
"protocol": ʋŀ樺ȃv",
"hostIP": "223"
"hostIP": "224"
}
],
"envFrom": [
{
"prefix": "224",
"prefix": "225",
"configMapRef": {
"name": "225",
"name": "226",
"optional": true
},
"secretRef": {
"name": "226",
"name": "227",
"optional": true
}
}
],
"env": [
{
"name": "227",
"value": "228",
"name": "228",
"value": "229",
"valueFrom": {
"fieldRef": {
"apiVersion": "229",
"fieldPath": "230"
"apiVersion": "230",
"fieldPath": "231"
},
"resourceFieldRef": {
"containerName": "231",
"resource": "232",
"containerName": "232",
"resource": "233",
"divisor": "508"
},
"configMapKeyRef": {
"name": "233",
"key": "234",
"name": "234",
"key": "235",
"optional": false
},
"secretKeyRef": {
"name": "235",
"key": "236",
"name": "236",
"key": "237",
"optional": true
}
}
@ -659,41 +660,41 @@
},
"volumeMounts": [
{
"name": "237",
"name": "238",
"readOnly": true,
"mountPath": "238",
"subPath": "239",
"mountPath": "239",
"subPath": "240",
"mountPropagation": "",
"subPathExpr": "240"
"subPathExpr": "241"
}
],
"volumeDevices": [
{
"name": "241",
"devicePath": "242"
"name": "242",
"devicePath": "243"
}
],
"livenessProbe": {
"exec": {
"command": [
"243"
"244"
]
},
"httpGet": {
"path": "244",
"port": "245",
"host": "246",
"path": "245",
"port": "246",
"host": "247",
"scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽",
"httpHeaders": [
{
"name": "247",
"value": "248"
"name": "248",
"value": "249"
}
]
},
"tcpSocket": {
"port": 1096174794,
"host": "249"
"host": "250"
},
"initialDelaySeconds": 1591029717,
"timeoutSeconds": 1255169591,
@ -704,24 +705,24 @@
"readinessProbe": {
"exec": {
"command": [
"250"
"251"
]
},
"httpGet": {
"path": "251",
"port": "252",
"host": "253",
"path": "252",
"port": "253",
"host": "254",
"scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ",
"httpHeaders": [
{
"name": "254",
"value": "255"
"name": "255",
"value": "256"
}
]
},
"tcpSocket": {
"port": "256",
"host": "257"
"port": "257",
"host": "258"
},
"initialDelaySeconds": -394397948,
"timeoutSeconds": 2040455355,
@ -733,51 +734,51 @@
"postStart": {
"exec": {
"command": [
"258"
"259"
]
},
"httpGet": {
"path": "259",
"port": "260",
"host": "261",
"path": "260",
"port": "261",
"host": "262",
"scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7",
"httpHeaders": [
{
"name": "262",
"value": "263"
"name": "263",
"value": "264"
}
]
},
"tcpSocket": {
"port": "264",
"host": "265"
"port": "265",
"host": "266"
}
},
"preStop": {
"exec": {
"command": [
"266"
"267"
]
},
"httpGet": {
"path": "267",
"path": "268",
"port": -1675041613,
"host": "268",
"host": "269",
"scheme": "揆ɘȌ脾嚏吐",
"httpHeaders": [
{
"name": "269",
"value": "270"
"name": "270",
"value": "271"
}
]
},
"tcpSocket": {
"port": -194343002,
"host": "271"
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": "Ȥ藠3.",
"imagePullPolicy": "t莭琽§ć\\ ïì",
"securityContext": {
@ -791,14 +792,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -2142888785755371163,
"runAsGroup": -2879304435996142911,
@ -815,25 +817,26 @@
"activeDeadlineSeconds": -5860790522738935260,
"dnsPolicy": "w(ğ儴Ůĺ}潷ʒ胵",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -7059779929916534575,
"runAsGroup": -4105014793515441558,
@ -844,18 +847,18 @@
"fsGroup": 7861919711004065015,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -863,19 +866,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "t叀碧闳ȩr嚧ʣq埄",
"values": [
"298"
"301"
]
}
]
@ -888,19 +891,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "岼昕ĬÇó藢xɮĵȑ6L*Z",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "绤fʀļ腩墺Ò媁荭g",
"values": [
"302"
"305"
]
}
]
@ -923,9 +926,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -944,9 +947,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -966,9 +969,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -990,45 +993,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "}缫,",
"value": "337",
"value": "340",
"effect": "ɉ愂",
"tolerationSeconds": 5005983565679986804
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": 178156526,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1037,7 +1040,7 @@
"conditionType": "糮R(_âŔ獎$ƆJije檗"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "ʜ_ȭwɵ糫武诰ð",
"overhead": {
@ -1057,8 +1060,8 @@
"type": "\u003cvĝ線Ưȫ喆5O2.:鑋Ļ",
"status": "H筆U锟蕞纥奆0ǔ廘ɵ岳v\u0026ȝxɕū",
"lastTransitionTime": "2732-10-05T01:06:26Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
]
}

View File

@ -81,28 +81,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: 岼昕ĬÇó藢xɮĵȑ6L*Z
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: 绤fʀļ腩墺Ò媁荭g
values:
- "302"
- "305"
weight: -379385405
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: t叀碧闳ȩr嚧ʣq埄
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -113,8 +113,8 @@ spec:
matchLabels:
N-_-vv-Q2q7: 3.4....-h._.GgT7_7P
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: 1258370227
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -124,8 +124,8 @@ spec:
matchLabels:
6-d42--clo90---461v-07r--0---8-30i-uo/9DF: AH-Q.GM72_-c-.-.6--3-__t
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -138,8 +138,8 @@ spec:
matchLabels:
gr-y7nlp97v-0-1y-t3---2ga-v205p-26-l.p2-t--m-l80--5o1--cp6-5-x1---0w4rm0/f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--wO: ""
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: 1289969734
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -149,120 +149,120 @@ spec:
matchLabels:
927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-53-x1y-8---3----7/mf.-f.-zv._._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_x32: 0U1_-__.71-_-9_._X-D---k..1Q7N
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "220"
- "221"
command:
- "219"
- "220"
env:
- name: "227"
value: "228"
- name: "228"
value: "229"
valueFrom:
configMapKeyRef:
key: "234"
name: "233"
key: "235"
name: "234"
optional: false
fieldRef:
apiVersion: "229"
fieldPath: "230"
apiVersion: "230"
fieldPath: "231"
resourceFieldRef:
containerName: "231"
containerName: "232"
divisor: "508"
resource: "232"
resource: "233"
secretKeyRef:
key: "236"
name: "235"
key: "237"
name: "236"
optional: true
envFrom:
- configMapRef:
name: "225"
optional: true
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
prefix: "225"
secretRef:
name: "227"
optional: true
image: "219"
imagePullPolicy: t莭琽§ć\ ïì
lifecycle:
postStart:
exec:
command:
- "258"
- "259"
httpGet:
host: "261"
host: "262"
httpHeaders:
- name: "262"
value: "263"
path: "259"
port: "260"
- name: "263"
value: "264"
path: "260"
port: "261"
scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7
tcpSocket:
host: "265"
port: "264"
host: "266"
port: "265"
preStop:
exec:
command:
- "266"
- "267"
httpGet:
host: "268"
host: "269"
httpHeaders:
- name: "269"
value: "270"
path: "267"
- name: "270"
value: "271"
path: "268"
port: -1675041613
scheme: 揆ɘȌ脾嚏吐
tcpSocket:
host: "271"
host: "272"
port: -194343002
livenessProbe:
exec:
command:
- "243"
- "244"
failureThreshold: 817152661
httpGet:
host: "246"
host: "247"
httpHeaders:
- name: "247"
value: "248"
path: "244"
port: "245"
- name: "248"
value: "249"
path: "245"
port: "246"
scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽
initialDelaySeconds: 1591029717
periodSeconds: 622473257
successThreshold: -966649167
tcpSocket:
host: "249"
host: "250"
port: 1096174794
timeoutSeconds: 1255169591
name: "217"
name: "218"
ports:
- containerPort: -1815391069
hostIP: "223"
hostIP: "224"
hostPort: -1470854631
name: "222"
name: "223"
protocol: Ƹʋŀ樺ȃv
readinessProbe:
exec:
command:
- "250"
- "251"
failureThreshold: 1214895765
httpGet:
host: "253"
host: "254"
httpHeaders:
- name: "254"
value: "255"
path: "251"
port: "252"
- name: "255"
value: "256"
path: "252"
port: "253"
scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ
initialDelaySeconds: -394397948
periodSeconds: 1505972335
successThreshold: -26910286
tcpSocket:
host: "257"
port: "256"
host: "258"
port: "257"
timeoutSeconds: 2040455355
resources:
limits:
@ -283,46 +283,47 @@ spec:
runAsNonRoot: false
runAsUser: -2142888785755371163
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdin: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: Ȥ藠3.
volumeDevices:
- devicePath: "242"
name: "241"
- devicePath: "243"
name: "242"
volumeMounts:
- mountPath: "238"
- mountPath: "239"
mountPropagation: ""
name: "237"
name: "238"
readOnly: true
subPath: "239"
subPathExpr: "240"
workingDir: "221"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: w(ğ儴Ůĺ}潷ʒ胵
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostPID: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -461,6 +462,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "216"
gmsaCredentialSpecName: "215"
runAsUserName: "217"
stdinOnce: true
terminationMessagePath: "210"
terminationMessagePolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ
@ -474,48 +476,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
娒Ġ滔xvŗÑ"虆k遚釾ʼn{: "803"
preemptionPolicy: ʜ_ȭwɵ糫武诰ð
priority: 178156526
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: 糮R(_âŔ獎$ƆJije檗
restartPolicy: ȶ网棊ʢ=wǕɳɷ9Ì
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: 7861919711004065015
runAsGroup: -4105014793515441558
runAsNonRoot: true
runAsUser: -7059779929916534575
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 830921445879518469
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -860974700141841896
tolerations:
- effect: ɉ愂
key: "336"
key: "339"
operator: '}缫,'
tolerationSeconds: 5005983565679986804
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -716,8 +719,8 @@ status:
availableReplicas: -746105654
conditions:
- lastTransitionTime: "2732-10-05T01:06:26Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: H筆U锟蕞纥奆0ǔ廘ɵ岳v&ȝxɕū
type: <vĝ線Ưȫ喆5O2.:鑋Ļ
fullyLabeledReplicas: 801466911

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1061,40 +1064,40 @@
"volumeClaimTemplates": [
{
"metadata": {
"name": "346",
"generateName": "347",
"namespace": "348",
"selfLink": "349",
"name": "349",
"generateName": "350",
"namespace": "351",
"selfLink": "352",
"resourceVersion": "5540407251138887855",
"generation": -3511493794676511173,
"creationTimestamp": null,
"deletionGracePeriodSeconds": 5247456886637678767,
"labels": {
"351": "352"
"354": "355"
},
"annotations": {
"353": "354"
"356": "357"
},
"ownerReferences": [
{
"apiVersion": "355",
"kind": "356",
"name": "357",
"apiVersion": "358",
"kind": "359",
"name": "360",
"uid": "Bb偃礳Ȭ痍脉PP",
"controller": false,
"blockOwnerDeletion": true
}
],
"finalizers": [
"358"
"361"
],
"clusterName": "359",
"clusterName": "362",
"managedFields": [
{
"manager": "360",
"manager": "363",
"operation": "餘ŁƁ翂|C",
"apiVersion": "361",
"fields": {"362":{"363":null}}
"apiVersion": "364",
"fields": {"365":{"366":null}}
}
]
},
@ -1121,13 +1124,13 @@
"Z綶ĀRġ磸": "628"
}
},
"volumeName": "372",
"storageClassName": "373",
"volumeName": "375",
"storageClassName": "376",
"volumeMode": "ȗ\u003c8^翜T蘈",
"dataSource": {
"apiGroup": "374",
"kind": "375",
"name": "376"
"apiGroup": "377",
"kind": "378",
"name": "379"
}
},
"status": {
@ -1144,14 +1147,14 @@
"status": "4'N擻",
"lastProbeTime": "2725-12-02T15:24:11Z",
"lastTransitionTime": "2546-07-16T14:04:49Z",
"reason": "377",
"message": "378"
"reason": "380",
"message": "381"
}
]
}
}
],
"serviceName": "379",
"serviceName": "382",
"updateStrategy": {
"rollingUpdate": {
"partition": 1952497813
@ -1165,16 +1168,16 @@
"readyReplicas": -1147281085,
"currentReplicas": -2037929910,
"updatedReplicas": 1589830480,
"currentRevision": "380",
"updateRevision": "381",
"currentRevision": "383",
"updateRevision": "384",
"collisionCount": 1897665453,
"conditions": [
{
"type": "\u003c僚徘ó蒿",
"status": "誀ŭ\"ɦ?",
"lastTransitionTime": "2741-08-01T23:33:42Z",
"reason": "382",
"message": "383"
"reason": "385",
"message": "386"
}
]
}

View File

@ -42,7 +42,7 @@ spec:
- y_y_o0_5qN2_---_M.N_._a6.9bHjdH.-.5_.I8__.-AIw.__-___16
matchLabels:
w9v--m0-1y5-g3/JFHn7y-74.-0MUORQQ.N2.1.L.l-Y._.-44..d.__g: F-_3-n-_-__3u-.__P__.7U-Uo_F
serviceName: "379"
serviceName: "382"
template:
metadata:
annotations:
@ -82,28 +82,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -116,8 +116,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -129,8 +129,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -143,8 +143,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -156,120 +156,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -290,45 +290,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -467,6 +468,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -480,48 +482,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -730,41 +733,41 @@ spec:
volumeClaimTemplates:
- metadata:
annotations:
"353": "354"
clusterName: "359"
"356": "357"
clusterName: "362"
creationTimestamp: null
deletionGracePeriodSeconds: 5247456886637678767
finalizers:
- "358"
generateName: "347"
- "361"
generateName: "350"
generation: -3511493794676511173
labels:
"351": "352"
"354": "355"
managedFields:
- apiVersion: "361"
- apiVersion: "364"
fields:
"362":
"363": null
manager: "360"
"365":
"366": null
manager: "363"
operation: 餘ŁƁ翂|C
name: "346"
namespace: "348"
name: "349"
namespace: "351"
ownerReferences:
- apiVersion: "355"
- apiVersion: "358"
blockOwnerDeletion: true
controller: false
kind: "356"
name: "357"
kind: "359"
name: "360"
uid: Bb偃礳Ȭ痍脉PP
resourceVersion: "5540407251138887855"
selfLink: "349"
selfLink: "352"
spec:
accessModes:
- 藷曥摮Z Ǐg鲅峣/vɟ擅Ɇǥ
dataSource:
apiGroup: "374"
kind: "375"
name: "376"
apiGroup: "377"
kind: "378"
name: "379"
resources:
limits:
"": "204"
@ -776,9 +779,9 @@ spec:
operator: Exists
matchLabels:
L_1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__40: a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
storageClassName: "373"
storageClassName: "376"
volumeMode: ȗ<8^翜T蘈
volumeName: "372"
volumeName: "375"
status:
accessModes:
- ""
@ -787,8 +790,8 @@ spec:
conditions:
- lastProbeTime: "2725-12-02T15:24:11Z"
lastTransitionTime: "2546-07-16T14:04:49Z"
message: "378"
reason: "377"
message: "381"
reason: "380"
status: 4'N擻
type: mAȥ睙蜵E坉Ɖ虼/h毂y覙 
phase: 筞X銲tHǽ÷閂抰
@ -796,14 +799,14 @@ status:
collisionCount: 1897665453
conditions:
- lastTransitionTime: "2741-08-01T23:33:42Z"
message: "383"
reason: "382"
message: "386"
reason: "385"
status: 誀ŭ"ɦ?
type: <僚徘ó蒿
currentReplicas: -2037929910
currentRevision: "380"
currentRevision: "383"
observedGeneration: 8218676932085767799
readyReplicas: -1147281085
replicas: 1423120294
updateRevision: "381"
updateRevision: "384"
updatedReplicas: 1589830480

View File

@ -586,7 +586,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "216",
"gmsaCredentialSpec": "217"
"gmsaCredentialSpec": "217",
"runAsUserName": "218"
},
"runAsUser": -1799108093609470992,
"runAsGroup": -1245112587824234591,
@ -601,59 +602,59 @@
],
"containers": [
{
"name": "218",
"image": "219",
"name": "219",
"image": "220",
"command": [
"220"
],
"args": [
"221"
],
"workingDir": "222",
"args": [
"222"
],
"workingDir": "223",
"ports": [
{
"name": "223",
"name": "224",
"hostPort": 1702578303,
"containerPort": -1565157256,
"protocol": "Ŭ",
"hostIP": "224"
"hostIP": "225"
}
],
"envFrom": [
{
"prefix": "225",
"prefix": "226",
"configMapRef": {
"name": "226",
"name": "227",
"optional": true
},
"secretRef": {
"name": "227",
"name": "228",
"optional": false
}
}
],
"env": [
{
"name": "228",
"value": "229",
"name": "229",
"value": "230",
"valueFrom": {
"fieldRef": {
"apiVersion": "230",
"fieldPath": "231"
"apiVersion": "231",
"fieldPath": "232"
},
"resourceFieldRef": {
"containerName": "232",
"resource": "233",
"containerName": "233",
"resource": "234",
"divisor": "157"
},
"configMapKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
},
"secretKeyRef": {
"name": "236",
"key": "237",
"name": "237",
"key": "238",
"optional": false
}
}
@ -669,40 +670,40 @@
},
"volumeMounts": [
{
"name": "238",
"mountPath": "239",
"subPath": "240",
"name": "239",
"mountPath": "240",
"subPath": "241",
"mountPropagation": "樺ȃ",
"subPathExpr": "241"
"subPathExpr": "242"
}
],
"volumeDevices": [
{
"name": "242",
"devicePath": "243"
"name": "243",
"devicePath": "244"
}
],
"livenessProbe": {
"exec": {
"command": [
"244"
"245"
]
},
"httpGet": {
"path": "245",
"path": "246",
"port": -88173241,
"host": "246",
"host": "247",
"scheme": "Źʣy豎@ɀ羭,铻O",
"httpHeaders": [
{
"name": "247",
"value": "248"
"name": "248",
"value": "249"
}
]
},
"tcpSocket": {
"port": "249",
"host": "250"
"port": "250",
"host": "251"
},
"initialDelaySeconds": 1424053148,
"timeoutSeconds": 747521320,
@ -713,24 +714,24 @@
"readinessProbe": {
"exec": {
"command": [
"251"
"252"
]
},
"httpGet": {
"path": "252",
"path": "253",
"port": -1710454086,
"host": "253",
"host": "254",
"scheme": "mɩC[ó瓧",
"httpHeaders": [
{
"name": "254",
"value": "255"
"name": "255",
"value": "256"
}
]
},
"tcpSocket": {
"port": -122979840,
"host": "256"
"host": "257"
},
"initialDelaySeconds": 915577348,
"timeoutSeconds": -590798124,
@ -742,51 +743,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"path": "259",
"port": 1385030458,
"host": "259",
"host": "260",
"scheme": "Ao/樝fw[Řż丩ŽoǠŻ",
"httpHeaders": [
{
"name": "260",
"value": "261"
"name": "261",
"value": "262"
}
]
},
"tcpSocket": {
"port": "262",
"host": "263"
"port": "263",
"host": "264"
}
},
"preStop": {
"exec": {
"command": [
"264"
"265"
]
},
"httpGet": {
"path": "265",
"path": "266",
"port": -1589303862,
"host": "266",
"host": "267",
"scheme": "ľǎɳ,ǿ飏騀呣ǎ",
"httpHeaders": [
{
"name": "267",
"value": "268"
"name": "268",
"value": "269"
}
]
},
"tcpSocket": {
"port": "269",
"host": "270"
"port": "270",
"host": "271"
}
}
},
"terminationMessagePath": "271",
"terminationMessagePath": "272",
"terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣",
"securityContext": {
"capabilities": {
@ -799,14 +800,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "272",
"role": "273",
"type": "274",
"level": "275"
"user": "273",
"role": "274",
"type": "275",
"level": "276"
},
"windowsOptions": {
"gmsaCredentialSpecName": "276",
"gmsaCredentialSpec": "277"
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278",
"runAsUserName": "279"
},
"runAsUser": -5738810661106213940,
"runAsGroup": 3195567116206635190,
@ -823,24 +825,25 @@
"activeDeadlineSeconds": -4714205176074910759,
"dnsPolicy": "倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶",
"nodeSelector": {
"278": "279"
"280": "281"
},
"serviceAccountName": "280",
"serviceAccount": "281",
"serviceAccountName": "282",
"serviceAccount": "283",
"automountServiceAccountToken": true,
"nodeName": "282",
"nodeName": "284",
"hostPID": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "283",
"role": "284",
"type": "285",
"level": "286"
"user": "285",
"role": "286",
"type": "287",
"level": "288"
},
"windowsOptions": {
"gmsaCredentialSpecName": "287",
"gmsaCredentialSpec": "288"
"gmsaCredentialSpecName": "289",
"gmsaCredentialSpec": "290",
"runAsUserName": "291"
},
"runAsUser": 4614883548233532846,
"runAsGroup": 3850139838566476547,
@ -851,18 +854,18 @@
"fsGroup": 4439992350792424628,
"sysctls": [
{
"name": "289",
"value": "290"
"name": "292",
"value": "293"
}
]
},
"imagePullSecrets": [
{
"name": "291"
"name": "294"
}
],
"hostname": "292",
"subdomain": "293",
"hostname": "295",
"subdomain": "296",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -870,19 +873,19 @@
{
"matchExpressions": [
{
"key": "294",
"key": "297",
"operator": "ȶ网棊ʢ=wǕɳɷ9Ì",
"values": [
"295"
"298"
]
}
],
"matchFields": [
{
"key": "296",
"key": "299",
"operator": "WKw(",
"values": [
"297"
"300"
]
}
]
@ -895,19 +898,19 @@
"preference": {
"matchExpressions": [
{
"key": "298",
"key": "301",
"operator": "ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪",
"values": [
"299"
"302"
]
}
],
"matchFields": [
{
"key": "300",
"key": "303",
"operator": "o啛更偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ",
"values": [
"301"
"304"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"308"
"311"
],
"topologyKey": "309"
"topologyKey": "312"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"316"
"319"
],
"topologyKey": "317"
"topologyKey": "320"
}
}
]
@ -976,9 +979,9 @@
]
},
"namespaces": [
"324"
"327"
],
"topologyKey": "325"
"topologyKey": "328"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1000,45 +1003,45 @@
]
},
"namespaces": [
"332"
"335"
],
"topologyKey": "333"
"topologyKey": "336"
}
}
]
}
},
"schedulerName": "334",
"schedulerName": "337",
"tolerations": [
{
"key": "335",
"key": "338",
"operator": "ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­",
"value": "336",
"value": "339",
"effect": "8 u怞荊ù灹8緔Tj§E蓋Cȗä2 ",
"tolerationSeconds": -3940998112084713632
}
],
"hostAliases": [
{
"ip": "337",
"ip": "340",
"hostnames": [
"338"
"341"
]
}
],
"priorityClassName": "339",
"priorityClassName": "342",
"priority": -98449771,
"dnsConfig": {
"nameservers": [
"340"
"343"
],
"searches": [
"341"
"344"
],
"options": [
{
"name": "342",
"value": "343"
"name": "345",
"value": "346"
}
]
},
@ -1047,7 +1050,7 @@
"conditionType": "Ö埡ÆɰŞ襵樞úʥ銀ƨ"
}
],
"runtimeClassName": "344",
"runtimeClassName": "347",
"enableServiceLinks": true,
"preemptionPolicy": "x柱栦阫Ƈʥ椹ý飝ȕ笧L唞鹚蝉茲ʛ饊",
"overhead": {
@ -1064,8 +1067,8 @@
"status": "蘋`翾'ųŎ群E牬庘颮6(|ǖ",
"lastProbeTime": "2728-03-18T02:53:59Z",
"lastTransitionTime": "2011-03-23T02:35:32Z",
"reason": "345",
"message": "346"
"reason": "348",
"message": "349"
}
],
"active": -578968134,

View File

@ -83,28 +83,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "298"
- key: "301"
operator: ĺ}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪
values:
- "299"
- "302"
matchFields:
- key: "300"
- key: "303"
operator: o啛更偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ
values:
- "301"
- "304"
weight: 852780575
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "294"
- key: "297"
operator: ȶ网棊ʢ=wǕɳɷ9Ì
values:
- "295"
- "298"
matchFields:
- key: "296"
- key: "299"
operator: WKw(
values:
- "297"
- "300"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -117,8 +117,8 @@ spec:
matchLabels:
4uB-.--.gb_2_-8-----yJY.__-X_.8xN._-_-vv-Q2qzW: 04....-h._.GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4--.-_4
namespaces:
- "316"
topologyKey: "317"
- "319"
topologyKey: "320"
weight: 218453478
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -128,8 +128,8 @@ spec:
matchLabels:
O-7___-Y_um-_8r--684._-_18_...E.-o: y.N.9D-F5
namespaces:
- "308"
topologyKey: "309"
- "311"
topologyKey: "312"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -142,8 +142,8 @@ spec:
matchLabels:
3--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-D: 7r-7
namespaces:
- "332"
topologyKey: "333"
- "335"
topologyKey: "336"
weight: -1309338556
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -153,118 +153,118 @@ spec:
matchLabels:
S9_Z_C..o: x3..-.8-Jp-9-4-Tm.__G-8...__.Q_c8.G.b_9_o
namespaces:
- "324"
topologyKey: "325"
- "327"
topologyKey: "328"
automountServiceAccountToken: true
containers:
- args:
- "221"
- "222"
command:
- "220"
- "221"
env:
- name: "228"
value: "229"
- name: "229"
value: "230"
valueFrom:
configMapKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
fieldRef:
apiVersion: "230"
fieldPath: "231"
apiVersion: "231"
fieldPath: "232"
resourceFieldRef:
containerName: "232"
containerName: "233"
divisor: "157"
resource: "233"
resource: "234"
secretKeyRef:
key: "237"
name: "236"
key: "238"
name: "237"
optional: false
envFrom:
- configMapRef:
name: "226"
optional: true
prefix: "225"
secretRef:
name: "227"
optional: true
prefix: "226"
secretRef:
name: "228"
optional: false
image: "219"
image: "220"
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "259"
host: "260"
httpHeaders:
- name: "260"
value: "261"
path: "258"
- name: "261"
value: "262"
path: "259"
port: 1385030458
scheme: Ao/樝fw[Řż丩ŽoǠŻ
tcpSocket:
host: "263"
port: "262"
host: "264"
port: "263"
preStop:
exec:
command:
- "264"
- "265"
httpGet:
host: "266"
host: "267"
httpHeaders:
- name: "267"
value: "268"
path: "265"
- name: "268"
value: "269"
path: "266"
port: -1589303862
scheme: ľǎɳ,ǿ飏騀呣ǎ
tcpSocket:
host: "270"
port: "269"
host: "271"
port: "270"
livenessProbe:
exec:
command:
- "244"
- "245"
failureThreshold: -1131820775
httpGet:
host: "246"
host: "247"
httpHeaders:
- name: "247"
value: "248"
path: "245"
- name: "248"
value: "249"
path: "246"
port: -88173241
scheme: Źʣy豎@ɀ羭,铻O
initialDelaySeconds: 1424053148
periodSeconds: 859639931
successThreshold: -1663149700
tcpSocket:
host: "250"
port: "249"
host: "251"
port: "250"
timeoutSeconds: 747521320
name: "218"
name: "219"
ports:
- containerPort: -1565157256
hostIP: "224"
hostIP: "225"
hostPort: 1702578303
name: "223"
name: "224"
protocol: Ŭ
readinessProbe:
exec:
command:
- "251"
- "252"
failureThreshold: -233378149
httpGet:
host: "253"
host: "254"
httpHeaders:
- name: "254"
value: "255"
path: "252"
- name: "255"
value: "256"
path: "253"
port: -1710454086
scheme: mɩC[ó瓧
initialDelaySeconds: 915577348
periodSeconds: -1386967282
successThreshold: -2030286732
tcpSocket:
host: "256"
host: "257"
port: -122979840
timeoutSeconds: -590798124
resources:
@ -286,45 +286,46 @@ spec:
runAsNonRoot: true
runAsUser: -5738810661106213940
seLinuxOptions:
level: "275"
role: "273"
type: "274"
user: "272"
level: "276"
role: "274"
type: "275"
user: "273"
windowsOptions:
gmsaCredentialSpec: "277"
gmsaCredentialSpecName: "276"
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
runAsUserName: "279"
stdin: true
terminationMessagePath: "271"
terminationMessagePath: "272"
terminationMessagePolicy: 萭旿@掇lNdǂ>5姣
tty: true
volumeDevices:
- devicePath: "243"
name: "242"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "239"
- mountPath: "240"
mountPropagation: 樺ȃ
name: "238"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "340"
- "343"
options:
- name: "342"
value: "343"
- name: "345"
value: "346"
searches:
- "341"
- "344"
dnsPolicy: 倗S晒嶗UÐ_ƮA攤/ɸɎ R§耶
enableServiceLinks: true
hostAliases:
- hostnames:
- "338"
ip: "337"
- "341"
ip: "340"
hostPID: true
hostname: "292"
hostname: "295"
imagePullSecrets:
- name: "291"
- name: "294"
initContainers:
- args:
- "159"
@ -463,6 +464,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "217"
gmsaCredentialSpecName: "216"
runAsUserName: "218"
stdin: true
stdinOnce: true
terminationMessagePath: "211"
@ -478,47 +480,48 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "282"
nodeName: "284"
nodeSelector:
"278": "279"
"280": "281"
overhead:
KIJWĶʗ{裦i÷ɷȤ砘Cș栣: "66"
preemptionPolicy: x柱栦阫Ƈʥ椹ý飝ȕ笧L唞鹚蝉茲ʛ饊
priority: -98449771
priorityClassName: "339"
priorityClassName: "342"
readinessGates:
- conditionType: Ö埡ÆɰŞ襵樞úʥ銀ƨ
runtimeClassName: "344"
schedulerName: "334"
runtimeClassName: "347"
schedulerName: "337"
securityContext:
fsGroup: 4439992350792424628
runAsGroup: 3850139838566476547
runAsNonRoot: false
runAsUser: 4614883548233532846
seLinuxOptions:
level: "286"
role: "284"
type: "285"
user: "283"
level: "288"
role: "286"
type: "287"
user: "285"
supplementalGroups:
- -2685189273294986757
sysctls:
- name: "289"
value: "290"
- name: "292"
value: "293"
windowsOptions:
gmsaCredentialSpec: "288"
gmsaCredentialSpecName: "287"
serviceAccount: "281"
serviceAccountName: "280"
gmsaCredentialSpec: "290"
gmsaCredentialSpecName: "289"
runAsUserName: "291"
serviceAccount: "283"
serviceAccountName: "282"
shareProcessNamespace: false
subdomain: "293"
subdomain: "296"
terminationGracePeriodSeconds: 6353399950510297907
tolerations:
- effect: '8 u怞荊ù灹8緔Tj§E蓋Cȗä2 '
key: "335"
key: "338"
operator: ʗp壥Ƥ揤郡ɑ鮽ǍJB膾扉A­
tolerationSeconds: -3940998112084713632
value: "336"
value: "339"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -727,8 +730,8 @@ status:
conditions:
- lastProbeTime: "2728-03-18T02:53:59Z"
lastTransitionTime: "2011-03-23T02:35:32Z"
message: "346"
reason: "345"
message: "349"
reason: "348"
status: 蘋`翾'ųŎ群E牬庘颮6(|ǖ
type: 獘薟8Mĕ霉}閜LIȜŚɇA%ɀ蓧
failed: -1261227775

View File

@ -625,7 +625,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "234",
"gmsaCredentialSpec": "235"
"gmsaCredentialSpec": "235",
"runAsUserName": "236"
},
"runAsUser": -739484406984751446,
"runAsGroup": 1898367611285047958,
@ -640,59 +641,59 @@
],
"containers": [
{
"name": "236",
"image": "237",
"name": "237",
"image": "238",
"command": [
"238"
],
"args": [
"239"
],
"workingDir": "240",
"args": [
"240"
],
"workingDir": "241",
"ports": [
{
"name": "241",
"name": "242",
"hostPort": 622473257,
"containerPort": -966649167,
"protocol": "eLJèux榜VƋZ",
"hostIP": "242"
"hostIP": "243"
}
],
"envFrom": [
{
"prefix": "243",
"prefix": "244",
"configMapRef": {
"name": "244",
"name": "245",
"optional": true
},
"secretRef": {
"name": "245",
"name": "246",
"optional": true
}
}
],
"env": [
{
"name": "246",
"value": "247",
"name": "247",
"value": "248",
"valueFrom": {
"fieldRef": {
"apiVersion": "248",
"fieldPath": "249"
"apiVersion": "249",
"fieldPath": "250"
},
"resourceFieldRef": {
"containerName": "250",
"resource": "251",
"containerName": "251",
"resource": "252",
"divisor": "700"
},
"configMapKeyRef": {
"name": "252",
"key": "253",
"name": "253",
"key": "254",
"optional": true
},
"secretKeyRef": {
"name": "254",
"key": "255",
"name": "255",
"key": "256",
"optional": false
}
}
@ -708,41 +709,41 @@
},
"volumeMounts": [
{
"name": "256",
"name": "257",
"readOnly": true,
"mountPath": "257",
"subPath": "258",
"mountPath": "258",
"subPath": "259",
"mountPropagation": "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0",
"subPathExpr": "259"
"subPathExpr": "260"
}
],
"volumeDevices": [
{
"name": "260",
"devicePath": "261"
"name": "261",
"devicePath": "262"
}
],
"livenessProbe": {
"exec": {
"command": [
"262"
"263"
]
},
"httpGet": {
"path": "263",
"port": "264",
"host": "265",
"path": "264",
"port": "265",
"host": "266",
"scheme": "|懥ƖN粕擓ƖHVe熼",
"httpHeaders": [
{
"name": "266",
"value": "267"
"name": "267",
"value": "268"
}
]
},
"tcpSocket": {
"port": -327987957,
"host": "268"
"host": "269"
},
"initialDelaySeconds": -801430937,
"timeoutSeconds": 1883209805,
@ -753,24 +754,24 @@
"readinessProbe": {
"exec": {
"command": [
"269"
"270"
]
},
"httpGet": {
"path": "270",
"path": "271",
"port": -1273659804,
"host": "271",
"host": "272",
"scheme": "/ɸɎ R§耶FfBls3!",
"httpHeaders": [
{
"name": "272",
"value": "273"
"name": "273",
"value": "274"
}
]
},
"tcpSocket": {
"port": -1654678802,
"host": "274"
"host": "275"
},
"initialDelaySeconds": -625194347,
"timeoutSeconds": -720450949,
@ -782,51 +783,51 @@
"postStart": {
"exec": {
"command": [
"275"
"276"
]
},
"httpGet": {
"path": "276",
"path": "277",
"port": -1213051101,
"host": "277",
"host": "278",
"scheme": "埽uʎȺ眖R",
"httpHeaders": [
{
"name": "278",
"value": "279"
"name": "279",
"value": "280"
}
]
},
"tcpSocket": {
"port": 1260448044,
"host": "280"
"host": "281"
}
},
"preStop": {
"exec": {
"command": [
"281"
"282"
]
},
"httpGet": {
"path": "282",
"path": "283",
"port": 1689978741,
"host": "283",
"host": "284",
"scheme": "緕ȚÍ勅跦",
"httpHeaders": [
{
"name": "284",
"value": "285"
"name": "285",
"value": "286"
}
]
},
"tcpSocket": {
"port": 571739592,
"host": "286"
"host": "287"
}
}
},
"terminationMessagePath": "287",
"terminationMessagePath": "288",
"terminationMessagePolicy": "ǩ",
"imagePullPolicy": "輓Ɔȓ蹣ɐǛv+8",
"securityContext": {
@ -840,14 +841,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "288",
"role": "289",
"type": "290",
"level": "291"
"user": "289",
"role": "290",
"type": "291",
"level": "292"
},
"windowsOptions": {
"gmsaCredentialSpecName": "292",
"gmsaCredentialSpec": "293"
"gmsaCredentialSpecName": "293",
"gmsaCredentialSpec": "294",
"runAsUserName": "295"
},
"runAsUser": -5821728037462880994,
"runAsGroup": 4468469649483616089,
@ -863,24 +865,25 @@
"activeDeadlineSeconds": 6764431850409848860,
"dnsPolicy": "fʀļ腩墺Ò媁荭gw忊",
"nodeSelector": {
"294": "295"
"296": "297"
},
"serviceAccountName": "296",
"serviceAccount": "297",
"serviceAccountName": "298",
"serviceAccount": "299",
"automountServiceAccountToken": true,
"nodeName": "298",
"nodeName": "300",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "299",
"role": "300",
"type": "301",
"level": "302"
"user": "301",
"role": "302",
"type": "303",
"level": "304"
},
"windowsOptions": {
"gmsaCredentialSpecName": "303",
"gmsaCredentialSpec": "304"
"gmsaCredentialSpecName": "305",
"gmsaCredentialSpec": "306",
"runAsUserName": "307"
},
"runAsUser": -5640668310341845616,
"runAsGroup": 3582457287488712192,
@ -891,18 +894,18 @@
"fsGroup": -5353126188990290855,
"sysctls": [
{
"name": "305",
"value": "306"
"name": "308",
"value": "309"
}
]
},
"imagePullSecrets": [
{
"name": "307"
"name": "310"
}
],
"hostname": "308",
"subdomain": "309",
"hostname": "311",
"subdomain": "312",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -910,19 +913,19 @@
{
"matchExpressions": [
{
"key": "310",
"key": "313",
"operator": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
"values": [
"311"
"314"
]
}
],
"matchFields": [
{
"key": "312",
"key": "315",
"operator": "J僳徥淳4揻-$ɽ丟×x锏",
"values": [
"313"
"316"
]
}
]
@ -935,19 +938,19 @@
"preference": {
"matchExpressions": [
{
"key": "314",
"key": "317",
"operator": "輂,ŕĪĠM蘇KŅ/»頸",
"values": [
"315"
"318"
]
}
],
"matchFields": [
{
"key": "316",
"key": "319",
"operator": "NƗ¸gĩ",
"values": [
"317"
"320"
]
}
]
@ -970,9 +973,9 @@
]
},
"namespaces": [
"324"
"327"
],
"topologyKey": "325"
"topologyKey": "328"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -994,9 +997,9 @@
]
},
"namespaces": [
"332"
"335"
],
"topologyKey": "333"
"topologyKey": "336"
}
}
]
@ -1019,9 +1022,9 @@
]
},
"namespaces": [
"340"
"343"
],
"topologyKey": "341"
"topologyKey": "344"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1043,45 +1046,45 @@
]
},
"namespaces": [
"348"
"351"
],
"topologyKey": "349"
"topologyKey": "352"
}
}
]
}
},
"schedulerName": "350",
"schedulerName": "353",
"tolerations": [
{
"key": "351",
"key": "354",
"operator": "ȫ喆5O2.:鑋ĻL©鈀6",
"value": "352",
"value": "355",
"effect": "蕞纥奆0ǔ廘ɵ岳v\u0026ȝxɕūNj'6",
"tolerationSeconds": -2850654160732182959
}
],
"hostAliases": [
{
"ip": "353",
"ip": "356",
"hostnames": [
"354"
"357"
]
}
],
"priorityClassName": "355",
"priorityClassName": "358",
"priority": -16328498,
"dnsConfig": {
"nameservers": [
"356"
"359"
],
"searches": [
"357"
"360"
],
"options": [
{
"name": "358",
"value": "359"
"name": "361",
"value": "362"
}
]
},
@ -1090,7 +1093,7 @@
"conditionType": "ɩŢɽǣ(^\u003cu綡Ţ搯唧aĦ3Ǩk"
}
],
"runtimeClassName": "360",
"runtimeClassName": "363",
"enableServiceLinks": false,
"preemptionPolicy": "l=ƈư呄",
"overhead": {
@ -1107,13 +1110,13 @@
"status": {
"active": [
{
"kind": "361",
"namespace": "362",
"name": "363",
"kind": "364",
"namespace": "365",
"name": "366",
"uid": "Ư竱=沚ʧ蓒硑Ț匡婲",
"apiVersion": "364",
"resourceVersion": "365",
"fieldPath": "366"
"apiVersion": "367",
"resourceVersion": "368",
"fieldPath": "369"
}
]
}

View File

@ -119,28 +119,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "314"
- key: "317"
operator: 輂,ŕĪĠM蘇KŅ/»頸
values:
- "315"
- "318"
matchFields:
- key: "316"
- key: "319"
operator: ¸
values:
- "317"
- "320"
weight: -190183379
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "310"
- key: "313"
operator: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
values:
- "311"
- "314"
matchFields:
- key: "312"
- key: "315"
operator: J僳徥淳4揻-$ɽ丟×x锏
values:
- "313"
- "316"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -153,8 +153,8 @@ spec:
matchLabels:
8-m7---k8235--8--c83-4b-9-1o8w-a-6-31o/39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9..__6: 8D_X._B__-P---_H-.___._D8.TS-jJY
namespaces:
- "332"
topologyKey: "333"
- "335"
topologyKey: "336"
weight: 293042649
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -165,8 +165,8 @@ spec:
? 3vvm-2qz7-3042017mh0-5-g-7-7---g88w2k4usz--mj-8o26--26-hs5-jd.21k-vc0260ni-l11q5--uk5mj-94-8134i5k6q6--5tu-tie4j/nc.C3_F._oX-F9_.5vN5.25aWx.2aM214_.-N_g
: 3M-.-p
namespaces:
- "324"
topologyKey: "325"
- "327"
topologyKey: "328"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -179,8 +179,8 @@ spec:
matchLabels:
21ak-tov--xk-gr-4---rv-t-u-4----q-x3w3dn1/AmD-.0AP.-.C_--.F5_x.KNC0-.-m_u: 6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-k
namespaces:
- "348"
topologyKey: "349"
- "351"
topologyKey: "352"
weight: -1572758512
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -192,119 +192,119 @@ spec:
matchLabels:
v8_.O_..8n.--z_-..6W.K: sTt.-U_--6
namespaces:
- "340"
topologyKey: "341"
- "343"
topologyKey: "344"
automountServiceAccountToken: true
containers:
- args:
- "239"
- "240"
command:
- "238"
- "239"
env:
- name: "246"
value: "247"
- name: "247"
value: "248"
valueFrom:
configMapKeyRef:
key: "253"
name: "252"
key: "254"
name: "253"
optional: true
fieldRef:
apiVersion: "248"
fieldPath: "249"
apiVersion: "249"
fieldPath: "250"
resourceFieldRef:
containerName: "250"
containerName: "251"
divisor: "700"
resource: "251"
resource: "252"
secretKeyRef:
key: "255"
name: "254"
key: "256"
name: "255"
optional: false
envFrom:
- configMapRef:
name: "244"
optional: true
prefix: "243"
secretRef:
name: "245"
optional: true
image: "237"
prefix: "244"
secretRef:
name: "246"
optional: true
image: "238"
imagePullPolicy: 輓Ɔȓ蹣ɐǛv+8
lifecycle:
postStart:
exec:
command:
- "275"
- "276"
httpGet:
host: "277"
host: "278"
httpHeaders:
- name: "278"
value: "279"
path: "276"
- name: "279"
value: "280"
path: "277"
port: -1213051101
scheme: 埽uʎȺ眖R
tcpSocket:
host: "280"
host: "281"
port: 1260448044
preStop:
exec:
command:
- "281"
- "282"
httpGet:
host: "283"
host: "284"
httpHeaders:
- name: "284"
value: "285"
path: "282"
- name: "285"
value: "286"
path: "283"
port: 1689978741
scheme: 緕ȚÍ勅跦
tcpSocket:
host: "286"
host: "287"
port: 571739592
livenessProbe:
exec:
command:
- "262"
- "263"
failureThreshold: -1285424066
httpGet:
host: "265"
host: "266"
httpHeaders:
- name: "266"
value: "267"
path: "263"
port: "264"
- name: "267"
value: "268"
path: "264"
port: "265"
scheme: '|懥ƖN粕擓ƖHVe熼'
initialDelaySeconds: -801430937
periodSeconds: -236125597
successThreshold: 385729478
tcpSocket:
host: "268"
host: "269"
port: -327987957
timeoutSeconds: 1883209805
name: "236"
name: "237"
ports:
- containerPort: -966649167
hostIP: "242"
hostIP: "243"
hostPort: 622473257
name: "241"
name: "242"
protocol: eLJèux榜VƋZ
readinessProbe:
exec:
command:
- "269"
- "270"
failureThreshold: -775511009
httpGet:
host: "271"
host: "272"
httpHeaders:
- name: "272"
value: "273"
path: "270"
- name: "273"
value: "274"
path: "271"
port: -1273659804
scheme: /ɸɎ R§耶FfBls3!
initialDelaySeconds: -625194347
periodSeconds: -630252364
successThreshold: 391562775
tcpSocket:
host: "274"
host: "275"
port: -1654678802
timeoutSeconds: -720450949
resources:
@ -326,44 +326,45 @@ spec:
runAsNonRoot: false
runAsUser: -5821728037462880994
seLinuxOptions:
level: "291"
role: "289"
type: "290"
user: "288"
level: "292"
role: "290"
type: "291"
user: "289"
windowsOptions:
gmsaCredentialSpec: "293"
gmsaCredentialSpecName: "292"
terminationMessagePath: "287"
gmsaCredentialSpec: "294"
gmsaCredentialSpecName: "293"
runAsUserName: "295"
terminationMessagePath: "288"
terminationMessagePolicy: ǩ
volumeDevices:
- devicePath: "261"
name: "260"
- devicePath: "262"
name: "261"
volumeMounts:
- mountPath: "257"
- mountPath: "258"
mountPropagation: 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0
name: "256"
name: "257"
readOnly: true
subPath: "258"
subPathExpr: "259"
workingDir: "240"
subPath: "259"
subPathExpr: "260"
workingDir: "241"
dnsConfig:
nameservers:
- "356"
- "359"
options:
- name: "358"
value: "359"
- name: "361"
value: "362"
searches:
- "357"
- "360"
dnsPolicy: fʀļ腩墺Ò媁荭gw忊
enableServiceLinks: false
hostAliases:
- hostnames:
- "354"
ip: "353"
- "357"
ip: "356"
hostNetwork: true
hostname: "308"
hostname: "311"
imagePullSecrets:
- name: "307"
- name: "310"
initContainers:
- args:
- "180"
@ -502,6 +503,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "235"
gmsaCredentialSpecName: "234"
runAsUserName: "236"
stdin: true
terminationMessagePath: "229"
terminationMessagePolicy: ȉ彂
@ -516,48 +518,49 @@ spec:
subPath: "199"
subPathExpr: "200"
workingDir: "181"
nodeName: "298"
nodeName: "300"
nodeSelector:
"294": "295"
"296": "297"
overhead:
永ʕW6¯ȗŮ: "622"
preemptionPolicy: l=ƈư呄
priority: -16328498
priorityClassName: "355"
priorityClassName: "358"
readinessGates:
- conditionType: ɩŢɽǣ(^<u綡Ţ搯唧aĦ3Ǩk
restartPolicy: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
runtimeClassName: "360"
schedulerName: "350"
runtimeClassName: "363"
schedulerName: "353"
securityContext:
fsGroup: -5353126188990290855
runAsGroup: 3582457287488712192
runAsNonRoot: true
runAsUser: -5640668310341845616
seLinuxOptions:
level: "302"
role: "300"
type: "301"
user: "299"
level: "304"
role: "302"
type: "303"
user: "301"
supplementalGroups:
- 8340498462419356921
sysctls:
- name: "305"
value: "306"
- name: "308"
value: "309"
windowsOptions:
gmsaCredentialSpec: "304"
gmsaCredentialSpecName: "303"
serviceAccount: "297"
serviceAccountName: "296"
gmsaCredentialSpec: "306"
gmsaCredentialSpecName: "305"
runAsUserName: "307"
serviceAccount: "299"
serviceAccountName: "298"
shareProcessNamespace: true
subdomain: "309"
subdomain: "312"
terminationGracePeriodSeconds: -2321746767245155166
tolerations:
- effect: 蕞纥奆0ǔ廘ɵ岳v&ȝxɕūNj'6
key: "351"
key: "354"
operator: ȫ喆5O2.:鑋ĻL©鈀6
tolerationSeconds: -2850654160732182959
value: "352"
value: "355"
volumes:
- awsElasticBlockStore:
fsType: "77"
@ -761,10 +764,10 @@ spec:
suspend: false
status:
active:
- apiVersion: "364"
fieldPath: "366"
kind: "361"
name: "363"
namespace: "362"
resourceVersion: "365"
- apiVersion: "367"
fieldPath: "369"
kind: "364"
name: "366"
namespace: "365"
resourceVersion: "368"
uid: Ư竱=沚ʧ蓒硑Ț匡婲

View File

@ -620,7 +620,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "235",
"gmsaCredentialSpec": "236"
"gmsaCredentialSpec": "236",
"runAsUserName": "237"
},
"runAsUser": -7433417845068148860,
"runAsGroup": 285495246564691952,
@ -635,59 +636,59 @@
],
"containers": [
{
"name": "237",
"image": "238",
"name": "238",
"image": "239",
"command": [
"239"
],
"args": [
"240"
],
"workingDir": "241",
"args": [
"241"
],
"workingDir": "242",
"ports": [
{
"name": "242",
"name": "243",
"hostPort": -1872407654,
"containerPort": 32378685,
"protocol": "ş蝿ɖȃ賲鐅臬",
"hostIP": "243"
"hostIP": "244"
}
],
"envFrom": [
{
"prefix": "244",
"prefix": "245",
"configMapRef": {
"name": "245",
"name": "246",
"optional": false
},
"secretRef": {
"name": "246",
"name": "247",
"optional": true
}
}
],
"env": [
{
"name": "247",
"value": "248",
"name": "248",
"value": "249",
"valueFrom": {
"fieldRef": {
"apiVersion": "249",
"fieldPath": "250"
"apiVersion": "250",
"fieldPath": "251"
},
"resourceFieldRef": {
"containerName": "251",
"resource": "252",
"containerName": "252",
"resource": "253",
"divisor": "117"
},
"configMapKeyRef": {
"name": "253",
"key": "254",
"name": "254",
"key": "255",
"optional": true
},
"secretKeyRef": {
"name": "255",
"key": "256",
"name": "256",
"key": "257",
"optional": false
}
}
@ -703,40 +704,40 @@
},
"volumeMounts": [
{
"name": "257",
"mountPath": "258",
"subPath": "259",
"name": "258",
"mountPath": "259",
"subPath": "260",
"mountPropagation": "ǹ_Áȉ彂Ŵ廷s",
"subPathExpr": "260"
"subPathExpr": "261"
}
],
"volumeDevices": [
{
"name": "261",
"devicePath": "262"
"name": "262",
"devicePath": "263"
}
],
"livenessProbe": {
"exec": {
"command": [
"263"
"264"
]
},
"httpGet": {
"path": "264",
"path": "265",
"port": 1923650413,
"host": "265",
"host": "266",
"scheme": "I粛E煹ǐƲE'iþŹʣy",
"httpHeaders": [
{
"name": "266",
"value": "267"
"name": "267",
"value": "268"
}
]
},
"tcpSocket": {
"port": "268",
"host": "269"
"port": "269",
"host": "270"
},
"initialDelaySeconds": -1961863213,
"timeoutSeconds": -103588794,
@ -747,23 +748,23 @@
"readinessProbe": {
"exec": {
"command": [
"270"
"271"
]
},
"httpGet": {
"path": "271",
"path": "272",
"port": 424236719,
"host": "272",
"host": "273",
"httpHeaders": [
{
"name": "273",
"value": "274"
"name": "274",
"value": "275"
}
]
},
"tcpSocket": {
"port": -648954478,
"host": "275"
"host": "276"
},
"initialDelaySeconds": 1170649416,
"timeoutSeconds": 893619181,
@ -775,51 +776,51 @@
"postStart": {
"exec": {
"command": [
"276"
"277"
]
},
"httpGet": {
"path": "277",
"port": "278",
"host": "279",
"path": "278",
"port": "279",
"host": "280",
"scheme": "ó瓧嫭塓烀罁胾^拜Ȍzɟ踡",
"httpHeaders": [
{
"name": "280",
"value": "281"
"name": "281",
"value": "282"
}
]
},
"tcpSocket": {
"port": "282",
"host": "283"
"port": "283",
"host": "284"
}
},
"preStop": {
"exec": {
"command": [
"284"
"285"
]
},
"httpGet": {
"path": "285",
"path": "286",
"port": 1255169591,
"host": "286",
"host": "287",
"scheme": "褎weLJèux",
"httpHeaders": [
{
"name": "287",
"value": "288"
"name": "288",
"value": "289"
}
]
},
"tcpSocket": {
"port": "289",
"host": "290"
"port": "290",
"host": "291"
}
}
},
"terminationMessagePath": "291",
"terminationMessagePath": "292",
"terminationMessagePolicy": "ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ",
"imagePullPolicy": "ƻ悖ȩ0Ƹ[",
"securityContext": {
@ -833,14 +834,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "292",
"role": "293",
"type": "294",
"level": "295"
"user": "293",
"role": "294",
"type": "295",
"level": "296"
},
"windowsOptions": {
"gmsaCredentialSpecName": "296",
"gmsaCredentialSpec": "297"
"gmsaCredentialSpecName": "297",
"gmsaCredentialSpec": "298",
"runAsUserName": "299"
},
"runAsUser": 4138932295697017546,
"runAsGroup": -1672896055328756812,
@ -857,24 +859,25 @@
"activeDeadlineSeconds": -2163829973287008972,
"dnsPolicy": "幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p[ħs",
"nodeSelector": {
"298": "299"
"300": "301"
},
"serviceAccountName": "300",
"serviceAccount": "301",
"serviceAccountName": "302",
"serviceAccount": "303",
"automountServiceAccountToken": false,
"nodeName": "302",
"nodeName": "304",
"hostNetwork": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "303",
"role": "304",
"type": "305",
"level": "306"
"user": "305",
"role": "306",
"type": "307",
"level": "308"
},
"windowsOptions": {
"gmsaCredentialSpecName": "307",
"gmsaCredentialSpec": "308"
"gmsaCredentialSpecName": "309",
"gmsaCredentialSpec": "310",
"runAsUserName": "311"
},
"runAsUser": -5140536358502970101,
"runAsGroup": -3442119660495017037,
@ -885,18 +888,18 @@
"fsGroup": -5520854324860989043,
"sysctls": [
{
"name": "309",
"value": "310"
"name": "312",
"value": "313"
}
]
},
"imagePullSecrets": [
{
"name": "311"
"name": "314"
}
],
"hostname": "312",
"subdomain": "313",
"hostname": "315",
"subdomain": "316",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -904,19 +907,19 @@
{
"matchExpressions": [
{
"key": "314",
"key": "317",
"operator": "ƁÀ*f\u003c鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ",
"values": [
"315"
"318"
]
}
],
"matchFields": [
{
"key": "316",
"key": "319",
"operator": "6dz娝嘚庎D}埽uʎȺ眖R#yV'W",
"values": [
"317"
"320"
]
}
]
@ -929,19 +932,19 @@
"preference": {
"matchExpressions": [
{
"key": "318",
"key": "321",
"operator": "ğ儴Ůĺ}潷ʒ胵輓",
"values": [
"319"
"322"
]
}
],
"matchFields": [
{
"key": "320",
"key": "323",
"operator": "1ØœȠƬQg鄠",
"values": [
"321"
"324"
]
}
]
@ -964,9 +967,9 @@
]
},
"namespaces": [
"328"
"331"
],
"topologyKey": "329"
"topologyKey": "332"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -985,9 +988,9 @@
]
},
"namespaces": [
"336"
"339"
],
"topologyKey": "337"
"topologyKey": "340"
}
}
]
@ -1010,9 +1013,9 @@
]
},
"namespaces": [
"344"
"347"
],
"topologyKey": "345"
"topologyKey": "348"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1034,45 +1037,45 @@
]
},
"namespaces": [
"352"
"355"
],
"topologyKey": "353"
"topologyKey": "356"
}
}
]
}
},
"schedulerName": "354",
"schedulerName": "357",
"tolerations": [
{
"key": "355",
"key": "358",
"operator": "ȜŚɇA%ɀ蓧睔SJȋ灋槊",
"value": "356",
"value": "359",
"effect": "群E牬庘颮6(|ǖûǭ",
"tolerationSeconds": -288011219492438332
}
],
"hostAliases": [
{
"ip": "357",
"ip": "360",
"hostnames": [
"358"
"361"
]
}
],
"priorityClassName": "359",
"priorityClassName": "362",
"priority": -852112760,
"dnsConfig": {
"nameservers": [
"360"
"363"
],
"searches": [
"361"
"364"
],
"options": [
{
"name": "362",
"value": "363"
"name": "365",
"value": "366"
}
]
},
@ -1081,7 +1084,7 @@
"conditionType": ""
}
],
"runtimeClassName": "364",
"runtimeClassName": "367",
"enableServiceLinks": true,
"preemptionPolicy": "üMɮ6).¸赂ʓ蔋 ǵq砯á",
"overhead": {

View File

@ -114,28 +114,28 @@ template:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "318"
- key: "321"
operator: ğ儴Ůĺ}潷ʒ胵輓
values:
- "319"
- "322"
matchFields:
- key: "320"
- key: "323"
operator: 1ØœȠƬQg鄠
values:
- "321"
- "324"
weight: -1423854443
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "314"
- key: "317"
operator: ƁÀ*f<鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ
values:
- "315"
- "318"
matchFields:
- key: "316"
- key: "319"
operator: 6dz娝嘚庎D}埽uʎȺ眖R#yV'W
values:
- "317"
- "320"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -146,8 +146,8 @@ template:
matchLabels:
G.-_pP__up.2L_s-o779._-k-5___Q: 3.csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.x
namespaces:
- "336"
topologyKey: "337"
- "339"
topologyKey: "340"
weight: -751455207
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -157,8 +157,8 @@ template:
matchLabels:
yk--59-63--4v.4-45e--7-5r-4-7--7-2---o--4-1-2s39--6---fv--m-8--72-bca4m54/Thg._o_p665O_4Gj._BXt.O-7___-Y_um-_8r--684._-_8: q-.VEa-_gn.8-c.C3_F._oX-F9_.5vN5.25aWx.2aM24
namespaces:
- "328"
topologyKey: "329"
- "331"
topologyKey: "332"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -171,8 +171,8 @@ template:
matchLabels:
acp6-5-x1---4/b8a_6_.0Q46: "6"
namespaces:
- "352"
topologyKey: "353"
- "355"
topologyKey: "356"
weight: -2081163116
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -184,118 +184,118 @@ template:
matchLabels:
5m8-1x129-9d8-s7-t7--336-11k8/A._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3: 8.3_t_-l..-.DG7r-3.----._4__Xn
namespaces:
- "344"
topologyKey: "345"
- "347"
topologyKey: "348"
automountServiceAccountToken: false
containers:
- args:
- "240"
- "241"
command:
- "239"
- "240"
env:
- name: "247"
value: "248"
- name: "248"
value: "249"
valueFrom:
configMapKeyRef:
key: "254"
name: "253"
key: "255"
name: "254"
optional: true
fieldRef:
apiVersion: "249"
fieldPath: "250"
apiVersion: "250"
fieldPath: "251"
resourceFieldRef:
containerName: "251"
containerName: "252"
divisor: "117"
resource: "252"
resource: "253"
secretKeyRef:
key: "256"
name: "255"
key: "257"
name: "256"
optional: false
envFrom:
- configMapRef:
name: "245"
optional: false
prefix: "244"
secretRef:
name: "246"
optional: false
prefix: "245"
secretRef:
name: "247"
optional: true
image: "238"
image: "239"
imagePullPolicy: ƻ悖ȩ0Ƹ[
lifecycle:
postStart:
exec:
command:
- "276"
- "277"
httpGet:
host: "279"
host: "280"
httpHeaders:
- name: "280"
value: "281"
path: "277"
port: "278"
- name: "281"
value: "282"
path: "278"
port: "279"
scheme: ó瓧嫭塓烀罁胾^拜Ȍzɟ踡
tcpSocket:
host: "283"
port: "282"
host: "284"
port: "283"
preStop:
exec:
command:
- "284"
- "285"
httpGet:
host: "286"
host: "287"
httpHeaders:
- name: "287"
value: "288"
path: "285"
- name: "288"
value: "289"
path: "286"
port: 1255169591
scheme: 褎weLJèux
tcpSocket:
host: "290"
port: "289"
host: "291"
port: "290"
livenessProbe:
exec:
command:
- "263"
- "264"
failureThreshold: -1273036797
httpGet:
host: "265"
host: "266"
httpHeaders:
- name: "266"
value: "267"
path: "264"
- name: "267"
value: "268"
path: "265"
port: 1923650413
scheme: I粛E煹ǐƲE'iþŹʣy
initialDelaySeconds: -1961863213
periodSeconds: -1045704964
successThreshold: 1089147958
tcpSocket:
host: "269"
port: "268"
host: "270"
port: "269"
timeoutSeconds: -103588794
name: "237"
name: "238"
ports:
- containerPort: 32378685
hostIP: "243"
hostIP: "244"
hostPort: -1872407654
name: "242"
name: "243"
protocol: ş蝿ɖȃ賲鐅臬
readinessProbe:
exec:
command:
- "270"
- "271"
failureThreshold: 192146389
httpGet:
host: "272"
host: "273"
httpHeaders:
- name: "273"
value: "274"
path: "271"
- name: "274"
value: "275"
path: "272"
port: 424236719
initialDelaySeconds: 1170649416
periodSeconds: -1891134534
successThreshold: -1710454086
tcpSocket:
host: "275"
host: "276"
port: -648954478
timeoutSeconds: 893619181
resources:
@ -317,44 +317,45 @@ template:
runAsNonRoot: false
runAsUser: 4138932295697017546
seLinuxOptions:
level: "295"
role: "293"
type: "294"
user: "292"
level: "296"
role: "294"
type: "295"
user: "293"
windowsOptions:
gmsaCredentialSpec: "297"
gmsaCredentialSpecName: "296"
terminationMessagePath: "291"
gmsaCredentialSpec: "298"
gmsaCredentialSpecName: "297"
runAsUserName: "299"
terminationMessagePath: "292"
terminationMessagePolicy: ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ
tty: true
volumeDevices:
- devicePath: "262"
name: "261"
- devicePath: "263"
name: "262"
volumeMounts:
- mountPath: "258"
- mountPath: "259"
mountPropagation: ǹ_Áȉ彂Ŵ廷s
name: "257"
subPath: "259"
subPathExpr: "260"
workingDir: "241"
name: "258"
subPath: "260"
subPathExpr: "261"
workingDir: "242"
dnsConfig:
nameservers:
- "360"
- "363"
options:
- name: "362"
value: "363"
- name: "365"
value: "366"
searches:
- "361"
- "364"
dnsPolicy: 幟ļ腻ŬƩȿ0矀Kʝ瘴I\p[ħs
enableServiceLinks: true
hostAliases:
- hostnames:
- "358"
ip: "357"
- "361"
ip: "360"
hostNetwork: true
hostname: "312"
hostname: "315"
imagePullSecrets:
- name: "311"
- name: "314"
initContainers:
- args:
- "179"
@ -493,6 +494,7 @@ template:
windowsOptions:
gmsaCredentialSpec: "236"
gmsaCredentialSpecName: "235"
runAsUserName: "237"
stdin: true
terminationMessagePath: "230"
terminationMessagePolicy: hoĂɋ
@ -508,48 +510,49 @@ template:
subPath: "198"
subPathExpr: "199"
workingDir: "180"
nodeName: "302"
nodeName: "304"
nodeSelector:
"298": "299"
"300": "301"
overhead:
gȇǙ: "432"
preemptionPolicy: üMɮ6).¸赂ʓ蔋 ǵq砯á
priority: -852112760
priorityClassName: "359"
priorityClassName: "362"
readinessGates:
- conditionType: ""
restartPolicy: î萨zvt莭
runtimeClassName: "364"
schedulerName: "354"
runtimeClassName: "367"
schedulerName: "357"
securityContext:
fsGroup: -5520854324860989043
runAsGroup: -3442119660495017037
runAsNonRoot: false
runAsUser: -5140536358502970101
seLinuxOptions:
level: "306"
role: "304"
type: "305"
user: "303"
level: "308"
role: "306"
type: "307"
user: "305"
supplementalGroups:
- 4006793330334483398
sysctls:
- name: "309"
value: "310"
- name: "312"
value: "313"
windowsOptions:
gmsaCredentialSpec: "308"
gmsaCredentialSpecName: "307"
serviceAccount: "301"
serviceAccountName: "300"
gmsaCredentialSpec: "310"
gmsaCredentialSpecName: "309"
runAsUserName: "311"
serviceAccount: "303"
serviceAccountName: "302"
shareProcessNamespace: false
subdomain: "313"
subdomain: "316"
terminationGracePeriodSeconds: 3655094543914315126
tolerations:
- effect: 群E牬庘颮6(|ǖûǭ
key: "355"
key: "358"
operator: ȜŚɇA%ɀ蓧睔SJȋ灋槊
tolerationSeconds: -288011219492438332
value: "356"
value: "359"
volumes:
- awsElasticBlockStore:
fsType: "76"

View File

@ -625,7 +625,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "234",
"gmsaCredentialSpec": "235"
"gmsaCredentialSpec": "235",
"runAsUserName": "236"
},
"runAsUser": -739484406984751446,
"runAsGroup": 1898367611285047958,
@ -640,59 +641,59 @@
],
"containers": [
{
"name": "236",
"image": "237",
"name": "237",
"image": "238",
"command": [
"238"
],
"args": [
"239"
],
"workingDir": "240",
"args": [
"240"
],
"workingDir": "241",
"ports": [
{
"name": "241",
"name": "242",
"hostPort": 622473257,
"containerPort": -966649167,
"protocol": "eLJèux榜VƋZ",
"hostIP": "242"
"hostIP": "243"
}
],
"envFrom": [
{
"prefix": "243",
"prefix": "244",
"configMapRef": {
"name": "244",
"name": "245",
"optional": true
},
"secretRef": {
"name": "245",
"name": "246",
"optional": true
}
}
],
"env": [
{
"name": "246",
"value": "247",
"name": "247",
"value": "248",
"valueFrom": {
"fieldRef": {
"apiVersion": "248",
"fieldPath": "249"
"apiVersion": "249",
"fieldPath": "250"
},
"resourceFieldRef": {
"containerName": "250",
"resource": "251",
"containerName": "251",
"resource": "252",
"divisor": "700"
},
"configMapKeyRef": {
"name": "252",
"key": "253",
"name": "253",
"key": "254",
"optional": true
},
"secretKeyRef": {
"name": "254",
"key": "255",
"name": "255",
"key": "256",
"optional": false
}
}
@ -708,41 +709,41 @@
},
"volumeMounts": [
{
"name": "256",
"name": "257",
"readOnly": true,
"mountPath": "257",
"subPath": "258",
"mountPath": "258",
"subPath": "259",
"mountPropagation": "藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0",
"subPathExpr": "259"
"subPathExpr": "260"
}
],
"volumeDevices": [
{
"name": "260",
"devicePath": "261"
"name": "261",
"devicePath": "262"
}
],
"livenessProbe": {
"exec": {
"command": [
"262"
"263"
]
},
"httpGet": {
"path": "263",
"port": "264",
"host": "265",
"path": "264",
"port": "265",
"host": "266",
"scheme": "|懥ƖN粕擓ƖHVe熼",
"httpHeaders": [
{
"name": "266",
"value": "267"
"name": "267",
"value": "268"
}
]
},
"tcpSocket": {
"port": -327987957,
"host": "268"
"host": "269"
},
"initialDelaySeconds": -801430937,
"timeoutSeconds": 1883209805,
@ -753,24 +754,24 @@
"readinessProbe": {
"exec": {
"command": [
"269"
"270"
]
},
"httpGet": {
"path": "270",
"path": "271",
"port": -1273659804,
"host": "271",
"host": "272",
"scheme": "/ɸɎ R§耶FfBls3!",
"httpHeaders": [
{
"name": "272",
"value": "273"
"name": "273",
"value": "274"
}
]
},
"tcpSocket": {
"port": -1654678802,
"host": "274"
"host": "275"
},
"initialDelaySeconds": -625194347,
"timeoutSeconds": -720450949,
@ -782,51 +783,51 @@
"postStart": {
"exec": {
"command": [
"275"
"276"
]
},
"httpGet": {
"path": "276",
"path": "277",
"port": -1213051101,
"host": "277",
"host": "278",
"scheme": "埽uʎȺ眖R",
"httpHeaders": [
{
"name": "278",
"value": "279"
"name": "279",
"value": "280"
}
]
},
"tcpSocket": {
"port": 1260448044,
"host": "280"
"host": "281"
}
},
"preStop": {
"exec": {
"command": [
"281"
"282"
]
},
"httpGet": {
"path": "282",
"path": "283",
"port": 1689978741,
"host": "283",
"host": "284",
"scheme": "緕ȚÍ勅跦",
"httpHeaders": [
{
"name": "284",
"value": "285"
"name": "285",
"value": "286"
}
]
},
"tcpSocket": {
"port": 571739592,
"host": "286"
"host": "287"
}
}
},
"terminationMessagePath": "287",
"terminationMessagePath": "288",
"terminationMessagePolicy": "ǩ",
"imagePullPolicy": "輓Ɔȓ蹣ɐǛv+8",
"securityContext": {
@ -840,14 +841,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "288",
"role": "289",
"type": "290",
"level": "291"
"user": "289",
"role": "290",
"type": "291",
"level": "292"
},
"windowsOptions": {
"gmsaCredentialSpecName": "292",
"gmsaCredentialSpec": "293"
"gmsaCredentialSpecName": "293",
"gmsaCredentialSpec": "294",
"runAsUserName": "295"
},
"runAsUser": -5821728037462880994,
"runAsGroup": 4468469649483616089,
@ -863,24 +865,25 @@
"activeDeadlineSeconds": 6764431850409848860,
"dnsPolicy": "fʀļ腩墺Ò媁荭gw忊",
"nodeSelector": {
"294": "295"
"296": "297"
},
"serviceAccountName": "296",
"serviceAccount": "297",
"serviceAccountName": "298",
"serviceAccount": "299",
"automountServiceAccountToken": true,
"nodeName": "298",
"nodeName": "300",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "299",
"role": "300",
"type": "301",
"level": "302"
"user": "301",
"role": "302",
"type": "303",
"level": "304"
},
"windowsOptions": {
"gmsaCredentialSpecName": "303",
"gmsaCredentialSpec": "304"
"gmsaCredentialSpecName": "305",
"gmsaCredentialSpec": "306",
"runAsUserName": "307"
},
"runAsUser": -5640668310341845616,
"runAsGroup": 3582457287488712192,
@ -891,18 +894,18 @@
"fsGroup": -5353126188990290855,
"sysctls": [
{
"name": "305",
"value": "306"
"name": "308",
"value": "309"
}
]
},
"imagePullSecrets": [
{
"name": "307"
"name": "310"
}
],
"hostname": "308",
"subdomain": "309",
"hostname": "311",
"subdomain": "312",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -910,19 +913,19 @@
{
"matchExpressions": [
{
"key": "310",
"key": "313",
"operator": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
"values": [
"311"
"314"
]
}
],
"matchFields": [
{
"key": "312",
"key": "315",
"operator": "J僳徥淳4揻-$ɽ丟×x锏",
"values": [
"313"
"316"
]
}
]
@ -935,19 +938,19 @@
"preference": {
"matchExpressions": [
{
"key": "314",
"key": "317",
"operator": "輂,ŕĪĠM蘇KŅ/»頸",
"values": [
"315"
"318"
]
}
],
"matchFields": [
{
"key": "316",
"key": "319",
"operator": "NƗ¸gĩ",
"values": [
"317"
"320"
]
}
]
@ -970,9 +973,9 @@
]
},
"namespaces": [
"324"
"327"
],
"topologyKey": "325"
"topologyKey": "328"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -994,9 +997,9 @@
]
},
"namespaces": [
"332"
"335"
],
"topologyKey": "333"
"topologyKey": "336"
}
}
]
@ -1019,9 +1022,9 @@
]
},
"namespaces": [
"340"
"343"
],
"topologyKey": "341"
"topologyKey": "344"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1043,45 +1046,45 @@
]
},
"namespaces": [
"348"
"351"
],
"topologyKey": "349"
"topologyKey": "352"
}
}
]
}
},
"schedulerName": "350",
"schedulerName": "353",
"tolerations": [
{
"key": "351",
"key": "354",
"operator": "ȫ喆5O2.:鑋ĻL©鈀6",
"value": "352",
"value": "355",
"effect": "蕞纥奆0ǔ廘ɵ岳v\u0026ȝxɕūNj'6",
"tolerationSeconds": -2850654160732182959
}
],
"hostAliases": [
{
"ip": "353",
"ip": "356",
"hostnames": [
"354"
"357"
]
}
],
"priorityClassName": "355",
"priorityClassName": "358",
"priority": -16328498,
"dnsConfig": {
"nameservers": [
"356"
"359"
],
"searches": [
"357"
"360"
],
"options": [
{
"name": "358",
"value": "359"
"name": "361",
"value": "362"
}
]
},
@ -1090,7 +1093,7 @@
"conditionType": "ɩŢɽǣ(^\u003cu綡Ţ搯唧aĦ3Ǩk"
}
],
"runtimeClassName": "360",
"runtimeClassName": "363",
"enableServiceLinks": false,
"preemptionPolicy": "l=ƈư呄",
"overhead": {
@ -1107,13 +1110,13 @@
"status": {
"active": [
{
"kind": "361",
"namespace": "362",
"name": "363",
"kind": "364",
"namespace": "365",
"name": "366",
"uid": "Ư竱=沚ʧ蓒硑Ț匡婲",
"apiVersion": "364",
"resourceVersion": "365",
"fieldPath": "366"
"apiVersion": "367",
"resourceVersion": "368",
"fieldPath": "369"
}
]
}

View File

@ -119,28 +119,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "314"
- key: "317"
operator: 輂,ŕĪĠM蘇KŅ/»頸
values:
- "315"
- "318"
matchFields:
- key: "316"
- key: "319"
operator: ¸
values:
- "317"
- "320"
weight: -190183379
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "310"
- key: "313"
operator: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
values:
- "311"
- "314"
matchFields:
- key: "312"
- key: "315"
operator: J僳徥淳4揻-$ɽ丟×x锏
values:
- "313"
- "316"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -153,8 +153,8 @@ spec:
matchLabels:
8-m7---k8235--8--c83-4b-9-1o8w-a-6-31o/39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9..__6: 8D_X._B__-P---_H-.___._D8.TS-jJY
namespaces:
- "332"
topologyKey: "333"
- "335"
topologyKey: "336"
weight: 293042649
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -165,8 +165,8 @@ spec:
? 3vvm-2qz7-3042017mh0-5-g-7-7---g88w2k4usz--mj-8o26--26-hs5-jd.21k-vc0260ni-l11q5--uk5mj-94-8134i5k6q6--5tu-tie4j/nc.C3_F._oX-F9_.5vN5.25aWx.2aM214_.-N_g
: 3M-.-p
namespaces:
- "324"
topologyKey: "325"
- "327"
topologyKey: "328"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -179,8 +179,8 @@ spec:
matchLabels:
21ak-tov--xk-gr-4---rv-t-u-4----q-x3w3dn1/AmD-.0AP.-.C_--.F5_x.KNC0-.-m_u: 6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-k
namespaces:
- "348"
topologyKey: "349"
- "351"
topologyKey: "352"
weight: -1572758512
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -192,119 +192,119 @@ spec:
matchLabels:
v8_.O_..8n.--z_-..6W.K: sTt.-U_--6
namespaces:
- "340"
topologyKey: "341"
- "343"
topologyKey: "344"
automountServiceAccountToken: true
containers:
- args:
- "239"
- "240"
command:
- "238"
- "239"
env:
- name: "246"
value: "247"
- name: "247"
value: "248"
valueFrom:
configMapKeyRef:
key: "253"
name: "252"
key: "254"
name: "253"
optional: true
fieldRef:
apiVersion: "248"
fieldPath: "249"
apiVersion: "249"
fieldPath: "250"
resourceFieldRef:
containerName: "250"
containerName: "251"
divisor: "700"
resource: "251"
resource: "252"
secretKeyRef:
key: "255"
name: "254"
key: "256"
name: "255"
optional: false
envFrom:
- configMapRef:
name: "244"
optional: true
prefix: "243"
secretRef:
name: "245"
optional: true
image: "237"
prefix: "244"
secretRef:
name: "246"
optional: true
image: "238"
imagePullPolicy: 輓Ɔȓ蹣ɐǛv+8
lifecycle:
postStart:
exec:
command:
- "275"
- "276"
httpGet:
host: "277"
host: "278"
httpHeaders:
- name: "278"
value: "279"
path: "276"
- name: "279"
value: "280"
path: "277"
port: -1213051101
scheme: 埽uʎȺ眖R
tcpSocket:
host: "280"
host: "281"
port: 1260448044
preStop:
exec:
command:
- "281"
- "282"
httpGet:
host: "283"
host: "284"
httpHeaders:
- name: "284"
value: "285"
path: "282"
- name: "285"
value: "286"
path: "283"
port: 1689978741
scheme: 緕ȚÍ勅跦
tcpSocket:
host: "286"
host: "287"
port: 571739592
livenessProbe:
exec:
command:
- "262"
- "263"
failureThreshold: -1285424066
httpGet:
host: "265"
host: "266"
httpHeaders:
- name: "266"
value: "267"
path: "263"
port: "264"
- name: "267"
value: "268"
path: "264"
port: "265"
scheme: '|懥ƖN粕擓ƖHVe熼'
initialDelaySeconds: -801430937
periodSeconds: -236125597
successThreshold: 385729478
tcpSocket:
host: "268"
host: "269"
port: -327987957
timeoutSeconds: 1883209805
name: "236"
name: "237"
ports:
- containerPort: -966649167
hostIP: "242"
hostIP: "243"
hostPort: 622473257
name: "241"
name: "242"
protocol: eLJèux榜VƋZ
readinessProbe:
exec:
command:
- "269"
- "270"
failureThreshold: -775511009
httpGet:
host: "271"
host: "272"
httpHeaders:
- name: "272"
value: "273"
path: "270"
- name: "273"
value: "274"
path: "271"
port: -1273659804
scheme: /ɸɎ R§耶FfBls3!
initialDelaySeconds: -625194347
periodSeconds: -630252364
successThreshold: 391562775
tcpSocket:
host: "274"
host: "275"
port: -1654678802
timeoutSeconds: -720450949
resources:
@ -326,44 +326,45 @@ spec:
runAsNonRoot: false
runAsUser: -5821728037462880994
seLinuxOptions:
level: "291"
role: "289"
type: "290"
user: "288"
level: "292"
role: "290"
type: "291"
user: "289"
windowsOptions:
gmsaCredentialSpec: "293"
gmsaCredentialSpecName: "292"
terminationMessagePath: "287"
gmsaCredentialSpec: "294"
gmsaCredentialSpecName: "293"
runAsUserName: "295"
terminationMessagePath: "288"
terminationMessagePolicy: ǩ
volumeDevices:
- devicePath: "261"
name: "260"
- devicePath: "262"
name: "261"
volumeMounts:
- mountPath: "257"
- mountPath: "258"
mountPropagation: 藠3.v-鿧悮坮Ȣ幟ļ腻ŬƩȿ0
name: "256"
name: "257"
readOnly: true
subPath: "258"
subPathExpr: "259"
workingDir: "240"
subPath: "259"
subPathExpr: "260"
workingDir: "241"
dnsConfig:
nameservers:
- "356"
- "359"
options:
- name: "358"
value: "359"
- name: "361"
value: "362"
searches:
- "357"
- "360"
dnsPolicy: fʀļ腩墺Ò媁荭gw忊
enableServiceLinks: false
hostAliases:
- hostnames:
- "354"
ip: "353"
- "357"
ip: "356"
hostNetwork: true
hostname: "308"
hostname: "311"
imagePullSecrets:
- name: "307"
- name: "310"
initContainers:
- args:
- "180"
@ -502,6 +503,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "235"
gmsaCredentialSpecName: "234"
runAsUserName: "236"
stdin: true
terminationMessagePath: "229"
terminationMessagePolicy: ȉ彂
@ -516,48 +518,49 @@ spec:
subPath: "199"
subPathExpr: "200"
workingDir: "181"
nodeName: "298"
nodeName: "300"
nodeSelector:
"294": "295"
"296": "297"
overhead:
永ʕW6¯ȗŮ: "622"
preemptionPolicy: l=ƈư呄
priority: -16328498
priorityClassName: "355"
priorityClassName: "358"
readinessGates:
- conditionType: ɩŢɽǣ(^<u綡Ţ搯唧aĦ3Ǩk
restartPolicy: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
runtimeClassName: "360"
schedulerName: "350"
runtimeClassName: "363"
schedulerName: "353"
securityContext:
fsGroup: -5353126188990290855
runAsGroup: 3582457287488712192
runAsNonRoot: true
runAsUser: -5640668310341845616
seLinuxOptions:
level: "302"
role: "300"
type: "301"
user: "299"
level: "304"
role: "302"
type: "303"
user: "301"
supplementalGroups:
- 8340498462419356921
sysctls:
- name: "305"
value: "306"
- name: "308"
value: "309"
windowsOptions:
gmsaCredentialSpec: "304"
gmsaCredentialSpecName: "303"
serviceAccount: "297"
serviceAccountName: "296"
gmsaCredentialSpec: "306"
gmsaCredentialSpecName: "305"
runAsUserName: "307"
serviceAccount: "299"
serviceAccountName: "298"
shareProcessNamespace: true
subdomain: "309"
subdomain: "312"
terminationGracePeriodSeconds: -2321746767245155166
tolerations:
- effect: 蕞纥奆0ǔ廘ɵ岳v&ȝxɕūNj'6
key: "351"
key: "354"
operator: ȫ喆5O2.:鑋ĻL©鈀6
tolerationSeconds: -2850654160732182959
value: "352"
value: "355"
volumes:
- awsElasticBlockStore:
fsType: "77"
@ -761,10 +764,10 @@ spec:
suspend: false
status:
active:
- apiVersion: "364"
fieldPath: "366"
kind: "361"
name: "363"
namespace: "362"
resourceVersion: "365"
- apiVersion: "367"
fieldPath: "369"
kind: "364"
name: "366"
namespace: "365"
resourceVersion: "368"
uid: Ư竱=沚ʧ蓒硑Ț匡婲

View File

@ -620,7 +620,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "235",
"gmsaCredentialSpec": "236"
"gmsaCredentialSpec": "236",
"runAsUserName": "237"
},
"runAsUser": -7433417845068148860,
"runAsGroup": 285495246564691952,
@ -635,59 +636,59 @@
],
"containers": [
{
"name": "237",
"image": "238",
"name": "238",
"image": "239",
"command": [
"239"
],
"args": [
"240"
],
"workingDir": "241",
"args": [
"241"
],
"workingDir": "242",
"ports": [
{
"name": "242",
"name": "243",
"hostPort": -1872407654,
"containerPort": 32378685,
"protocol": "ş蝿ɖȃ賲鐅臬",
"hostIP": "243"
"hostIP": "244"
}
],
"envFrom": [
{
"prefix": "244",
"prefix": "245",
"configMapRef": {
"name": "245",
"name": "246",
"optional": false
},
"secretRef": {
"name": "246",
"name": "247",
"optional": true
}
}
],
"env": [
{
"name": "247",
"value": "248",
"name": "248",
"value": "249",
"valueFrom": {
"fieldRef": {
"apiVersion": "249",
"fieldPath": "250"
"apiVersion": "250",
"fieldPath": "251"
},
"resourceFieldRef": {
"containerName": "251",
"resource": "252",
"containerName": "252",
"resource": "253",
"divisor": "117"
},
"configMapKeyRef": {
"name": "253",
"key": "254",
"name": "254",
"key": "255",
"optional": true
},
"secretKeyRef": {
"name": "255",
"key": "256",
"name": "256",
"key": "257",
"optional": false
}
}
@ -703,40 +704,40 @@
},
"volumeMounts": [
{
"name": "257",
"mountPath": "258",
"subPath": "259",
"name": "258",
"mountPath": "259",
"subPath": "260",
"mountPropagation": "ǹ_Áȉ彂Ŵ廷s",
"subPathExpr": "260"
"subPathExpr": "261"
}
],
"volumeDevices": [
{
"name": "261",
"devicePath": "262"
"name": "262",
"devicePath": "263"
}
],
"livenessProbe": {
"exec": {
"command": [
"263"
"264"
]
},
"httpGet": {
"path": "264",
"path": "265",
"port": 1923650413,
"host": "265",
"host": "266",
"scheme": "I粛E煹ǐƲE'iþŹʣy",
"httpHeaders": [
{
"name": "266",
"value": "267"
"name": "267",
"value": "268"
}
]
},
"tcpSocket": {
"port": "268",
"host": "269"
"port": "269",
"host": "270"
},
"initialDelaySeconds": -1961863213,
"timeoutSeconds": -103588794,
@ -747,23 +748,23 @@
"readinessProbe": {
"exec": {
"command": [
"270"
"271"
]
},
"httpGet": {
"path": "271",
"path": "272",
"port": 424236719,
"host": "272",
"host": "273",
"httpHeaders": [
{
"name": "273",
"value": "274"
"name": "274",
"value": "275"
}
]
},
"tcpSocket": {
"port": -648954478,
"host": "275"
"host": "276"
},
"initialDelaySeconds": 1170649416,
"timeoutSeconds": 893619181,
@ -775,51 +776,51 @@
"postStart": {
"exec": {
"command": [
"276"
"277"
]
},
"httpGet": {
"path": "277",
"port": "278",
"host": "279",
"path": "278",
"port": "279",
"host": "280",
"scheme": "ó瓧嫭塓烀罁胾^拜Ȍzɟ踡",
"httpHeaders": [
{
"name": "280",
"value": "281"
"name": "281",
"value": "282"
}
]
},
"tcpSocket": {
"port": "282",
"host": "283"
"port": "283",
"host": "284"
}
},
"preStop": {
"exec": {
"command": [
"284"
"285"
]
},
"httpGet": {
"path": "285",
"path": "286",
"port": 1255169591,
"host": "286",
"host": "287",
"scheme": "褎weLJèux",
"httpHeaders": [
{
"name": "287",
"value": "288"
"name": "288",
"value": "289"
}
]
},
"tcpSocket": {
"port": "289",
"host": "290"
"port": "290",
"host": "291"
}
}
},
"terminationMessagePath": "291",
"terminationMessagePath": "292",
"terminationMessagePolicy": "ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ",
"imagePullPolicy": "ƻ悖ȩ0Ƹ[",
"securityContext": {
@ -833,14 +834,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "292",
"role": "293",
"type": "294",
"level": "295"
"user": "293",
"role": "294",
"type": "295",
"level": "296"
},
"windowsOptions": {
"gmsaCredentialSpecName": "296",
"gmsaCredentialSpec": "297"
"gmsaCredentialSpecName": "297",
"gmsaCredentialSpec": "298",
"runAsUserName": "299"
},
"runAsUser": 4138932295697017546,
"runAsGroup": -1672896055328756812,
@ -857,24 +859,25 @@
"activeDeadlineSeconds": -2163829973287008972,
"dnsPolicy": "幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p[ħs",
"nodeSelector": {
"298": "299"
"300": "301"
},
"serviceAccountName": "300",
"serviceAccount": "301",
"serviceAccountName": "302",
"serviceAccount": "303",
"automountServiceAccountToken": false,
"nodeName": "302",
"nodeName": "304",
"hostNetwork": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "303",
"role": "304",
"type": "305",
"level": "306"
"user": "305",
"role": "306",
"type": "307",
"level": "308"
},
"windowsOptions": {
"gmsaCredentialSpecName": "307",
"gmsaCredentialSpec": "308"
"gmsaCredentialSpecName": "309",
"gmsaCredentialSpec": "310",
"runAsUserName": "311"
},
"runAsUser": -5140536358502970101,
"runAsGroup": -3442119660495017037,
@ -885,18 +888,18 @@
"fsGroup": -5520854324860989043,
"sysctls": [
{
"name": "309",
"value": "310"
"name": "312",
"value": "313"
}
]
},
"imagePullSecrets": [
{
"name": "311"
"name": "314"
}
],
"hostname": "312",
"subdomain": "313",
"hostname": "315",
"subdomain": "316",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -904,19 +907,19 @@
{
"matchExpressions": [
{
"key": "314",
"key": "317",
"operator": "ƁÀ*f\u003c鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ",
"values": [
"315"
"318"
]
}
],
"matchFields": [
{
"key": "316",
"key": "319",
"operator": "6dz娝嘚庎D}埽uʎȺ眖R#yV'W",
"values": [
"317"
"320"
]
}
]
@ -929,19 +932,19 @@
"preference": {
"matchExpressions": [
{
"key": "318",
"key": "321",
"operator": "ğ儴Ůĺ}潷ʒ胵輓",
"values": [
"319"
"322"
]
}
],
"matchFields": [
{
"key": "320",
"key": "323",
"operator": "1ØœȠƬQg鄠",
"values": [
"321"
"324"
]
}
]
@ -964,9 +967,9 @@
]
},
"namespaces": [
"328"
"331"
],
"topologyKey": "329"
"topologyKey": "332"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -985,9 +988,9 @@
]
},
"namespaces": [
"336"
"339"
],
"topologyKey": "337"
"topologyKey": "340"
}
}
]
@ -1010,9 +1013,9 @@
]
},
"namespaces": [
"344"
"347"
],
"topologyKey": "345"
"topologyKey": "348"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1034,45 +1037,45 @@
]
},
"namespaces": [
"352"
"355"
],
"topologyKey": "353"
"topologyKey": "356"
}
}
]
}
},
"schedulerName": "354",
"schedulerName": "357",
"tolerations": [
{
"key": "355",
"key": "358",
"operator": "ȜŚɇA%ɀ蓧睔SJȋ灋槊",
"value": "356",
"value": "359",
"effect": "群E牬庘颮6(|ǖûǭ",
"tolerationSeconds": -288011219492438332
}
],
"hostAliases": [
{
"ip": "357",
"ip": "360",
"hostnames": [
"358"
"361"
]
}
],
"priorityClassName": "359",
"priorityClassName": "362",
"priority": -852112760,
"dnsConfig": {
"nameservers": [
"360"
"363"
],
"searches": [
"361"
"364"
],
"options": [
{
"name": "362",
"value": "363"
"name": "365",
"value": "366"
}
]
},
@ -1081,7 +1084,7 @@
"conditionType": ""
}
],
"runtimeClassName": "364",
"runtimeClassName": "367",
"enableServiceLinks": true,
"preemptionPolicy": "üMɮ6).¸赂ʓ蔋 ǵq砯á",
"overhead": {

View File

@ -114,28 +114,28 @@ template:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "318"
- key: "321"
operator: ğ儴Ůĺ}潷ʒ胵輓
values:
- "319"
- "322"
matchFields:
- key: "320"
- key: "323"
operator: 1ØœȠƬQg鄠
values:
- "321"
- "324"
weight: -1423854443
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "314"
- key: "317"
operator: ƁÀ*f<鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ
values:
- "315"
- "318"
matchFields:
- key: "316"
- key: "319"
operator: 6dz娝嘚庎D}埽uʎȺ眖R#yV'W
values:
- "317"
- "320"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -146,8 +146,8 @@ template:
matchLabels:
G.-_pP__up.2L_s-o779._-k-5___Q: 3.csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.x
namespaces:
- "336"
topologyKey: "337"
- "339"
topologyKey: "340"
weight: -751455207
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -157,8 +157,8 @@ template:
matchLabels:
yk--59-63--4v.4-45e--7-5r-4-7--7-2---o--4-1-2s39--6---fv--m-8--72-bca4m54/Thg._o_p665O_4Gj._BXt.O-7___-Y_um-_8r--684._-_8: q-.VEa-_gn.8-c.C3_F._oX-F9_.5vN5.25aWx.2aM24
namespaces:
- "328"
topologyKey: "329"
- "331"
topologyKey: "332"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -171,8 +171,8 @@ template:
matchLabels:
acp6-5-x1---4/b8a_6_.0Q46: "6"
namespaces:
- "352"
topologyKey: "353"
- "355"
topologyKey: "356"
weight: -2081163116
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -184,118 +184,118 @@ template:
matchLabels:
5m8-1x129-9d8-s7-t7--336-11k8/A._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3: 8.3_t_-l..-.DG7r-3.----._4__Xn
namespaces:
- "344"
topologyKey: "345"
- "347"
topologyKey: "348"
automountServiceAccountToken: false
containers:
- args:
- "240"
- "241"
command:
- "239"
- "240"
env:
- name: "247"
value: "248"
- name: "248"
value: "249"
valueFrom:
configMapKeyRef:
key: "254"
name: "253"
key: "255"
name: "254"
optional: true
fieldRef:
apiVersion: "249"
fieldPath: "250"
apiVersion: "250"
fieldPath: "251"
resourceFieldRef:
containerName: "251"
containerName: "252"
divisor: "117"
resource: "252"
resource: "253"
secretKeyRef:
key: "256"
name: "255"
key: "257"
name: "256"
optional: false
envFrom:
- configMapRef:
name: "245"
optional: false
prefix: "244"
secretRef:
name: "246"
optional: false
prefix: "245"
secretRef:
name: "247"
optional: true
image: "238"
image: "239"
imagePullPolicy: ƻ悖ȩ0Ƹ[
lifecycle:
postStart:
exec:
command:
- "276"
- "277"
httpGet:
host: "279"
host: "280"
httpHeaders:
- name: "280"
value: "281"
path: "277"
port: "278"
- name: "281"
value: "282"
path: "278"
port: "279"
scheme: ó瓧嫭塓烀罁胾^拜Ȍzɟ踡
tcpSocket:
host: "283"
port: "282"
host: "284"
port: "283"
preStop:
exec:
command:
- "284"
- "285"
httpGet:
host: "286"
host: "287"
httpHeaders:
- name: "287"
value: "288"
path: "285"
- name: "288"
value: "289"
path: "286"
port: 1255169591
scheme: 褎weLJèux
tcpSocket:
host: "290"
port: "289"
host: "291"
port: "290"
livenessProbe:
exec:
command:
- "263"
- "264"
failureThreshold: -1273036797
httpGet:
host: "265"
host: "266"
httpHeaders:
- name: "266"
value: "267"
path: "264"
- name: "267"
value: "268"
path: "265"
port: 1923650413
scheme: I粛E煹ǐƲE'iþŹʣy
initialDelaySeconds: -1961863213
periodSeconds: -1045704964
successThreshold: 1089147958
tcpSocket:
host: "269"
port: "268"
host: "270"
port: "269"
timeoutSeconds: -103588794
name: "237"
name: "238"
ports:
- containerPort: 32378685
hostIP: "243"
hostIP: "244"
hostPort: -1872407654
name: "242"
name: "243"
protocol: ş蝿ɖȃ賲鐅臬
readinessProbe:
exec:
command:
- "270"
- "271"
failureThreshold: 192146389
httpGet:
host: "272"
host: "273"
httpHeaders:
- name: "273"
value: "274"
path: "271"
- name: "274"
value: "275"
path: "272"
port: 424236719
initialDelaySeconds: 1170649416
periodSeconds: -1891134534
successThreshold: -1710454086
tcpSocket:
host: "275"
host: "276"
port: -648954478
timeoutSeconds: 893619181
resources:
@ -317,44 +317,45 @@ template:
runAsNonRoot: false
runAsUser: 4138932295697017546
seLinuxOptions:
level: "295"
role: "293"
type: "294"
user: "292"
level: "296"
role: "294"
type: "295"
user: "293"
windowsOptions:
gmsaCredentialSpec: "297"
gmsaCredentialSpecName: "296"
terminationMessagePath: "291"
gmsaCredentialSpec: "298"
gmsaCredentialSpecName: "297"
runAsUserName: "299"
terminationMessagePath: "292"
terminationMessagePolicy: ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ
tty: true
volumeDevices:
- devicePath: "262"
name: "261"
- devicePath: "263"
name: "262"
volumeMounts:
- mountPath: "258"
- mountPath: "259"
mountPropagation: ǹ_Áȉ彂Ŵ廷s
name: "257"
subPath: "259"
subPathExpr: "260"
workingDir: "241"
name: "258"
subPath: "260"
subPathExpr: "261"
workingDir: "242"
dnsConfig:
nameservers:
- "360"
- "363"
options:
- name: "362"
value: "363"
- name: "365"
value: "366"
searches:
- "361"
- "364"
dnsPolicy: 幟ļ腻ŬƩȿ0矀Kʝ瘴I\p[ħs
enableServiceLinks: true
hostAliases:
- hostnames:
- "358"
ip: "357"
- "361"
ip: "360"
hostNetwork: true
hostname: "312"
hostname: "315"
imagePullSecrets:
- name: "311"
- name: "314"
initContainers:
- args:
- "179"
@ -493,6 +494,7 @@ template:
windowsOptions:
gmsaCredentialSpec: "236"
gmsaCredentialSpecName: "235"
runAsUserName: "237"
stdin: true
terminationMessagePath: "230"
terminationMessagePolicy: hoĂɋ
@ -508,48 +510,49 @@ template:
subPath: "198"
subPathExpr: "199"
workingDir: "180"
nodeName: "302"
nodeName: "304"
nodeSelector:
"298": "299"
"300": "301"
overhead:
gȇǙ: "432"
preemptionPolicy: üMɮ6).¸赂ʓ蔋 ǵq砯á
priority: -852112760
priorityClassName: "359"
priorityClassName: "362"
readinessGates:
- conditionType: ""
restartPolicy: î萨zvt莭
runtimeClassName: "364"
schedulerName: "354"
runtimeClassName: "367"
schedulerName: "357"
securityContext:
fsGroup: -5520854324860989043
runAsGroup: -3442119660495017037
runAsNonRoot: false
runAsUser: -5140536358502970101
seLinuxOptions:
level: "306"
role: "304"
type: "305"
user: "303"
level: "308"
role: "306"
type: "307"
user: "305"
supplementalGroups:
- 4006793330334483398
sysctls:
- name: "309"
value: "310"
- name: "312"
value: "313"
windowsOptions:
gmsaCredentialSpec: "308"
gmsaCredentialSpecName: "307"
serviceAccount: "301"
serviceAccountName: "300"
gmsaCredentialSpec: "310"
gmsaCredentialSpecName: "309"
runAsUserName: "311"
serviceAccount: "303"
serviceAccountName: "302"
shareProcessNamespace: false
subdomain: "313"
subdomain: "316"
terminationGracePeriodSeconds: 3655094543914315126
tolerations:
- effect: 群E牬庘颮6(|ǖûǭ
key: "355"
key: "358"
operator: ȜŚɇA%ɀ蓧睔SJȋ灋槊
tolerationSeconds: -288011219492438332
value: "356"
value: "359"
volumes:
- awsElasticBlockStore:
fsType: "76"

View File

@ -521,7 +521,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "188",
"gmsaCredentialSpec": "189"
"gmsaCredentialSpec": "189",
"runAsUserName": "190"
},
"runAsUser": -1492841452396704228,
"runAsGroup": 8400763836388347832,
@ -536,59 +537,59 @@
],
"containers": [
{
"name": "190",
"image": "191",
"name": "191",
"image": "192",
"command": [
"192"
],
"args": [
"193"
],
"workingDir": "194",
"args": [
"194"
],
"workingDir": "195",
"ports": [
{
"name": "195",
"name": "196",
"hostPort": -2068962521,
"containerPort": -155814081,
"protocol": "ɩÅ議Ǹ轺@)蓳嗘TʡȂ",
"hostIP": "196"
"hostIP": "197"
}
],
"envFrom": [
{
"prefix": "197",
"prefix": "198",
"configMapRef": {
"name": "198",
"name": "199",
"optional": true
},
"secretRef": {
"name": "199",
"name": "200",
"optional": true
}
}
],
"env": [
{
"name": "200",
"value": "201",
"name": "201",
"value": "202",
"valueFrom": {
"fieldRef": {
"apiVersion": "202",
"fieldPath": "203"
"apiVersion": "203",
"fieldPath": "204"
},
"resourceFieldRef": {
"containerName": "204",
"resource": "205",
"containerName": "205",
"resource": "206",
"divisor": "912"
},
"configMapKeyRef": {
"name": "206",
"key": "207",
"name": "207",
"key": "208",
"optional": false
},
"secretKeyRef": {
"name": "208",
"key": "209",
"name": "209",
"key": "210",
"optional": true
}
}
@ -604,40 +605,40 @@
},
"volumeMounts": [
{
"name": "210",
"mountPath": "211",
"subPath": "212",
"name": "211",
"mountPath": "212",
"subPath": "213",
"mountPropagation": "穠C]躢|)黰eȪ嵛4$%Qɰ",
"subPathExpr": "213"
"subPathExpr": "214"
}
],
"volumeDevices": [
{
"name": "214",
"devicePath": "215"
"name": "215",
"devicePath": "216"
}
],
"livenessProbe": {
"exec": {
"command": [
"216"
"217"
]
},
"httpGet": {
"path": "217",
"path": "218",
"port": 273818613,
"host": "218",
"host": "219",
"scheme": "æNǚ錯ƶRq",
"httpHeaders": [
{
"name": "219",
"value": "220"
"name": "220",
"value": "221"
}
]
},
"tcpSocket": {
"port": 811476979,
"host": "221"
"host": "222"
},
"initialDelaySeconds": -1896921306,
"timeoutSeconds": 715087892,
@ -648,24 +649,24 @@
"readinessProbe": {
"exec": {
"command": [
"222"
"223"
]
},
"httpGet": {
"path": "223",
"path": "224",
"port": 1035477124,
"host": "224",
"host": "225",
"scheme": "ǚrǜnh0åȂ",
"httpHeaders": [
{
"name": "225",
"value": "226"
"name": "226",
"value": "227"
}
]
},
"tcpSocket": {
"port": -1024794140,
"host": "227"
"host": "228"
},
"initialDelaySeconds": 1669671203,
"timeoutSeconds": 636617833,
@ -677,51 +678,51 @@
"postStart": {
"exec": {
"command": [
"228"
"229"
]
},
"httpGet": {
"path": "229",
"port": "230",
"host": "231",
"path": "230",
"port": "231",
"host": "232",
"scheme": "á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ",
"httpHeaders": [
{
"name": "232",
"value": "233"
"name": "233",
"value": "234"
}
]
},
"tcpSocket": {
"port": -1319491110,
"host": "234"
"host": "235"
}
},
"preStop": {
"exec": {
"command": [
"235"
"236"
]
},
"httpGet": {
"path": "236",
"port": "237",
"host": "238",
"path": "237",
"port": "238",
"host": "239",
"scheme": "T捘ɍi縱ù墴",
"httpHeaders": [
{
"name": "239",
"value": "240"
"name": "240",
"value": "241"
}
]
},
"tcpSocket": {
"port": -1766555420,
"host": "241"
"host": "242"
}
}
},
"terminationMessagePath": "242",
"terminationMessagePath": "243",
"terminationMessagePolicy": "贫d飼$俊跾|@?鷅bȻN",
"imagePullPolicy": "H炮掊°nʮ閼咎櫸eʔŊƞ究:ho",
"securityContext": {
@ -735,14 +736,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "243",
"role": "244",
"type": "245",
"level": "246"
"user": "244",
"role": "245",
"type": "246",
"level": "247"
},
"windowsOptions": {
"gmsaCredentialSpecName": "247",
"gmsaCredentialSpec": "248"
"gmsaCredentialSpecName": "248",
"gmsaCredentialSpec": "249",
"runAsUserName": "250"
},
"runAsUser": 1854486716537076238,
"runAsGroup": 6028937828108618026,
@ -759,25 +761,26 @@
"activeDeadlineSeconds": -794751067822744844,
"dnsPolicy": "鐅臬dH巧壚tC十Oɢǵʭd鲡:",
"nodeSelector": {
"249": "250"
"251": "252"
},
"serviceAccountName": "251",
"serviceAccount": "252",
"serviceAccountName": "253",
"serviceAccount": "254",
"automountServiceAccountToken": true,
"nodeName": "253",
"nodeName": "255",
"hostNetwork": true,
"hostIPC": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "254",
"role": "255",
"type": "256",
"level": "257"
"user": "256",
"role": "257",
"type": "258",
"level": "259"
},
"windowsOptions": {
"gmsaCredentialSpecName": "258",
"gmsaCredentialSpec": "259"
"gmsaCredentialSpecName": "260",
"gmsaCredentialSpec": "261",
"runAsUserName": "262"
},
"runAsUser": 5931396084150122130,
"runAsGroup": -8613233602682451586,
@ -788,18 +791,18 @@
"fsGroup": -593458796014416333,
"sysctls": [
{
"name": "260",
"value": "261"
"name": "263",
"value": "264"
}
]
},
"imagePullSecrets": [
{
"name": "262"
"name": "265"
}
],
"hostname": "263",
"subdomain": "264",
"hostname": "266",
"subdomain": "267",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -807,19 +810,19 @@
{
"matchExpressions": [
{
"key": "265",
"key": "268",
"operator": "軶ǃ*ʙ嫙\u0026蒒5靇",
"values": [
"266"
"269"
]
}
],
"matchFields": [
{
"key": "267",
"key": "270",
"operator": "Ŀǹ_Áȉ彂Ŵ",
"values": [
"268"
"271"
]
}
]
@ -832,19 +835,19 @@
"preference": {
"matchExpressions": [
{
"key": "269",
"key": "272",
"operator": "Ⱦdz@ùƸʋŀ",
"values": [
"270"
"273"
]
}
],
"matchFields": [
{
"key": "271",
"key": "274",
"operator": "ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ",
"values": [
"272"
"275"
]
}
]
@ -870,9 +873,9 @@
]
},
"namespaces": [
"279"
"282"
],
"topologyKey": "280"
"topologyKey": "283"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -894,9 +897,9 @@
]
},
"namespaces": [
"287"
"290"
],
"topologyKey": "288"
"topologyKey": "291"
}
}
]
@ -916,9 +919,9 @@
]
},
"namespaces": [
"295"
"298"
],
"topologyKey": "296"
"topologyKey": "299"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -940,45 +943,45 @@
]
},
"namespaces": [
"303"
"306"
],
"topologyKey": "304"
"topologyKey": "307"
}
}
]
}
},
"schedulerName": "305",
"schedulerName": "308",
"tolerations": [
{
"key": "306",
"key": "309",
"operator": "嵐;Ƭ婦",
"value": "307",
"value": "310",
"effect": "屏ɧeʫį淓¯Ą0",
"tolerationSeconds": -1598226175696024006
}
],
"hostAliases": [
{
"ip": "308",
"ip": "311",
"hostnames": [
"309"
"312"
]
}
],
"priorityClassName": "310",
"priorityClassName": "313",
"priority": 972025710,
"dnsConfig": {
"nameservers": [
"311"
"314"
],
"searches": [
"312"
"315"
],
"options": [
{
"name": "313",
"value": "314"
"name": "316",
"value": "317"
}
]
},
@ -987,7 +990,7 @@
"conditionType": "V曡88 u怞荊ù灹8緔Tj"
}
],
"runtimeClassName": "315",
"runtimeClassName": "318",
"enableServiceLinks": false,
"preemptionPolicy": "蓋Cȗä2 ɲ±m嵘厶sȰÖ",
"overhead": {
@ -1002,27 +1005,27 @@
"status": "裡_Ơ9o",
"lastProbeTime": "2816-01-28T10:00:13Z",
"lastTransitionTime": "2717-12-27T09:38:52Z",
"reason": "316",
"message": "317"
"reason": "319",
"message": "320"
}
],
"message": "318",
"reason": "319",
"nominatedNodeName": "320",
"hostIP": "321",
"podIP": "322",
"message": "321",
"reason": "322",
"nominatedNodeName": "323",
"hostIP": "324",
"podIP": "325",
"podIPs": [
{
"ip": "323"
"ip": "326"
}
],
"initContainerStatuses": [
{
"name": "324",
"name": "327",
"state": {
"waiting": {
"reason": "325",
"message": "326"
"reason": "328",
"message": "329"
},
"running": {
"startedAt": "2799-07-13T10:11:46Z"
@ -1030,17 +1033,17 @@
"terminated": {
"exitCode": 1973536810,
"signal": 875942769,
"reason": "327",
"message": "328",
"reason": "330",
"message": "331",
"startedAt": "2451-08-26T17:49:09Z",
"finishedAt": "2098-10-19T16:30:28Z",
"containerID": "329"
"containerID": "332"
}
},
"lastState": {
"waiting": {
"reason": "330",
"message": "331"
"reason": "333",
"message": "334"
},
"running": {
"startedAt": "2412-08-30T17:37:16Z"
@ -1048,27 +1051,27 @@
"terminated": {
"exitCode": -860155892,
"signal": 86808213,
"reason": "332",
"message": "333",
"reason": "335",
"message": "336",
"startedAt": "2686-06-26T03:49:23Z",
"finishedAt": "2279-05-16T20:52:59Z",
"containerID": "334"
"containerID": "337"
}
},
"ready": true,
"restartCount": -1203269993,
"image": "335",
"imageID": "336",
"containerID": "337"
"image": "338",
"imageID": "339",
"containerID": "340"
}
],
"containerStatuses": [
{
"name": "338",
"name": "341",
"state": {
"waiting": {
"reason": "339",
"message": "340"
"reason": "342",
"message": "343"
},
"running": {
"startedAt": "2246-03-17T17:36:19Z"
@ -1076,17 +1079,17 @@
"terminated": {
"exitCode": 354858537,
"signal": 1354397536,
"reason": "341",
"message": "342",
"reason": "344",
"message": "345",
"startedAt": "2607-01-10T14:15:06Z",
"finishedAt": "2311-06-21T09:16:38Z",
"containerID": "343"
"containerID": "346"
}
},
"lastState": {
"waiting": {
"reason": "344",
"message": "345"
"reason": "347",
"message": "348"
},
"running": {
"startedAt": "2968-08-22T09:48:32Z"
@ -1094,18 +1097,18 @@
"terminated": {
"exitCode": -1689270564,
"signal": -1851436166,
"reason": "346",
"message": "347",
"reason": "349",
"message": "350",
"startedAt": "2323-11-11T20:53:39Z",
"finishedAt": "2688-03-13T07:10:58Z",
"containerID": "348"
"containerID": "351"
}
},
"ready": false,
"restartCount": -211727758,
"image": "349",
"imageID": "350",
"containerID": "351"
"image": "352",
"imageID": "353",
"containerID": "354"
}
],
"qosClass": "轁ʦ婷ɂ"

View File

@ -38,28 +38,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "269"
- key: "272"
operator: Ⱦdz@ùƸʋŀ
values:
- "270"
- "273"
matchFields:
- key: "271"
- key: "274"
operator: ƲE'iþŹʣy豎@ɀ羭,铻OŤǢʭ
values:
- "272"
- "275"
weight: -1169420648
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "265"
- key: "268"
operator: 軶ǃ*ʙ嫙&蒒5靇
values:
- "266"
- "269"
matchFields:
- key: "267"
- key: "270"
operator: Ŀǹ_Áȉ彂Ŵ
values:
- "268"
- "271"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -72,8 +72,8 @@ spec:
matchLabels:
8O30-_u._-2hT.-z-._7-5lL..-_--V: a-_gn.8-c.C3_F._oX-F9_.5vN5.25aWx.2aM214_.-N_g-.._5
namespaces:
- "287"
topologyKey: "288"
- "290"
topologyKey: "291"
weight: 656200799
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -85,8 +85,8 @@ spec:
matchLabels:
X_VBC.Jn4f__.39X...-tO-.qff.ExZr: v6.-m..-_-.f9--Q3_Y.5.-..P_pDZ-._._t__2--A.0.__cd..lv-_aLQbI2z
namespaces:
- "279"
topologyKey: "280"
- "282"
topologyKey: "283"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -99,8 +99,8 @@ spec:
matchLabels:
sxu-3po4--3os1-5-ufkr-x0u-1meljf-526989g.ze0--1----v8-2/J.Ys_Mop34_-y.8_38xm-.nx.E: z--._4__XOnf_ZN.-_--r.E__-.8_e_l2.X
namespaces:
- "303"
topologyKey: "304"
- "306"
topologyKey: "307"
weight: -1276783194
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -110,119 +110,119 @@ spec:
matchLabels:
7o7799-skj5---r-q3c.2f7ef8jzv4-9-35o-1-5w5z3-d----0p---s-9----747o-x3k/4-P.yP9S--858LI__.8____rO-S-P_-..0: C9..__-6_k.N-2B_V.-tfh4.caTz_g
namespaces:
- "295"
topologyKey: "296"
- "298"
topologyKey: "299"
automountServiceAccountToken: true
containers:
- args:
- "193"
- "194"
command:
- "192"
- "193"
env:
- name: "200"
value: "201"
- name: "201"
value: "202"
valueFrom:
configMapKeyRef:
key: "207"
name: "206"
key: "208"
name: "207"
optional: false
fieldRef:
apiVersion: "202"
fieldPath: "203"
apiVersion: "203"
fieldPath: "204"
resourceFieldRef:
containerName: "204"
containerName: "205"
divisor: "912"
resource: "205"
resource: "206"
secretKeyRef:
key: "209"
name: "208"
key: "210"
name: "209"
optional: true
envFrom:
- configMapRef:
name: "198"
optional: true
prefix: "197"
secretRef:
name: "199"
optional: true
image: "191"
prefix: "198"
secretRef:
name: "200"
optional: true
image: "192"
imagePullPolicy: H炮掊°nʮ閼咎櫸eʔŊƞ究:ho
lifecycle:
postStart:
exec:
command:
- "228"
- "229"
httpGet:
host: "231"
host: "232"
httpHeaders:
- name: "232"
value: "233"
path: "229"
port: "230"
- name: "233"
value: "234"
path: "230"
port: "231"
scheme: á腿ħ缶.蒅!a坩O`涁İ而踪鄌eÞ
tcpSocket:
host: "234"
host: "235"
port: -1319491110
preStop:
exec:
command:
- "235"
- "236"
httpGet:
host: "238"
host: "239"
httpHeaders:
- name: "239"
value: "240"
path: "236"
port: "237"
- name: "240"
value: "241"
path: "237"
port: "238"
scheme: T捘ɍi縱ù墴
tcpSocket:
host: "241"
host: "242"
port: -1766555420
livenessProbe:
exec:
command:
- "216"
- "217"
failureThreshold: 1850174529
httpGet:
host: "218"
host: "219"
httpHeaders:
- name: "219"
value: "220"
path: "217"
- name: "220"
value: "221"
path: "218"
port: 273818613
scheme: æNǚ錯ƶRq
initialDelaySeconds: -1896921306
periodSeconds: 2032557749
successThreshold: -1893103047
tcpSocket:
host: "221"
host: "222"
port: 811476979
timeoutSeconds: 715087892
name: "190"
name: "191"
ports:
- containerPort: -155814081
hostIP: "196"
hostIP: "197"
hostPort: -2068962521
name: "195"
name: "196"
protocol: ɩÅ議Ǹ轺@)蓳嗘TʡȂ
readinessProbe:
exec:
command:
- "222"
- "223"
failureThreshold: -172061933
httpGet:
host: "224"
host: "225"
httpHeaders:
- name: "225"
value: "226"
path: "223"
- name: "226"
value: "227"
path: "224"
port: 1035477124
scheme: ǚrǜnh0åȂ
initialDelaySeconds: 1669671203
periodSeconds: -2026931030
successThreshold: -1843754483
tcpSocket:
host: "227"
host: "228"
port: -1024794140
timeoutSeconds: 636617833
resources:
@ -244,45 +244,46 @@ spec:
runAsNonRoot: false
runAsUser: 1854486716537076238
seLinuxOptions:
level: "246"
role: "244"
type: "245"
user: "243"
level: "247"
role: "245"
type: "246"
user: "244"
windowsOptions:
gmsaCredentialSpec: "248"
gmsaCredentialSpecName: "247"
gmsaCredentialSpec: "249"
gmsaCredentialSpecName: "248"
runAsUserName: "250"
stdin: true
terminationMessagePath: "242"
terminationMessagePath: "243"
terminationMessagePolicy: 贫d飼$俊跾|@?鷅bȻN
volumeDevices:
- devicePath: "215"
name: "214"
- devicePath: "216"
name: "215"
volumeMounts:
- mountPath: "211"
- mountPath: "212"
mountPropagation: 穠C]躢|)黰eȪ嵛4$%Qɰ
name: "210"
subPath: "212"
subPathExpr: "213"
workingDir: "194"
name: "211"
subPath: "213"
subPathExpr: "214"
workingDir: "195"
dnsConfig:
nameservers:
- "311"
- "314"
options:
- name: "313"
value: "314"
- name: "316"
value: "317"
searches:
- "312"
- "315"
dnsPolicy: '鐅臬dH巧壚tC十Oɢǵʭd鲡:'
enableServiceLinks: false
hostAliases:
- hostnames:
- "309"
ip: "308"
- "312"
ip: "311"
hostIPC: true
hostNetwork: true
hostname: "263"
hostname: "266"
imagePullSecrets:
- name: "262"
- name: "265"
initContainers:
- args:
- "132"
@ -421,6 +422,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "189"
gmsaCredentialSpecName: "188"
runAsUserName: "190"
stdin: true
stdinOnce: true
terminationMessagePath: "183"
@ -435,48 +437,49 @@ spec:
subPath: "151"
subPathExpr: "152"
workingDir: "133"
nodeName: "253"
nodeName: "255"
nodeSelector:
"249": "250"
"251": "252"
overhead:
ÆɰŞ襵: "387"
preemptionPolicy: 蓋Cȗä2 ɲ±m嵘厶sȰÖ
priority: 972025710
priorityClassName: "310"
priorityClassName: "313"
readinessGates:
- conditionType: V曡88 u怞荊ù灹8緔Tj
restartPolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ
runtimeClassName: "315"
schedulerName: "305"
runtimeClassName: "318"
schedulerName: "308"
securityContext:
fsGroup: -593458796014416333
runAsGroup: -8613233602682451586
runAsNonRoot: true
runAsUser: 5931396084150122130
seLinuxOptions:
level: "257"
role: "255"
type: "256"
user: "254"
level: "259"
role: "257"
type: "258"
user: "256"
supplementalGroups:
- 4875570291212151521
sysctls:
- name: "260"
value: "261"
- name: "263"
value: "264"
windowsOptions:
gmsaCredentialSpec: "259"
gmsaCredentialSpecName: "258"
serviceAccount: "252"
serviceAccountName: "251"
gmsaCredentialSpec: "261"
gmsaCredentialSpecName: "260"
runAsUserName: "262"
serviceAccount: "254"
serviceAccountName: "253"
shareProcessNamespace: false
subdomain: "264"
subdomain: "267"
terminationGracePeriodSeconds: -7405213391132590787
tolerations:
- effect: 屏ɧeʫį淓¯Ą0
key: "306"
key: "309"
operator: 嵐;Ƭ婦
tolerationSeconds: -1598226175696024006
value: "307"
value: "310"
volumes:
- awsElasticBlockStore:
fsType: "29"
@ -678,86 +681,86 @@ status:
conditions:
- lastProbeTime: "2816-01-28T10:00:13Z"
lastTransitionTime: "2717-12-27T09:38:52Z"
message: "317"
reason: "316"
message: "320"
reason: "319"
status: 裡_Ơ9o
type: ƨɤ血x柱栦阫Ƈʥ椹
containerStatuses:
- containerID: "351"
image: "349"
imageID: "350"
- containerID: "354"
image: "352"
imageID: "353"
lastState:
running:
startedAt: "2968-08-22T09:48:32Z"
terminated:
containerID: "348"
containerID: "351"
exitCode: -1689270564
finishedAt: "2688-03-13T07:10:58Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
signal: -1851436166
startedAt: "2323-11-11T20:53:39Z"
waiting:
message: "345"
reason: "344"
name: "338"
message: "348"
reason: "347"
name: "341"
ready: false
restartCount: -211727758
state:
running:
startedAt: "2246-03-17T17:36:19Z"
terminated:
containerID: "343"
containerID: "346"
exitCode: 354858537
finishedAt: "2311-06-21T09:16:38Z"
message: "342"
reason: "341"
message: "345"
reason: "344"
signal: 1354397536
startedAt: "2607-01-10T14:15:06Z"
waiting:
message: "340"
reason: "339"
hostIP: "321"
message: "343"
reason: "342"
hostIP: "324"
initContainerStatuses:
- containerID: "337"
image: "335"
imageID: "336"
- containerID: "340"
image: "338"
imageID: "339"
lastState:
running:
startedAt: "2412-08-30T17:37:16Z"
terminated:
containerID: "334"
containerID: "337"
exitCode: -860155892
finishedAt: "2279-05-16T20:52:59Z"
message: "333"
reason: "332"
message: "336"
reason: "335"
signal: 86808213
startedAt: "2686-06-26T03:49:23Z"
waiting:
message: "331"
reason: "330"
name: "324"
message: "334"
reason: "333"
name: "327"
ready: true
restartCount: -1203269993
state:
running:
startedAt: "2799-07-13T10:11:46Z"
terminated:
containerID: "329"
containerID: "332"
exitCode: 1973536810
finishedAt: "2098-10-19T16:30:28Z"
message: "328"
reason: "327"
message: "331"
reason: "330"
signal: 875942769
startedAt: "2451-08-26T17:49:09Z"
waiting:
message: "326"
reason: "325"
message: "318"
nominatedNodeName: "320"
message: "329"
reason: "328"
message: "321"
nominatedNodeName: "323"
phase: úʥ
podIP: "322"
podIP: "325"
podIPs:
- ip: "323"
- ip: "326"
qosClass: 轁ʦ婷ɂ
reason: "319"
reason: "322"

View File

@ -564,7 +564,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "209",
"gmsaCredentialSpec": "210"
"gmsaCredentialSpec": "210",
"runAsUserName": "211"
},
"runAsUser": 8685765401091182865,
"runAsGroup": -4139900758039117471,
@ -578,59 +579,59 @@
],
"containers": [
{
"name": "211",
"image": "212",
"name": "212",
"image": "213",
"command": [
"213"
],
"args": [
"214"
],
"workingDir": "215",
"args": [
"215"
],
"workingDir": "216",
"ports": [
{
"name": "216",
"name": "217",
"hostPort": -239302370,
"containerPort": -1215463021,
"protocol": "ăȲϤĦʅ芝",
"hostIP": "217"
"hostIP": "218"
}
],
"envFrom": [
{
"prefix": "218",
"prefix": "219",
"configMapRef": {
"name": "219",
"name": "220",
"optional": false
},
"secretRef": {
"name": "220",
"name": "221",
"optional": true
}
}
],
"env": [
{
"name": "221",
"value": "222",
"name": "222",
"value": "223",
"valueFrom": {
"fieldRef": {
"apiVersion": "223",
"fieldPath": "224"
"apiVersion": "224",
"fieldPath": "225"
},
"resourceFieldRef": {
"containerName": "225",
"resource": "226",
"containerName": "226",
"resource": "227",
"divisor": "706"
},
"configMapKeyRef": {
"name": "227",
"key": "228",
"name": "228",
"key": "229",
"optional": false
},
"secretKeyRef": {
"name": "229",
"key": "230",
"name": "230",
"key": "231",
"optional": false
}
}
@ -646,41 +647,41 @@
},
"volumeMounts": [
{
"name": "231",
"name": "232",
"readOnly": true,
"mountPath": "232",
"subPath": "233",
"mountPath": "233",
"subPath": "234",
"mountPropagation": "ȫşŇɜa",
"subPathExpr": "234"
"subPathExpr": "235"
}
],
"volumeDevices": [
{
"name": "235",
"devicePath": "236"
"name": "236",
"devicePath": "237"
}
],
"livenessProbe": {
"exec": {
"command": [
"237"
"238"
]
},
"httpGet": {
"path": "238",
"port": "239",
"host": "240",
"path": "239",
"port": "240",
"host": "241",
"scheme": "抴ŨfZhUʎ浵ɲõ",
"httpHeaders": [
{
"name": "241",
"value": "242"
"name": "242",
"value": "243"
}
]
},
"tcpSocket": {
"port": -1980941277,
"host": "243"
"host": "244"
},
"initialDelaySeconds": -124607411,
"timeoutSeconds": -1967211777,
@ -691,24 +692,24 @@
"readinessProbe": {
"exec": {
"command": [
"244"
"245"
]
},
"httpGet": {
"path": "245",
"port": "246",
"host": "247",
"path": "246",
"port": "247",
"host": "248",
"scheme": "A徙ɶɊł/擇ɦĽ胚",
"httpHeaders": [
{
"name": "248",
"value": "249"
"name": "249",
"value": "250"
}
]
},
"tcpSocket": {
"port": -1502363275,
"host": "250"
"host": "251"
},
"initialDelaySeconds": -1950133943,
"timeoutSeconds": -65465189,
@ -720,51 +721,51 @@
"postStart": {
"exec": {
"command": [
"251"
"252"
]
},
"httpGet": {
"path": "252",
"port": "253",
"host": "254",
"path": "253",
"port": "254",
"host": "255",
"scheme": "Hǝ呮}臷Ľð»",
"httpHeaders": [
{
"name": "255",
"value": "256"
"name": "256",
"value": "257"
}
]
},
"tcpSocket": {
"port": "257",
"host": "258"
"port": "258",
"host": "259"
}
},
"preStop": {
"exec": {
"command": [
"259"
"260"
]
},
"httpGet": {
"path": "260",
"port": "261",
"host": "262",
"path": "261",
"port": "262",
"host": "263",
"scheme": "鄌eÞȦY籎顒",
"httpHeaders": [
{
"name": "263",
"value": "264"
"name": "264",
"value": "265"
}
]
},
"tcpSocket": {
"port": "265",
"host": "266"
"port": "266",
"host": "267"
}
}
},
"terminationMessagePath": "267",
"terminationMessagePath": "268",
"terminationMessagePolicy": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_",
"imagePullPolicy": "?鷅bȻN",
"securityContext": {
@ -778,14 +779,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "268",
"role": "269",
"type": "270",
"level": "271"
"user": "269",
"role": "270",
"type": "271",
"level": "272"
},
"windowsOptions": {
"gmsaCredentialSpecName": "272",
"gmsaCredentialSpec": "273"
"gmsaCredentialSpecName": "273",
"gmsaCredentialSpec": "274",
"runAsUserName": "275"
},
"runAsUser": 2498881510781298156,
"runAsGroup": 1396880349510758210,
@ -801,24 +803,25 @@
"terminationGracePeriodSeconds": 6132275361857491866,
"activeDeadlineSeconds": 139065396842667255,
"nodeSelector": {
"274": "275"
"276": "277"
},
"serviceAccountName": "276",
"serviceAccount": "277",
"serviceAccountName": "278",
"serviceAccount": "279",
"automountServiceAccountToken": true,
"nodeName": "278",
"nodeName": "280",
"hostNetwork": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "279",
"role": "280",
"type": "281",
"level": "282"
"user": "281",
"role": "282",
"type": "283",
"level": "284"
},
"windowsOptions": {
"gmsaCredentialSpecName": "283",
"gmsaCredentialSpec": "284"
"gmsaCredentialSpecName": "285",
"gmsaCredentialSpec": "286",
"runAsUserName": "287"
},
"runAsUser": -6995201567186416273,
"runAsGroup": -7736954297113301184,
@ -829,18 +832,18 @@
"fsGroup": 2404245025847758433,
"sysctls": [
{
"name": "285",
"value": "286"
"name": "288",
"value": "289"
}
]
},
"imagePullSecrets": [
{
"name": "287"
"name": "290"
}
],
"hostname": "288",
"subdomain": "289",
"hostname": "291",
"subdomain": "292",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -848,19 +851,19 @@
{
"matchExpressions": [
{
"key": "290",
"key": "293",
"operator": "ʭd鲡:贅wE@Ȗs«öʮĀ\u003cé瞾ʀN",
"values": [
"291"
"294"
]
}
],
"matchFields": [
{
"key": "292",
"key": "295",
"operator": "軶ǃ*ʙ嫙\u0026蒒5靇",
"values": [
"293"
"296"
]
}
]
@ -873,19 +876,19 @@
"preference": {
"matchExpressions": [
{
"key": "294",
"key": "297",
"operator": "K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ",
"values": [
"295"
"298"
]
}
],
"matchFields": [
{
"key": "296",
"key": "299",
"operator": "7¤7djƯĖ漘Z剚敍0)鈼¬麄p呝T",
"values": [
"297"
"300"
]
}
]
@ -911,9 +914,9 @@
]
},
"namespaces": [
"304"
"307"
],
"topologyKey": "305"
"topologyKey": "308"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -932,9 +935,9 @@
]
},
"namespaces": [
"312"
"315"
],
"topologyKey": "313"
"topologyKey": "316"
}
}
]
@ -957,9 +960,9 @@
]
},
"namespaces": [
"320"
"323"
],
"topologyKey": "321"
"topologyKey": "324"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -978,45 +981,45 @@
]
},
"namespaces": [
"328"
"331"
],
"topologyKey": "329"
"topologyKey": "332"
}
}
]
}
},
"schedulerName": "330",
"schedulerName": "333",
"tolerations": [
{
"key": "331",
"key": "334",
"operator": "ŜŲ\u0026洪y儕lmò",
"value": "332",
"value": "335",
"effect": "?¶ȲƪE1º轪d覉;Ĕ颪œ]洈愥",
"tolerationSeconds": -2713809069228546579
}
],
"hostAliases": [
{
"ip": "333",
"ip": "336",
"hostnames": [
"334"
"337"
]
}
],
"priorityClassName": "335",
"priorityClassName": "338",
"priority": -2137775067,
"dnsConfig": {
"nameservers": [
"336"
"339"
],
"searches": [
"337"
"340"
],
"options": [
{
"name": "338",
"value": "339"
"name": "341",
"value": "342"
}
]
},
@ -1025,7 +1028,7 @@
"conditionType": "|gɳ礬.b屏ɧeʫį淓¯Ą0"
}
],
"runtimeClassName": "340",
"runtimeClassName": "343",
"enableServiceLinks": false,
"preemptionPolicy": "z委\u003e,趐V曡88 ",
"overhead": {

View File

@ -70,28 +70,28 @@ template:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "294"
- key: "297"
operator: K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ
values:
- "295"
- "298"
matchFields:
- key: "296"
- key: "299"
operator: 7¤7djƯĖ漘Z剚敍0)鈼¬麄p呝T
values:
- "297"
- "300"
weight: 279808574
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "290"
- key: "293"
operator: ʭd鲡:贅wE@Ȗs«öʮĀ<é瞾ʀN
values:
- "291"
- "294"
matchFields:
- key: "292"
- key: "295"
operator: 軶ǃ*ʙ嫙&蒒5靇
values:
- "293"
- "296"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -102,8 +102,8 @@ template:
matchLabels:
5l-59g-qy5--ar-gn58nc2-3--6-o-h-9-15v-5925a-x12a-214-3sc/M.JP_oA_4A.J2s3.XL6_EU--AH-Q.GM7B: N-_-vv-Q2qz.W..4....-h._.GgT7_7B_D-..-.k4uz
namespaces:
- "312"
topologyKey: "313"
- "315"
topologyKey: "316"
weight: -1532958330
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -116,8 +116,8 @@ template:
? 39-295at-o7qff7-x--r7v66bm71u-n4f9wk-3--652x01--p--n4-4-l.onh-9289---x-p-qpt6-1w-3205c1lxeqyn-5--9d5a3-7bf46g-40883176jte/Pi.-_-a-G
: g.8_r_N-.3n-x.-_-_-Nm-_X31
namespaces:
- "304"
topologyKey: "305"
- "307"
topologyKey: "308"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -128,8 +128,8 @@ template:
matchLabels:
4--3os1-5-ufkr-x0u-1meljf-5269893-t-l/34_-y.8_38xm-.nx.sEK4.B.B: V.Z__Lv8_.O_..8n.--z_-..W
namespaces:
- "328"
topologyKey: "329"
- "331"
topologyKey: "332"
weight: 789384689
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -141,119 +141,119 @@ template:
matchLabels:
8747ox.x-r-927--6/79._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-3: 4-Tm._G
namespaces:
- "320"
topologyKey: "321"
- "323"
topologyKey: "324"
automountServiceAccountToken: true
containers:
- args:
- "214"
- "215"
command:
- "213"
- "214"
env:
- name: "221"
value: "222"
- name: "222"
value: "223"
valueFrom:
configMapKeyRef:
key: "228"
name: "227"
key: "229"
name: "228"
optional: false
fieldRef:
apiVersion: "223"
fieldPath: "224"
apiVersion: "224"
fieldPath: "225"
resourceFieldRef:
containerName: "225"
containerName: "226"
divisor: "706"
resource: "226"
resource: "227"
secretKeyRef:
key: "230"
name: "229"
key: "231"
name: "230"
optional: false
envFrom:
- configMapRef:
name: "219"
optional: false
prefix: "218"
secretRef:
name: "220"
optional: false
prefix: "219"
secretRef:
name: "221"
optional: true
image: "212"
image: "213"
imagePullPolicy: ?鷅bȻN
lifecycle:
postStart:
exec:
command:
- "251"
- "252"
httpGet:
host: "254"
host: "255"
httpHeaders:
- name: "255"
value: "256"
path: "252"
port: "253"
- name: "256"
value: "257"
path: "253"
port: "254"
scheme: Hǝ呮}臷Ľð»
tcpSocket:
host: "258"
port: "257"
host: "259"
port: "258"
preStop:
exec:
command:
- "259"
- "260"
httpGet:
host: "262"
host: "263"
httpHeaders:
- name: "263"
value: "264"
path: "260"
port: "261"
- name: "264"
value: "265"
path: "261"
port: "262"
scheme: 鄌eÞȦY籎顒
tcpSocket:
host: "266"
port: "265"
host: "267"
port: "266"
livenessProbe:
exec:
command:
- "237"
- "238"
failureThreshold: 1499244521
httpGet:
host: "240"
host: "241"
httpHeaders:
- name: "241"
value: "242"
path: "238"
port: "239"
- name: "242"
value: "243"
path: "239"
port: "240"
scheme: 抴ŨfZhUʎ浵ɲõ
initialDelaySeconds: -124607411
periodSeconds: -2138399859
successThreshold: 943356038
tcpSocket:
host: "243"
host: "244"
port: -1980941277
timeoutSeconds: -1967211777
name: "211"
name: "212"
ports:
- containerPort: -1215463021
hostIP: "217"
hostIP: "218"
hostPort: -239302370
name: "216"
name: "217"
protocol: ăȲϤĦʅ芝
readinessProbe:
exec:
command:
- "244"
- "245"
failureThreshold: 2064656704
httpGet:
host: "247"
host: "248"
httpHeaders:
- name: "248"
value: "249"
path: "245"
port: "246"
- name: "249"
value: "250"
path: "246"
port: "247"
scheme: A徙ɶɊł/擇ɦĽ胚
initialDelaySeconds: -1950133943
periodSeconds: 1836896522
successThreshold: -2101285839
tcpSocket:
host: "250"
host: "251"
port: -1502363275
timeoutSeconds: -65465189
resources:
@ -275,44 +275,45 @@ template:
runAsNonRoot: false
runAsUser: 2498881510781298156
seLinuxOptions:
level: "271"
role: "269"
type: "270"
user: "268"
level: "272"
role: "270"
type: "271"
user: "269"
windowsOptions:
gmsaCredentialSpec: "273"
gmsaCredentialSpecName: "272"
gmsaCredentialSpec: "274"
gmsaCredentialSpecName: "273"
runAsUserName: "275"
stdinOnce: true
terminationMessagePath: "267"
terminationMessagePath: "268"
terminationMessagePolicy: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_
volumeDevices:
- devicePath: "236"
name: "235"
- devicePath: "237"
name: "236"
volumeMounts:
- mountPath: "232"
- mountPath: "233"
mountPropagation: ȫşŇɜa
name: "231"
name: "232"
readOnly: true
subPath: "233"
subPathExpr: "234"
workingDir: "215"
subPath: "234"
subPathExpr: "235"
workingDir: "216"
dnsConfig:
nameservers:
- "336"
- "339"
options:
- name: "338"
value: "339"
- name: "341"
value: "342"
searches:
- "337"
- "340"
enableServiceLinks: false
hostAliases:
- hostnames:
- "334"
ip: "333"
- "337"
ip: "336"
hostNetwork: true
hostname: "288"
hostname: "291"
imagePullSecrets:
- name: "287"
- name: "290"
initContainers:
- args:
- "153"
@ -450,6 +451,7 @@ template:
windowsOptions:
gmsaCredentialSpec: "210"
gmsaCredentialSpecName: "209"
runAsUserName: "211"
terminationMessagePath: "204"
terminationMessagePolicy: ů湙騘&
tty: true
@ -463,48 +465,49 @@ template:
subPath: "172"
subPathExpr: "173"
workingDir: "154"
nodeName: "278"
nodeName: "280"
nodeSelector:
"274": "275"
"276": "277"
overhead:
怞荊ù灹8緔Tj: "134"
preemptionPolicy: 'z委>,趐V曡88 '
priority: -2137775067
priorityClassName: "335"
priorityClassName: "338"
readinessGates:
- conditionType: '|gɳ礬.b屏ɧeʫį淓¯Ą0'
restartPolicy: 5w垁鷌辪虽U珝Żwʮ馜üNșƶ
runtimeClassName: "340"
schedulerName: "330"
runtimeClassName: "343"
schedulerName: "333"
securityContext:
fsGroup: 2404245025847758433
runAsGroup: -7736954297113301184
runAsNonRoot: true
runAsUser: -6995201567186416273
seLinuxOptions:
level: "282"
role: "280"
type: "281"
user: "279"
level: "284"
role: "282"
type: "283"
user: "281"
supplementalGroups:
- -2242514391033939790
sysctls:
- name: "285"
value: "286"
- name: "288"
value: "289"
windowsOptions:
gmsaCredentialSpec: "284"
gmsaCredentialSpecName: "283"
serviceAccount: "277"
serviceAccountName: "276"
gmsaCredentialSpec: "286"
gmsaCredentialSpecName: "285"
runAsUserName: "287"
serviceAccount: "279"
serviceAccountName: "278"
shareProcessNamespace: false
subdomain: "289"
subdomain: "292"
terminationGracePeriodSeconds: 6132275361857491866
tolerations:
- effect: ?¶ȲƪE1º轪d覉;Ĕ颪œ]洈愥
key: "331"
key: "334"
operator: ŜŲ&洪y儕lmò
tolerationSeconds: -2713809069228546579
value: "332"
value: "335"
volumes:
- awsElasticBlockStore:
fsType: "50"

View File

@ -569,7 +569,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "210",
"gmsaCredentialSpec": "211"
"gmsaCredentialSpec": "211",
"runAsUserName": "212"
},
"runAsUser": 8685765401091182865,
"runAsGroup": -4139900758039117471,
@ -583,59 +584,59 @@
],
"containers": [
{
"name": "212",
"image": "213",
"name": "213",
"image": "214",
"command": [
"214"
],
"args": [
"215"
],
"workingDir": "216",
"args": [
"216"
],
"workingDir": "217",
"ports": [
{
"name": "217",
"name": "218",
"hostPort": -239302370,
"containerPort": -1215463021,
"protocol": "ăȲϤĦʅ芝",
"hostIP": "218"
"hostIP": "219"
}
],
"envFrom": [
{
"prefix": "219",
"prefix": "220",
"configMapRef": {
"name": "220",
"name": "221",
"optional": false
},
"secretRef": {
"name": "221",
"name": "222",
"optional": true
}
}
],
"env": [
{
"name": "222",
"value": "223",
"name": "223",
"value": "224",
"valueFrom": {
"fieldRef": {
"apiVersion": "224",
"fieldPath": "225"
"apiVersion": "225",
"fieldPath": "226"
},
"resourceFieldRef": {
"containerName": "226",
"resource": "227",
"containerName": "227",
"resource": "228",
"divisor": "706"
},
"configMapKeyRef": {
"name": "228",
"key": "229",
"name": "229",
"key": "230",
"optional": false
},
"secretKeyRef": {
"name": "230",
"key": "231",
"name": "231",
"key": "232",
"optional": false
}
}
@ -651,41 +652,41 @@
},
"volumeMounts": [
{
"name": "232",
"name": "233",
"readOnly": true,
"mountPath": "233",
"subPath": "234",
"mountPath": "234",
"subPath": "235",
"mountPropagation": "ȫşŇɜa",
"subPathExpr": "235"
"subPathExpr": "236"
}
],
"volumeDevices": [
{
"name": "236",
"devicePath": "237"
"name": "237",
"devicePath": "238"
}
],
"livenessProbe": {
"exec": {
"command": [
"238"
"239"
]
},
"httpGet": {
"path": "239",
"port": "240",
"host": "241",
"path": "240",
"port": "241",
"host": "242",
"scheme": "抴ŨfZhUʎ浵ɲõ",
"httpHeaders": [
{
"name": "242",
"value": "243"
"name": "243",
"value": "244"
}
]
},
"tcpSocket": {
"port": -1980941277,
"host": "244"
"host": "245"
},
"initialDelaySeconds": -124607411,
"timeoutSeconds": -1967211777,
@ -696,24 +697,24 @@
"readinessProbe": {
"exec": {
"command": [
"245"
"246"
]
},
"httpGet": {
"path": "246",
"port": "247",
"host": "248",
"path": "247",
"port": "248",
"host": "249",
"scheme": "A徙ɶɊł/擇ɦĽ胚",
"httpHeaders": [
{
"name": "249",
"value": "250"
"name": "250",
"value": "251"
}
]
},
"tcpSocket": {
"port": -1502363275,
"host": "251"
"host": "252"
},
"initialDelaySeconds": -1950133943,
"timeoutSeconds": -65465189,
@ -725,51 +726,51 @@
"postStart": {
"exec": {
"command": [
"252"
"253"
]
},
"httpGet": {
"path": "253",
"port": "254",
"host": "255",
"path": "254",
"port": "255",
"host": "256",
"scheme": "Hǝ呮}臷Ľð»",
"httpHeaders": [
{
"name": "256",
"value": "257"
"name": "257",
"value": "258"
}
]
},
"tcpSocket": {
"port": "258",
"host": "259"
"port": "259",
"host": "260"
}
},
"preStop": {
"exec": {
"command": [
"260"
"261"
]
},
"httpGet": {
"path": "261",
"port": "262",
"host": "263",
"path": "262",
"port": "263",
"host": "264",
"scheme": "鄌eÞȦY籎顒",
"httpHeaders": [
{
"name": "264",
"value": "265"
"name": "265",
"value": "266"
}
]
},
"tcpSocket": {
"port": "266",
"host": "267"
"port": "267",
"host": "268"
}
}
},
"terminationMessagePath": "268",
"terminationMessagePath": "269",
"terminationMessagePolicy": "唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_",
"imagePullPolicy": "?鷅bȻN",
"securityContext": {
@ -783,14 +784,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "269",
"role": "270",
"type": "271",
"level": "272"
"user": "270",
"role": "271",
"type": "272",
"level": "273"
},
"windowsOptions": {
"gmsaCredentialSpecName": "273",
"gmsaCredentialSpec": "274"
"gmsaCredentialSpecName": "274",
"gmsaCredentialSpec": "275",
"runAsUserName": "276"
},
"runAsUser": 2498881510781298156,
"runAsGroup": 1396880349510758210,
@ -806,24 +808,25 @@
"terminationGracePeriodSeconds": 6132275361857491866,
"activeDeadlineSeconds": 139065396842667255,
"nodeSelector": {
"275": "276"
"277": "278"
},
"serviceAccountName": "277",
"serviceAccount": "278",
"serviceAccountName": "279",
"serviceAccount": "280",
"automountServiceAccountToken": true,
"nodeName": "279",
"nodeName": "281",
"hostNetwork": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
"user": "280",
"role": "281",
"type": "282",
"level": "283"
"user": "282",
"role": "283",
"type": "284",
"level": "285"
},
"windowsOptions": {
"gmsaCredentialSpecName": "284",
"gmsaCredentialSpec": "285"
"gmsaCredentialSpecName": "286",
"gmsaCredentialSpec": "287",
"runAsUserName": "288"
},
"runAsUser": -6995201567186416273,
"runAsGroup": -7736954297113301184,
@ -834,18 +837,18 @@
"fsGroup": 2404245025847758433,
"sysctls": [
{
"name": "286",
"value": "287"
"name": "289",
"value": "290"
}
]
},
"imagePullSecrets": [
{
"name": "288"
"name": "291"
}
],
"hostname": "289",
"subdomain": "290",
"hostname": "292",
"subdomain": "293",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -853,19 +856,19 @@
{
"matchExpressions": [
{
"key": "291",
"key": "294",
"operator": "ʭd鲡:贅wE@Ȗs«öʮĀ\u003cé瞾ʀN",
"values": [
"292"
"295"
]
}
],
"matchFields": [
{
"key": "293",
"key": "296",
"operator": "軶ǃ*ʙ嫙\u0026蒒5靇",
"values": [
"294"
"297"
]
}
]
@ -878,19 +881,19 @@
"preference": {
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "7¤7djƯĖ漘Z剚敍0)鈼¬麄p呝T",
"values": [
"298"
"301"
]
}
]
@ -916,9 +919,9 @@
]
},
"namespaces": [
"305"
"308"
],
"topologyKey": "306"
"topologyKey": "309"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -937,9 +940,9 @@
]
},
"namespaces": [
"313"
"316"
],
"topologyKey": "314"
"topologyKey": "317"
}
}
]
@ -962,9 +965,9 @@
]
},
"namespaces": [
"321"
"324"
],
"topologyKey": "322"
"topologyKey": "325"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -983,45 +986,45 @@
]
},
"namespaces": [
"329"
"332"
],
"topologyKey": "330"
"topologyKey": "333"
}
}
]
}
},
"schedulerName": "331",
"schedulerName": "334",
"tolerations": [
{
"key": "332",
"key": "335",
"operator": "ŜŲ\u0026洪y儕lmò",
"value": "333",
"value": "336",
"effect": "?¶ȲƪE1º轪d覉;Ĕ颪œ]洈愥",
"tolerationSeconds": -2713809069228546579
}
],
"hostAliases": [
{
"ip": "334",
"ip": "337",
"hostnames": [
"335"
"338"
]
}
],
"priorityClassName": "336",
"priorityClassName": "339",
"priority": -2137775067,
"dnsConfig": {
"nameservers": [
"337"
"340"
],
"searches": [
"338"
"341"
],
"options": [
{
"name": "339",
"value": "340"
"name": "342",
"value": "343"
}
]
},
@ -1030,7 +1033,7 @@
"conditionType": "|gɳ礬.b屏ɧeʫį淓¯Ą0"
}
],
"runtimeClassName": "341",
"runtimeClassName": "344",
"enableServiceLinks": false,
"preemptionPolicy": "z委\u003e,趐V曡88 ",
"overhead": {
@ -1050,8 +1053,8 @@
"type": "ȩ愉B",
"status": "m嵘厶sȰÖ埡ÆɰŞ襵樞",
"lastTransitionTime": "2180-08-01T11:51:16Z",
"reason": "342",
"message": "343"
"reason": "345",
"message": "346"
}
]
}

View File

@ -74,28 +74,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "295"
- key: "298"
operator: K.Q貇£ȹ嫰ƹǔw÷nI粛E煹ǐƲ
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: 7¤7djƯĖ漘Z剚敍0)鈼¬麄p呝T
values:
- "298"
- "301"
weight: 279808574
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "291"
- key: "294"
operator: ʭd鲡:贅wE@Ȗs«öʮĀ<é瞾ʀN
values:
- "292"
- "295"
matchFields:
- key: "293"
- key: "296"
operator: 軶ǃ*ʙ嫙&蒒5靇
values:
- "294"
- "297"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -106,8 +106,8 @@ spec:
matchLabels:
5l-59g-qy5--ar-gn58nc2-3--6-o-h-9-15v-5925a-x12a-214-3sc/M.JP_oA_4A.J2s3.XL6_EU--AH-Q.GM7B: N-_-vv-Q2qz.W..4....-h._.GgT7_7B_D-..-.k4uz
namespaces:
- "313"
topologyKey: "314"
- "316"
topologyKey: "317"
weight: -1532958330
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -120,8 +120,8 @@ spec:
? 39-295at-o7qff7-x--r7v66bm71u-n4f9wk-3--652x01--p--n4-4-l.onh-9289---x-p-qpt6-1w-3205c1lxeqyn-5--9d5a3-7bf46g-40883176jte/Pi.-_-a-G
: g.8_r_N-.3n-x.-_-_-Nm-_X31
namespaces:
- "305"
topologyKey: "306"
- "308"
topologyKey: "309"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -132,8 +132,8 @@ spec:
matchLabels:
4--3os1-5-ufkr-x0u-1meljf-5269893-t-l/34_-y.8_38xm-.nx.sEK4.B.B: V.Z__Lv8_.O_..8n.--z_-..W
namespaces:
- "329"
topologyKey: "330"
- "332"
topologyKey: "333"
weight: 789384689
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -145,119 +145,119 @@ spec:
matchLabels:
8747ox.x-r-927--6/79._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-3: 4-Tm._G
namespaces:
- "321"
topologyKey: "322"
- "324"
topologyKey: "325"
automountServiceAccountToken: true
containers:
- args:
- "215"
- "216"
command:
- "214"
- "215"
env:
- name: "222"
value: "223"
- name: "223"
value: "224"
valueFrom:
configMapKeyRef:
key: "229"
name: "228"
key: "230"
name: "229"
optional: false
fieldRef:
apiVersion: "224"
fieldPath: "225"
apiVersion: "225"
fieldPath: "226"
resourceFieldRef:
containerName: "226"
containerName: "227"
divisor: "706"
resource: "227"
resource: "228"
secretKeyRef:
key: "231"
name: "230"
key: "232"
name: "231"
optional: false
envFrom:
- configMapRef:
name: "220"
optional: false
prefix: "219"
secretRef:
name: "221"
optional: false
prefix: "220"
secretRef:
name: "222"
optional: true
image: "213"
image: "214"
imagePullPolicy: ?鷅bȻN
lifecycle:
postStart:
exec:
command:
- "252"
- "253"
httpGet:
host: "255"
host: "256"
httpHeaders:
- name: "256"
value: "257"
path: "253"
port: "254"
- name: "257"
value: "258"
path: "254"
port: "255"
scheme: Hǝ呮}臷Ľð»
tcpSocket:
host: "259"
port: "258"
host: "260"
port: "259"
preStop:
exec:
command:
- "260"
- "261"
httpGet:
host: "263"
host: "264"
httpHeaders:
- name: "264"
value: "265"
path: "261"
port: "262"
- name: "265"
value: "266"
path: "262"
port: "263"
scheme: 鄌eÞȦY籎顒
tcpSocket:
host: "267"
port: "266"
host: "268"
port: "267"
livenessProbe:
exec:
command:
- "238"
- "239"
failureThreshold: 1499244521
httpGet:
host: "241"
host: "242"
httpHeaders:
- name: "242"
value: "243"
path: "239"
port: "240"
- name: "243"
value: "244"
path: "240"
port: "241"
scheme: 抴ŨfZhUʎ浵ɲõ
initialDelaySeconds: -124607411
periodSeconds: -2138399859
successThreshold: 943356038
tcpSocket:
host: "244"
host: "245"
port: -1980941277
timeoutSeconds: -1967211777
name: "212"
name: "213"
ports:
- containerPort: -1215463021
hostIP: "218"
hostIP: "219"
hostPort: -239302370
name: "217"
name: "218"
protocol: ăȲϤĦʅ芝
readinessProbe:
exec:
command:
- "245"
- "246"
failureThreshold: 2064656704
httpGet:
host: "248"
host: "249"
httpHeaders:
- name: "249"
value: "250"
path: "246"
port: "247"
- name: "250"
value: "251"
path: "247"
port: "248"
scheme: A徙ɶɊł/擇ɦĽ胚
initialDelaySeconds: -1950133943
periodSeconds: 1836896522
successThreshold: -2101285839
tcpSocket:
host: "251"
host: "252"
port: -1502363275
timeoutSeconds: -65465189
resources:
@ -279,44 +279,45 @@ spec:
runAsNonRoot: false
runAsUser: 2498881510781298156
seLinuxOptions:
level: "272"
role: "270"
type: "271"
user: "269"
level: "273"
role: "271"
type: "272"
user: "270"
windowsOptions:
gmsaCredentialSpec: "274"
gmsaCredentialSpecName: "273"
gmsaCredentialSpec: "275"
gmsaCredentialSpecName: "274"
runAsUserName: "276"
stdinOnce: true
terminationMessagePath: "268"
terminationMessagePath: "269"
terminationMessagePolicy: 唼Ģ猇õǶț鹎ğ#咻痗ȡmƴy綸_
volumeDevices:
- devicePath: "237"
name: "236"
- devicePath: "238"
name: "237"
volumeMounts:
- mountPath: "233"
- mountPath: "234"
mountPropagation: ȫşŇɜa
name: "232"
name: "233"
readOnly: true
subPath: "234"
subPathExpr: "235"
workingDir: "216"
subPath: "235"
subPathExpr: "236"
workingDir: "217"
dnsConfig:
nameservers:
- "337"
- "340"
options:
- name: "339"
value: "340"
- name: "342"
value: "343"
searches:
- "338"
- "341"
enableServiceLinks: false
hostAliases:
- hostnames:
- "335"
ip: "334"
- "338"
ip: "337"
hostNetwork: true
hostname: "289"
hostname: "292"
imagePullSecrets:
- name: "288"
- name: "291"
initContainers:
- args:
- "154"
@ -454,6 +455,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "211"
gmsaCredentialSpecName: "210"
runAsUserName: "212"
terminationMessagePath: "205"
terminationMessagePolicy: ů湙騘&
tty: true
@ -467,48 +469,49 @@ spec:
subPath: "173"
subPathExpr: "174"
workingDir: "155"
nodeName: "279"
nodeName: "281"
nodeSelector:
"275": "276"
"277": "278"
overhead:
怞荊ù灹8緔Tj: "134"
preemptionPolicy: 'z委>,趐V曡88 '
priority: -2137775067
priorityClassName: "336"
priorityClassName: "339"
readinessGates:
- conditionType: '|gɳ礬.b屏ɧeʫį淓¯Ą0'
restartPolicy: 5w垁鷌辪虽U珝Żwʮ馜üNșƶ
runtimeClassName: "341"
schedulerName: "331"
runtimeClassName: "344"
schedulerName: "334"
securityContext:
fsGroup: 2404245025847758433
runAsGroup: -7736954297113301184
runAsNonRoot: true
runAsUser: -6995201567186416273
seLinuxOptions:
level: "283"
role: "281"
type: "282"
user: "280"
level: "285"
role: "283"
type: "284"
user: "282"
supplementalGroups:
- -2242514391033939790
sysctls:
- name: "286"
value: "287"
- name: "289"
value: "290"
windowsOptions:
gmsaCredentialSpec: "285"
gmsaCredentialSpecName: "284"
serviceAccount: "278"
serviceAccountName: "277"
gmsaCredentialSpec: "287"
gmsaCredentialSpecName: "286"
runAsUserName: "288"
serviceAccount: "280"
serviceAccountName: "279"
shareProcessNamespace: false
subdomain: "290"
subdomain: "293"
terminationGracePeriodSeconds: 6132275361857491866
tolerations:
- effect: ?¶ȲƪE1º轪d覉;Ĕ颪œ]洈愥
key: "332"
key: "335"
operator: ŜŲ&洪y儕lmò
tolerationSeconds: -2713809069228546579
value: "333"
value: "336"
volumes:
- awsElasticBlockStore:
fsType: "51"
@ -714,8 +717,8 @@ status:
availableReplicas: -1187060809
conditions:
- lastTransitionTime: "2180-08-01T11:51:16Z"
message: "343"
reason: "342"
message: "346"
reason: "345"
status: m嵘厶sȰÖ埡ÆɰŞ襵樞
type: ȩ愉B
fullyLabeledReplicas: -1479988716

View File

@ -579,7 +579,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "216",
"gmsaCredentialSpec": "217"
"gmsaCredentialSpec": "217",
"runAsUserName": "218"
},
"runAsUser": 6743064379422188907,
"runAsGroup": 3541984878507294780,
@ -594,59 +595,59 @@
],
"containers": [
{
"name": "218",
"image": "219",
"name": "219",
"image": "220",
"command": [
"220"
],
"args": [
"221"
],
"workingDir": "222",
"args": [
"222"
],
"workingDir": "223",
"ports": [
{
"name": "223",
"name": "224",
"hostPort": -1167973499,
"containerPort": 692541847,
"protocol": "Gưoɘ檲ɨ銦妰黖ȓƇ",
"hostIP": "224"
"hostIP": "225"
}
],
"envFrom": [
{
"prefix": "225",
"prefix": "226",
"configMapRef": {
"name": "226",
"name": "227",
"optional": true
},
"secretRef": {
"name": "227",
"name": "228",
"optional": false
}
}
],
"env": [
{
"name": "228",
"value": "229",
"name": "229",
"value": "230",
"valueFrom": {
"fieldRef": {
"apiVersion": "230",
"fieldPath": "231"
"apiVersion": "231",
"fieldPath": "232"
},
"resourceFieldRef": {
"containerName": "232",
"resource": "233",
"containerName": "233",
"resource": "234",
"divisor": "385"
},
"configMapKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": false
},
"secretKeyRef": {
"name": "236",
"key": "237",
"name": "237",
"key": "238",
"optional": true
}
}
@ -662,40 +663,40 @@
},
"volumeMounts": [
{
"name": "238",
"mountPath": "239",
"subPath": "240",
"name": "239",
"mountPath": "240",
"subPath": "241",
"mountPropagation": "2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN",
"subPathExpr": "241"
"subPathExpr": "242"
}
],
"volumeDevices": [
{
"name": "242",
"devicePath": "243"
"name": "243",
"devicePath": "244"
}
],
"livenessProbe": {
"exec": {
"command": [
"244"
"245"
]
},
"httpGet": {
"path": "245",
"port": "246",
"host": "247",
"path": "246",
"port": "247",
"host": "248",
"scheme": "}",
"httpHeaders": [
{
"name": "248",
"value": "249"
"name": "249",
"value": "250"
}
]
},
"tcpSocket": {
"port": "250",
"host": "251"
"port": "251",
"host": "252"
},
"initialDelaySeconds": 1030243869,
"timeoutSeconds": -1080853187,
@ -706,23 +707,23 @@
"readinessProbe": {
"exec": {
"command": [
"252"
"253"
]
},
"httpGet": {
"path": "253",
"port": "254",
"host": "255",
"path": "254",
"port": "255",
"host": "256",
"httpHeaders": [
{
"name": "256",
"value": "257"
"name": "257",
"value": "258"
}
]
},
"tcpSocket": {
"port": -289900366,
"host": "258"
"host": "259"
},
"initialDelaySeconds": 559781916,
"timeoutSeconds": -1703360754,
@ -734,51 +735,51 @@
"postStart": {
"exec": {
"command": [
"259"
"260"
]
},
"httpGet": {
"path": "260",
"port": "261",
"host": "262",
"path": "261",
"port": "262",
"host": "263",
"scheme": ":贅wE@Ȗs«öʮĀ\u003cé瞾",
"httpHeaders": [
{
"name": "263",
"value": "264"
"name": "264",
"value": "265"
}
]
},
"tcpSocket": {
"port": "265",
"host": "266"
"port": "266",
"host": "267"
}
},
"preStop": {
"exec": {
"command": [
"267"
"268"
]
},
"httpGet": {
"path": "268",
"path": "269",
"port": -1718681455,
"host": "269",
"host": "270",
"scheme": "*ʙ嫙\u0026蒒5靇C'ɵK.",
"httpHeaders": [
{
"name": "270",
"value": "271"
"name": "271",
"value": "272"
}
]
},
"tcpSocket": {
"port": "272",
"host": "273"
"port": "273",
"host": "274"
}
}
},
"terminationMessagePath": "274",
"terminationMessagePath": "275",
"terminationMessagePolicy": "£ȹ嫰ƹǔw÷nI粛E煹",
"imagePullPolicy": "ȃv渟7",
"securityContext": {
@ -792,14 +793,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "275",
"role": "276",
"type": "277",
"level": "278"
"user": "276",
"role": "277",
"type": "278",
"level": "279"
},
"windowsOptions": {
"gmsaCredentialSpecName": "279",
"gmsaCredentialSpec": "280"
"gmsaCredentialSpecName": "280",
"gmsaCredentialSpec": "281",
"runAsUserName": "282"
},
"runAsUser": -6244232606031635964,
"runAsGroup": -2537458620093904059,
@ -816,24 +818,25 @@
"activeDeadlineSeconds": -1172377136758373368,
"dnsPolicy": "Ndǂ\u003e5姣\u003e懔%熷谟þ蛯ɰ",
"nodeSelector": {
"281": "282"
"283": "284"
},
"serviceAccountName": "283",
"serviceAccount": "284",
"serviceAccountName": "285",
"serviceAccount": "286",
"automountServiceAccountToken": true,
"nodeName": "285",
"nodeName": "287",
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "286",
"role": "287",
"type": "288",
"level": "289"
"user": "288",
"role": "289",
"type": "290",
"level": "291"
},
"windowsOptions": {
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291"
"gmsaCredentialSpecName": "292",
"gmsaCredentialSpec": "293",
"runAsUserName": "294"
},
"runAsUser": 5824892309487369487,
"runAsGroup": 6134106493278592168,
@ -844,18 +847,18 @@
"fsGroup": -3979882341327374195,
"sysctls": [
{
"name": "292",
"value": "293"
"name": "295",
"value": "296"
}
]
},
"imagePullSecrets": [
{
"name": "294"
"name": "297"
}
],
"hostname": "295",
"subdomain": "296",
"hostname": "298",
"subdomain": "299",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -863,19 +866,19 @@
{
"matchExpressions": [
{
"key": "297",
"key": "300",
"operator": "t莭琽§ć\\ ïì",
"values": [
"298"
"301"
]
}
],
"matchFields": [
{
"key": "299",
"key": "302",
"operator": "ȿ0矀Kʝ",
"values": [
"300"
"303"
]
}
]
@ -888,19 +891,19 @@
"preference": {
"matchExpressions": [
{
"key": "301",
"key": "304",
"operator": "",
"values": [
"302"
"305"
]
}
],
"matchFields": [
{
"key": "303",
"key": "306",
"operator": "粕擓ƖHVe熼'FD",
"values": [
"304"
"307"
]
}
]
@ -926,9 +929,9 @@
]
},
"namespaces": [
"311"
"314"
],
"topologyKey": "312"
"topologyKey": "315"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -950,9 +953,9 @@
]
},
"namespaces": [
"319"
"322"
],
"topologyKey": "320"
"topologyKey": "323"
}
}
]
@ -972,9 +975,9 @@
]
},
"namespaces": [
"327"
"330"
],
"topologyKey": "328"
"topologyKey": "331"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -996,45 +999,45 @@
]
},
"namespaces": [
"335"
"338"
],
"topologyKey": "336"
"topologyKey": "339"
}
}
]
}
},
"schedulerName": "337",
"schedulerName": "340",
"tolerations": [
{
"key": "338",
"key": "341",
"operator": "Uȍ",
"value": "339",
"value": "342",
"effect": "^\u003cu綡Ţ搯唧",
"tolerationSeconds": 5874355269862618775
}
],
"hostAliases": [
{
"ip": "340",
"ip": "343",
"hostnames": [
"341"
"344"
]
}
],
"priorityClassName": "342",
"priorityClassName": "345",
"priority": -1662855542,
"dnsConfig": {
"nameservers": [
"343"
"346"
],
"searches": [
"344"
"347"
],
"options": [
{
"name": "345",
"value": "346"
"name": "348",
"value": "349"
}
]
},
@ -1043,7 +1046,7 @@
"conditionType": "l=ƈư呄"
}
],
"runtimeClassName": "347",
"runtimeClassName": "350",
"enableServiceLinks": true,
"preemptionPolicy": "ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ",
"overhead": {
@ -1076,8 +1079,8 @@
"type": "Ă",
"status": "!ń1ċƹ|慼櫁色苆试揯遐",
"lastTransitionTime": "2058-09-30T18:21:51Z",
"reason": "348",
"message": "349"
"reason": "351",
"message": "352"
}
]
}

View File

@ -80,28 +80,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "301"
- key: "304"
operator: ""
values:
- "302"
- "305"
matchFields:
- key: "303"
- key: "306"
operator: 粕擓ƖHVe熼'FD
values:
- "304"
- "307"
weight: 1281792166
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "297"
- key: "300"
operator: t莭琽§ć\ ïì
values:
- "298"
- "301"
matchFields:
- key: "299"
- key: "302"
operator: ȿ0矀Kʝ
values:
- "300"
- "303"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -114,8 +114,8 @@ spec:
matchLabels:
aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x.2K_q: N0S-CqW.D_8--21kF-c026.-iTl.1-.VT--5mj_9.M.3
namespaces:
- "319"
topologyKey: "320"
- "322"
topologyKey: "323"
weight: -1129218498
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -127,8 +127,8 @@ spec:
matchLabels:
q1d---x/31..jtFe8b_A_..P1s-V.9.4..9..cu: i.9.-_Z.0_1._hg._o_p665O_4Gj._BXt.O-7___-Y_m
namespaces:
- "311"
topologyKey: "312"
- "314"
topologyKey: "315"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -141,8 +141,8 @@ spec:
matchLabels:
1.O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.C.-e16O: 5Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-Wo
namespaces:
- "335"
topologyKey: "336"
- "338"
topologyKey: "339"
weight: 1262074531
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -152,118 +152,118 @@ spec:
matchLabels:
1j2--a.pp9-8--m-cbck561-72-l84--162-gk2-99v2xu-3po4--3os1-5-ufkr-x0/3G.b_9_1o.w_aI._31-_I-A-_3bz._8MU: P_3..H..k9M86.9a_-0R_.ZI
namespaces:
- "327"
topologyKey: "328"
- "330"
topologyKey: "331"
automountServiceAccountToken: true
containers:
- args:
- "221"
- "222"
command:
- "220"
- "221"
env:
- name: "228"
value: "229"
- name: "229"
value: "230"
valueFrom:
configMapKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: false
fieldRef:
apiVersion: "230"
fieldPath: "231"
apiVersion: "231"
fieldPath: "232"
resourceFieldRef:
containerName: "232"
containerName: "233"
divisor: "385"
resource: "233"
resource: "234"
secretKeyRef:
key: "237"
name: "236"
key: "238"
name: "237"
optional: true
envFrom:
- configMapRef:
name: "226"
optional: true
prefix: "225"
secretRef:
name: "227"
optional: true
prefix: "226"
secretRef:
name: "228"
optional: false
image: "219"
image: "220"
imagePullPolicy: ȃv渟7
lifecycle:
postStart:
exec:
command:
- "259"
- "260"
httpGet:
host: "262"
host: "263"
httpHeaders:
- name: "263"
value: "264"
path: "260"
port: "261"
- name: "264"
value: "265"
path: "261"
port: "262"
scheme: :贅wE@Ȗs«öʮĀ<é瞾
tcpSocket:
host: "266"
port: "265"
host: "267"
port: "266"
preStop:
exec:
command:
- "267"
- "268"
httpGet:
host: "269"
host: "270"
httpHeaders:
- name: "270"
value: "271"
path: "268"
- name: "271"
value: "272"
path: "269"
port: -1718681455
scheme: '*ʙ嫙&蒒5靇C''ɵK.'
tcpSocket:
host: "273"
port: "272"
host: "274"
port: "273"
livenessProbe:
exec:
command:
- "244"
- "245"
failureThreshold: -31530684
httpGet:
host: "247"
host: "248"
httpHeaders:
- name: "248"
value: "249"
path: "245"
port: "246"
- name: "249"
value: "250"
path: "246"
port: "247"
scheme: '}'
initialDelaySeconds: 1030243869
periodSeconds: -185042403
successThreshold: -374922344
tcpSocket:
host: "251"
port: "250"
host: "252"
port: "251"
timeoutSeconds: -1080853187
name: "218"
name: "219"
ports:
- containerPort: 692541847
hostIP: "224"
hostIP: "225"
hostPort: -1167973499
name: "223"
name: "224"
protocol: Gưoɘ檲ɨ銦妰黖ȓƇ
readinessProbe:
exec:
command:
- "252"
- "253"
failureThreshold: 1471432155
httpGet:
host: "255"
host: "256"
httpHeaders:
- name: "256"
value: "257"
path: "253"
port: "254"
- name: "257"
value: "258"
path: "254"
port: "255"
initialDelaySeconds: 559781916
periodSeconds: -1569009987
successThreshold: -1053603859
tcpSocket:
host: "258"
host: "259"
port: -289900366
timeoutSeconds: -1703360754
resources:
@ -285,44 +285,45 @@ spec:
runAsNonRoot: false
runAsUser: -6244232606031635964
seLinuxOptions:
level: "278"
role: "276"
type: "277"
user: "275"
level: "279"
role: "277"
type: "278"
user: "276"
windowsOptions:
gmsaCredentialSpec: "280"
gmsaCredentialSpecName: "279"
gmsaCredentialSpec: "281"
gmsaCredentialSpecName: "280"
runAsUserName: "282"
stdinOnce: true
terminationMessagePath: "274"
terminationMessagePath: "275"
terminationMessagePolicy: £ȹ嫰ƹǔw÷nI粛E煹
volumeDevices:
- devicePath: "243"
name: "242"
- devicePath: "244"
name: "243"
volumeMounts:
- mountPath: "239"
- mountPath: "240"
mountPropagation: 2:öY鶪5w垁鷌辪虽U珝Żwʮ馜üN
name: "238"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
name: "239"
subPath: "241"
subPathExpr: "242"
workingDir: "223"
dnsConfig:
nameservers:
- "343"
- "346"
options:
- name: "345"
value: "346"
- name: "348"
value: "349"
searches:
- "344"
- "347"
dnsPolicy: Ndǂ>5姣>懔%熷谟þ蛯ɰ
enableServiceLinks: true
hostAliases:
- hostnames:
- "341"
ip: "340"
- "344"
ip: "343"
hostPID: true
hostname: "295"
hostname: "298"
imagePullSecrets:
- name: "294"
- name: "297"
initContainers:
- args:
- "159"
@ -461,6 +462,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "217"
gmsaCredentialSpecName: "216"
runAsUserName: "218"
stdin: true
terminationMessagePath: "211"
terminationMessagePolicy: 恰nj揠8lj黳鈫ʕ
@ -476,48 +478,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "285"
nodeName: "287"
nodeSelector:
"281": "282"
"283": "284"
overhead:
硑Ț匡婲#ɛ蛳j惧鷋簡SļŽɣB矗E: "667"
preemptionPolicy: ʕW6¯ȗŮ·俦磊ʝʅ¸Ư竱=沚ʧ
priority: -1662855542
priorityClassName: "342"
priorityClassName: "345"
readinessGates:
- conditionType: l=ƈư呄
restartPolicy: ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
runtimeClassName: "347"
schedulerName: "337"
runtimeClassName: "350"
schedulerName: "340"
securityContext:
fsGroup: -3979882341327374195
runAsGroup: 6134106493278592168
runAsNonRoot: true
runAsUser: 5824892309487369487
seLinuxOptions:
level: "289"
role: "287"
type: "288"
user: "286"
level: "291"
role: "289"
type: "290"
user: "288"
supplementalGroups:
- -4964947941541214699
sysctls:
- name: "292"
value: "293"
- name: "295"
value: "296"
windowsOptions:
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
serviceAccount: "284"
serviceAccountName: "283"
gmsaCredentialSpec: "293"
gmsaCredentialSpecName: "292"
runAsUserName: "294"
serviceAccount: "286"
serviceAccountName: "285"
shareProcessNamespace: true
subdomain: "296"
subdomain: "299"
terminationGracePeriodSeconds: 1221494839594199191
tolerations:
- effect: ^<u綡Ţ搯唧
key: "338"
key: "341"
operator:
tolerationSeconds: 5874355269862618775
value: "339"
value: "342"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -726,8 +729,8 @@ status:
collisionCount: 906113644
conditions:
- lastTransitionTime: "2058-09-30T18:21:51Z"
message: "349"
reason: "348"
message: "352"
reason: "351"
status: '!ń1ċƹ|慼櫁色苆试揯遐'
type: Ă
currentNumberScheduled: 1494873941

View File

@ -582,7 +582,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "214",
"gmsaCredentialSpec": "215"
"gmsaCredentialSpec": "215",
"runAsUserName": "216"
},
"runAsUser": -834696834428133864,
"runAsGroup": -7821473471908167720,
@ -596,59 +597,59 @@
],
"containers": [
{
"name": "216",
"image": "217",
"name": "217",
"image": "218",
"command": [
"218"
],
"args": [
"219"
],
"workingDir": "220",
"args": [
"220"
],
"workingDir": "221",
"ports": [
{
"name": "221",
"name": "222",
"hostPort": 766864314,
"containerPort": 1146016612,
"protocol": "擓ƖHVe熼'FD剂讼ɓȌʟni酛",
"hostIP": "222"
"hostIP": "223"
}
],
"envFrom": [
{
"prefix": "223",
"prefix": "224",
"configMapRef": {
"name": "224",
"name": "225",
"optional": true
},
"secretRef": {
"name": "225",
"name": "226",
"optional": true
}
}
],
"env": [
{
"name": "226",
"value": "227",
"name": "227",
"value": "228",
"valueFrom": {
"fieldRef": {
"apiVersion": "228",
"fieldPath": "229"
"apiVersion": "229",
"fieldPath": "230"
},
"resourceFieldRef": {
"containerName": "230",
"resource": "231",
"containerName": "231",
"resource": "232",
"divisor": "770"
},
"configMapKeyRef": {
"name": "232",
"key": "233",
"name": "233",
"key": "234",
"optional": true
},
"secretKeyRef": {
"name": "234",
"key": "235",
"name": "235",
"key": "236",
"optional": true
}
}
@ -664,41 +665,41 @@
},
"volumeMounts": [
{
"name": "236",
"name": "237",
"readOnly": true,
"mountPath": "237",
"subPath": "238",
"mountPath": "238",
"subPath": "239",
"mountPropagation": "ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw",
"subPathExpr": "239"
"subPathExpr": "240"
}
],
"volumeDevices": [
{
"name": "240",
"devicePath": "241"
"name": "241",
"devicePath": "242"
}
],
"livenessProbe": {
"exec": {
"command": [
"242"
"243"
]
},
"httpGet": {
"path": "243",
"port": "244",
"host": "245",
"path": "244",
"port": "245",
"host": "246",
"scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
"name": "246",
"value": "247"
"name": "247",
"value": "248"
}
]
},
"tcpSocket": {
"port": 622267234,
"host": "248"
"host": "249"
},
"initialDelaySeconds": 410611837,
"timeoutSeconds": 809006670,
@ -709,24 +710,24 @@
"readinessProbe": {
"exec": {
"command": [
"249"
"250"
]
},
"httpGet": {
"path": "250",
"port": "251",
"host": "252",
"path": "251",
"port": "252",
"host": "253",
"scheme": "]佱¿\u003e犵殇ŕ-Ɂ圯W",
"httpHeaders": [
{
"name": "253",
"value": "254"
"name": "254",
"value": "255"
}
]
},
"tcpSocket": {
"port": "255",
"host": "256"
"port": "256",
"host": "257"
},
"initialDelaySeconds": -1191528701,
"timeoutSeconds": -978176982,
@ -738,51 +739,51 @@
"postStart": {
"exec": {
"command": [
"257"
"258"
]
},
"httpGet": {
"path": "258",
"port": "259",
"host": "260",
"path": "259",
"port": "260",
"host": "261",
"scheme": "ē鐭#嬀ơŸ8T 苧yñKJɐ",
"httpHeaders": [
{
"name": "261",
"value": "262"
"name": "262",
"value": "263"
}
]
},
"tcpSocket": {
"port": "263",
"host": "264"
"port": "264",
"host": "265"
}
},
"preStop": {
"exec": {
"command": [
"265"
"266"
]
},
"httpGet": {
"path": "266",
"path": "267",
"port": 591440053,
"host": "267",
"host": "268",
"scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
"httpHeaders": [
{
"name": "268",
"value": "269"
"name": "269",
"value": "270"
}
]
},
"tcpSocket": {
"port": "270",
"host": "271"
"port": "271",
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
@ -796,14 +797,15 @@
},
"privileged": false,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -7971724279034955974,
"runAsGroup": 2011630253582325853,
@ -820,24 +822,25 @@
"activeDeadlineSeconds": 1968932441807931700,
"dnsPolicy": "鍓贯澔 ƺ蛜6Ɖ飴",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -6241205430888228274,
"runAsGroup": 3716388262106582789,
@ -848,18 +851,18 @@
"fsGroup": -500234369132816308,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -867,19 +870,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "鱎ƙ;Nŕ璻Ji",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "J",
"values": [
"298"
"301"
]
}
]
@ -892,19 +895,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "H鯂²静ƲǦŐnj汰8ŕİi騎C\"6",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "ʎǑyZ涬P­",
"values": [
"302"
"305"
]
}
]
@ -930,9 +933,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -954,9 +957,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -979,9 +982,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -1003,45 +1006,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "抷qTfZȻ干m謆7",
"value": "337",
"value": "340",
"effect": "儉ɩ柀",
"tolerationSeconds": -7411984641310969236
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": -895317190,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1050,7 +1053,7 @@
"conditionType": "ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "qiǙĞǠ",
"overhead": {
@ -1084,8 +1087,8 @@
"status": "@ǮJ=礏ƴ磳藷曥摮Z",
"lastUpdateTime": "2156-01-27T01:49:17Z",
"lastTransitionTime": "2915-06-26T10:11:26Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
],
"collisionCount": -248869594

View File

@ -88,28 +88,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: H鯂²静ƲǦŐnj汰8ŕİi騎C"6
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: ʎǑyZ涬P­
values:
- "302"
- "305"
weight: 902978249
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: 鱎ƙ;Nŕ璻Ji
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: J
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -122,8 +122,8 @@ spec:
matchLabels:
26-k8-c2---2etfh41ca-z-5g2wco280.ka-6-31g--z-o-3bz6-8-0-1-z--271s-p9-8--m-cbck561-7n/VC..7o_x3..-.8J: 28_38xm-.nx.sEK4B
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: -3478003
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -135,8 +135,8 @@ spec:
matchLabels:
05mj-94-8134i5k6q6--5tu-0/j_.-.6GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG3: 0-8-.M-.-.-v
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -149,8 +149,8 @@ spec:
matchLabels:
H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: -1078366610
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -162,120 +162,120 @@ spec:
matchLabels:
O.Um.-__k.j._g-G-7--p9.-0: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..-3
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "219"
- "220"
command:
- "218"
- "219"
env:
- name: "226"
value: "227"
- name: "227"
value: "228"
valueFrom:
configMapKeyRef:
key: "233"
name: "232"
key: "234"
name: "233"
optional: true
fieldRef:
apiVersion: "228"
fieldPath: "229"
apiVersion: "229"
fieldPath: "230"
resourceFieldRef:
containerName: "230"
containerName: "231"
divisor: "770"
resource: "231"
resource: "232"
secretKeyRef:
key: "235"
name: "234"
key: "236"
name: "235"
optional: true
envFrom:
- configMapRef:
name: "224"
optional: true
prefix: "223"
secretRef:
name: "225"
optional: true
image: "217"
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- "257"
- "258"
httpGet:
host: "260"
host: "261"
httpHeaders:
- name: "261"
value: "262"
path: "258"
port: "259"
- name: "262"
value: "263"
path: "259"
port: "260"
scheme: ē鐭#嬀ơŸ8T 苧yñKJɐ
tcpSocket:
host: "264"
port: "263"
host: "265"
port: "264"
preStop:
exec:
command:
- "265"
- "266"
httpGet:
host: "267"
host: "268"
httpHeaders:
- name: "268"
value: "269"
path: "266"
- name: "269"
value: "270"
path: "267"
port: 591440053
scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
tcpSocket:
host: "271"
port: "270"
host: "272"
port: "271"
livenessProbe:
exec:
command:
- "242"
- "243"
failureThreshold: -1008070934
httpGet:
host: "245"
host: "246"
httpHeaders:
- name: "246"
value: "247"
path: "243"
port: "244"
- name: "247"
value: "248"
path: "244"
port: "245"
scheme: ȓ蹣ɐǛv+8Ƥ熪军
initialDelaySeconds: 410611837
periodSeconds: 972978563
successThreshold: 17771103
tcpSocket:
host: "248"
host: "249"
port: 622267234
timeoutSeconds: 809006670
name: "216"
name: "217"
ports:
- containerPort: 1146016612
hostIP: "222"
hostIP: "223"
hostPort: 766864314
name: "221"
name: "222"
protocol: 擓ƖHVe熼'FD剂讼ɓȌʟni酛
readinessProbe:
exec:
command:
- "249"
- "250"
failureThreshold: 1474943201
httpGet:
host: "252"
host: "253"
httpHeaders:
- name: "253"
value: "254"
path: "250"
port: "251"
- name: "254"
value: "255"
path: "251"
port: "252"
scheme: ']佱¿>犵殇ŕ-Ɂ圯W'
initialDelaySeconds: -1191528701
periodSeconds: 415947324
successThreshold: 18113448
tcpSocket:
host: "256"
port: "255"
host: "257"
port: "256"
timeoutSeconds: -978176982
resources:
limits:
@ -296,45 +296,46 @@ spec:
runAsNonRoot: false
runAsUser: -7971724279034955974
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdinOnce: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
volumeDevices:
- devicePath: "241"
name: "240"
- devicePath: "242"
name: "241"
volumeMounts:
- mountPath: "237"
- mountPath: "238"
mountPropagation: ɷ9Ì崟¿瘦ɖ緕ȚÍ勅跦Opw
name: "236"
name: "237"
readOnly: true
subPath: "238"
subPathExpr: "239"
workingDir: "220"
subPath: "239"
subPathExpr: "240"
workingDir: "221"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: 鍓贯澔 ƺ蛜6Ɖ飴
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -473,6 +474,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "215"
gmsaCredentialSpecName: "214"
runAsUserName: "216"
terminationMessagePath: "209"
terminationMessagePolicy: 1ſ盷褎weLJèux榜VƋZ1Ůđ眊
tty: true
@ -486,48 +488,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
锒鿦Ršțb贇髪č: "840"
preemptionPolicy: qiǙĞǠ
priority: -895317190
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: ċƹ|慼櫁色苆试揯遐e4'ď曕椐敛n
restartPolicy: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: -500234369132816308
runAsGroup: 3716388262106582789
runAsNonRoot: true
runAsUser: -6241205430888228274
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 2706433733228765005
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -1027492015449357669
tolerations:
- effect: 儉ɩ柀
key: "336"
key: "339"
operator: 抷qTfZȻ干m謆7
tolerationSeconds: -7411984641310969236
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -736,8 +739,8 @@ status:
conditions:
- lastTransitionTime: "2915-06-26T10:11:26Z"
lastUpdateTime: "2156-01-27T01:49:17Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: '@ǮJ=礏ƴ磳藷曥摮Z'
type: 餘ŁƁ翂|C
observedGeneration: -7566638657230957553

View File

@ -577,7 +577,8 @@
},
"windowsOptions": {
"gmsaCredentialSpecName": "215",
"gmsaCredentialSpec": "216"
"gmsaCredentialSpec": "216",
"runAsUserName": "217"
},
"runAsUser": -7286288718856494813,
"runAsGroup": -5951050835676650382,
@ -591,59 +592,59 @@
],
"containers": [
{
"name": "217",
"image": "218",
"name": "218",
"image": "219",
"command": [
"219"
],
"args": [
"220"
],
"workingDir": "221",
"args": [
"221"
],
"workingDir": "222",
"ports": [
{
"name": "222",
"name": "223",
"hostPort": -1470854631,
"containerPort": -1815391069,
"protocol": ʋŀ樺ȃv",
"hostIP": "223"
"hostIP": "224"
}
],
"envFrom": [
{
"prefix": "224",
"prefix": "225",
"configMapRef": {
"name": "225",
"name": "226",
"optional": true
},
"secretRef": {
"name": "226",
"name": "227",
"optional": true
}
}
],
"env": [
{
"name": "227",
"value": "228",
"name": "228",
"value": "229",
"valueFrom": {
"fieldRef": {
"apiVersion": "229",
"fieldPath": "230"
"apiVersion": "230",
"fieldPath": "231"
},
"resourceFieldRef": {
"containerName": "231",
"resource": "232",
"containerName": "232",
"resource": "233",
"divisor": "508"
},
"configMapKeyRef": {
"name": "233",
"key": "234",
"name": "234",
"key": "235",
"optional": false
},
"secretKeyRef": {
"name": "235",
"key": "236",
"name": "236",
"key": "237",
"optional": true
}
}
@ -659,41 +660,41 @@
},
"volumeMounts": [
{
"name": "237",
"name": "238",
"readOnly": true,
"mountPath": "238",
"subPath": "239",
"mountPath": "239",
"subPath": "240",
"mountPropagation": "",
"subPathExpr": "240"
"subPathExpr": "241"
}
],
"volumeDevices": [
{
"name": "241",
"devicePath": "242"
"name": "242",
"devicePath": "243"
}
],
"livenessProbe": {
"exec": {
"command": [
"243"
"244"
]
},
"httpGet": {
"path": "244",
"port": "245",
"host": "246",
"path": "245",
"port": "246",
"host": "247",
"scheme": "ȫ焗捏ĨFħ籘Àǒɿʒ刽",
"httpHeaders": [
{
"name": "247",
"value": "248"
"name": "248",
"value": "249"
}
]
},
"tcpSocket": {
"port": 1096174794,
"host": "249"
"host": "250"
},
"initialDelaySeconds": 1591029717,
"timeoutSeconds": 1255169591,
@ -704,24 +705,24 @@
"readinessProbe": {
"exec": {
"command": [
"250"
"251"
]
},
"httpGet": {
"path": "251",
"port": "252",
"host": "253",
"path": "252",
"port": "253",
"host": "254",
"scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ",
"httpHeaders": [
{
"name": "254",
"value": "255"
"name": "255",
"value": "256"
}
]
},
"tcpSocket": {
"port": "256",
"host": "257"
"port": "257",
"host": "258"
},
"initialDelaySeconds": -394397948,
"timeoutSeconds": 2040455355,
@ -733,51 +734,51 @@
"postStart": {
"exec": {
"command": [
"258"
"259"
]
},
"httpGet": {
"path": "259",
"port": "260",
"host": "261",
"path": "260",
"port": "261",
"host": "262",
"scheme": "Ƹ[Ęİ榌U髷裎$MVȟ@7",
"httpHeaders": [
{
"name": "262",
"value": "263"
"name": "263",
"value": "264"
}
]
},
"tcpSocket": {
"port": "264",
"host": "265"
"port": "265",
"host": "266"
}
},
"preStop": {
"exec": {
"command": [
"266"
"267"
]
},
"httpGet": {
"path": "267",
"path": "268",
"port": -1675041613,
"host": "268",
"host": "269",
"scheme": "揆ɘȌ脾嚏吐",
"httpHeaders": [
{
"name": "269",
"value": "270"
"name": "270",
"value": "271"
}
]
},
"tcpSocket": {
"port": -194343002,
"host": "271"
"host": "272"
}
}
},
"terminationMessagePath": "272",
"terminationMessagePath": "273",
"terminationMessagePolicy": "Ȥ藠3.",
"imagePullPolicy": "t莭琽§ć\\ ïì",
"securityContext": {
@ -791,14 +792,15 @@
},
"privileged": true,
"seLinuxOptions": {
"user": "273",
"role": "274",
"type": "275",
"level": "276"
"user": "274",
"role": "275",
"type": "276",
"level": "277"
},
"windowsOptions": {
"gmsaCredentialSpecName": "277",
"gmsaCredentialSpec": "278"
"gmsaCredentialSpecName": "278",
"gmsaCredentialSpec": "279",
"runAsUserName": "280"
},
"runAsUser": -2142888785755371163,
"runAsGroup": -2879304435996142911,
@ -815,25 +817,26 @@
"activeDeadlineSeconds": -5860790522738935260,
"dnsPolicy": "w(ğ儴Ůĺ}潷ʒ胵",
"nodeSelector": {
"279": "280"
"281": "282"
},
"serviceAccountName": "281",
"serviceAccount": "282",
"serviceAccountName": "283",
"serviceAccount": "284",
"automountServiceAccountToken": false,
"nodeName": "283",
"nodeName": "285",
"hostNetwork": true,
"hostPID": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
"user": "284",
"role": "285",
"type": "286",
"level": "287"
"user": "286",
"role": "287",
"type": "288",
"level": "289"
},
"windowsOptions": {
"gmsaCredentialSpecName": "288",
"gmsaCredentialSpec": "289"
"gmsaCredentialSpecName": "290",
"gmsaCredentialSpec": "291",
"runAsUserName": "292"
},
"runAsUser": -7059779929916534575,
"runAsGroup": -4105014793515441558,
@ -844,18 +847,18 @@
"fsGroup": 7861919711004065015,
"sysctls": [
{
"name": "290",
"value": "291"
"name": "293",
"value": "294"
}
]
},
"imagePullSecrets": [
{
"name": "292"
"name": "295"
}
],
"hostname": "293",
"subdomain": "294",
"hostname": "296",
"subdomain": "297",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@ -863,19 +866,19 @@
{
"matchExpressions": [
{
"key": "295",
"key": "298",
"operator": "ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ",
"values": [
"296"
"299"
]
}
],
"matchFields": [
{
"key": "297",
"key": "300",
"operator": "t叀碧闳ȩr嚧ʣq埄",
"values": [
"298"
"301"
]
}
]
@ -888,19 +891,19 @@
"preference": {
"matchExpressions": [
{
"key": "299",
"key": "302",
"operator": "岼昕ĬÇó藢xɮĵȑ6L*Z",
"values": [
"300"
"303"
]
}
],
"matchFields": [
{
"key": "301",
"key": "304",
"operator": "绤fʀļ腩墺Ò媁荭g",
"values": [
"302"
"305"
]
}
]
@ -923,9 +926,9 @@
]
},
"namespaces": [
"309"
"312"
],
"topologyKey": "310"
"topologyKey": "313"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -944,9 +947,9 @@
]
},
"namespaces": [
"317"
"320"
],
"topologyKey": "318"
"topologyKey": "321"
}
}
]
@ -966,9 +969,9 @@
]
},
"namespaces": [
"325"
"328"
],
"topologyKey": "326"
"topologyKey": "329"
}
],
"preferredDuringSchedulingIgnoredDuringExecution": [
@ -990,45 +993,45 @@
]
},
"namespaces": [
"333"
"336"
],
"topologyKey": "334"
"topologyKey": "337"
}
}
]
}
},
"schedulerName": "335",
"schedulerName": "338",
"tolerations": [
{
"key": "336",
"key": "339",
"operator": "}缫,",
"value": "337",
"value": "340",
"effect": "ɉ愂",
"tolerationSeconds": 5005983565679986804
}
],
"hostAliases": [
{
"ip": "338",
"ip": "341",
"hostnames": [
"339"
"342"
]
}
],
"priorityClassName": "340",
"priorityClassName": "343",
"priority": 178156526,
"dnsConfig": {
"nameservers": [
"341"
"344"
],
"searches": [
"342"
"345"
],
"options": [
{
"name": "343",
"value": "344"
"name": "346",
"value": "347"
}
]
},
@ -1037,7 +1040,7 @@
"conditionType": "糮R(_âŔ獎$ƆJije檗"
}
],
"runtimeClassName": "345",
"runtimeClassName": "348",
"enableServiceLinks": true,
"preemptionPolicy": "ʜ_ȭwɵ糫武诰ð",
"overhead": {
@ -1057,8 +1060,8 @@
"type": "\u003cvĝ線Ưȫ喆5O2.:鑋Ļ",
"status": "H筆U锟蕞纥奆0ǔ廘ɵ岳v\u0026ȝxɕū",
"lastTransitionTime": "2732-10-05T01:06:26Z",
"reason": "346",
"message": "347"
"reason": "349",
"message": "350"
}
]
}

View File

@ -81,28 +81,28 @@ spec:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: "299"
- key: "302"
operator: 岼昕ĬÇó藢xɮĵȑ6L*Z
values:
- "300"
- "303"
matchFields:
- key: "301"
- key: "304"
operator: 绤fʀļ腩墺Ò媁荭g
values:
- "302"
- "305"
weight: -379385405
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "295"
- key: "298"
operator: ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ
values:
- "296"
- "299"
matchFields:
- key: "297"
- key: "300"
operator: t叀碧闳ȩr嚧ʣq埄
values:
- "298"
- "301"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -113,8 +113,8 @@ spec:
matchLabels:
N-_-vv-Q2q7: 3.4....-h._.GgT7_7P
namespaces:
- "317"
topologyKey: "318"
- "320"
topologyKey: "321"
weight: 1258370227
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -124,8 +124,8 @@ spec:
matchLabels:
6-d42--clo90---461v-07r--0---8-30i-uo/9DF: AH-Q.GM72_-c-.-.6--3-__t
namespaces:
- "309"
topologyKey: "310"
- "312"
topologyKey: "313"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
@ -138,8 +138,8 @@ spec:
matchLabels:
gr-y7nlp97v-0-1y-t3---2ga-v205p-26-l.p2-t--m-l80--5o1--cp6-5-x1---0w4rm0/f_ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--wO: ""
namespaces:
- "333"
topologyKey: "334"
- "336"
topologyKey: "337"
weight: 1289969734
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
@ -149,120 +149,120 @@ spec:
matchLabels:
927--m6-k8-c2---2etfh41ca-z-5g2wco28---f-53-x1y-8---3----7/mf.-f.-zv._._.5-H.T.-.-.T-V_D_0-K_A-_9_Z_C..7o_x32: 0U1_-__.71-_-9_._X-D---k..1Q7N
namespaces:
- "325"
topologyKey: "326"
- "328"
topologyKey: "329"
automountServiceAccountToken: false
containers:
- args:
- "220"
- "221"
command:
- "219"
- "220"
env:
- name: "227"
value: "228"
- name: "228"
value: "229"
valueFrom:
configMapKeyRef:
key: "234"
name: "233"
key: "235"
name: "234"
optional: false
fieldRef:
apiVersion: "229"
fieldPath: "230"
apiVersion: "230"
fieldPath: "231"
resourceFieldRef:
containerName: "231"
containerName: "232"
divisor: "508"
resource: "232"
resource: "233"
secretKeyRef:
key: "236"
name: "235"
key: "237"
name: "236"
optional: true
envFrom:
- configMapRef:
name: "225"
optional: true
prefix: "224"
secretRef:
name: "226"
optional: true
image: "218"
prefix: "225"
secretRef:
name: "227"
optional: true
image: "219"
imagePullPolicy: t莭琽§ć\ ïì
lifecycle:
postStart:
exec:
command:
- "258"
- "259"
httpGet:
host: "261"
host: "262"
httpHeaders:
- name: "262"
value: "263"
path: "259"
port: "260"
- name: "263"
value: "264"
path: "260"
port: "261"
scheme: Ƹ[Ęİ榌U髷裎$MVȟ@7
tcpSocket:
host: "265"
port: "264"
host: "266"
port: "265"
preStop:
exec:
command:
- "266"
- "267"
httpGet:
host: "268"
host: "269"
httpHeaders:
- name: "269"
value: "270"
path: "267"
- name: "270"
value: "271"
path: "268"
port: -1675041613
scheme: 揆ɘȌ脾嚏吐
tcpSocket:
host: "271"
host: "272"
port: -194343002
livenessProbe:
exec:
command:
- "243"
- "244"
failureThreshold: 817152661
httpGet:
host: "246"
host: "247"
httpHeaders:
- name: "247"
value: "248"
path: "244"
port: "245"
- name: "248"
value: "249"
path: "245"
port: "246"
scheme: ȫ焗捏ĨFħ籘Àǒɿʒ刽
initialDelaySeconds: 1591029717
periodSeconds: 622473257
successThreshold: -966649167
tcpSocket:
host: "249"
host: "250"
port: 1096174794
timeoutSeconds: 1255169591
name: "217"
name: "218"
ports:
- containerPort: -1815391069
hostIP: "223"
hostIP: "224"
hostPort: -1470854631
name: "222"
name: "223"
protocol: Ƹʋŀ樺ȃv
readinessProbe:
exec:
command:
- "250"
- "251"
failureThreshold: 1214895765
httpGet:
host: "253"
host: "254"
httpHeaders:
- name: "254"
value: "255"
path: "251"
port: "252"
- name: "255"
value: "256"
path: "252"
port: "253"
scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ
initialDelaySeconds: -394397948
periodSeconds: 1505972335
successThreshold: -26910286
tcpSocket:
host: "257"
port: "256"
host: "258"
port: "257"
timeoutSeconds: 2040455355
resources:
limits:
@ -283,46 +283,47 @@ spec:
runAsNonRoot: false
runAsUser: -2142888785755371163
seLinuxOptions:
level: "276"
role: "274"
type: "275"
user: "273"
level: "277"
role: "275"
type: "276"
user: "274"
windowsOptions:
gmsaCredentialSpec: "278"
gmsaCredentialSpecName: "277"
gmsaCredentialSpec: "279"
gmsaCredentialSpecName: "278"
runAsUserName: "280"
stdin: true
terminationMessagePath: "272"
terminationMessagePath: "273"
terminationMessagePolicy: Ȥ藠3.
volumeDevices:
- devicePath: "242"
name: "241"
- devicePath: "243"
name: "242"
volumeMounts:
- mountPath: "238"
- mountPath: "239"
mountPropagation: ""
name: "237"
name: "238"
readOnly: true
subPath: "239"
subPathExpr: "240"
workingDir: "221"
subPath: "240"
subPathExpr: "241"
workingDir: "222"
dnsConfig:
nameservers:
- "341"
- "344"
options:
- name: "343"
value: "344"
- name: "346"
value: "347"
searches:
- "342"
- "345"
dnsPolicy: w(ğ儴Ůĺ}潷ʒ胵
enableServiceLinks: true
hostAliases:
- hostnames:
- "339"
ip: "338"
- "342"
ip: "341"
hostNetwork: true
hostPID: true
hostname: "293"
hostname: "296"
imagePullSecrets:
- name: "292"
- name: "295"
initContainers:
- args:
- "159"
@ -461,6 +462,7 @@ spec:
windowsOptions:
gmsaCredentialSpec: "216"
gmsaCredentialSpecName: "215"
runAsUserName: "217"
stdinOnce: true
terminationMessagePath: "210"
terminationMessagePolicy: 廡ɑ龫`劳&¼傭Ȟ1酃=6}ɡŇ
@ -474,48 +476,49 @@ spec:
subPath: "178"
subPathExpr: "179"
workingDir: "160"
nodeName: "283"
nodeName: "285"
nodeSelector:
"279": "280"
"281": "282"
overhead:
娒Ġ滔xvŗÑ"虆k遚釾ʼn{: "803"
preemptionPolicy: ʜ_ȭwɵ糫武诰ð
priority: 178156526
priorityClassName: "340"
priorityClassName: "343"
readinessGates:
- conditionType: 糮R(_âŔ獎$ƆJije檗
restartPolicy: ȶ网棊ʢ=wǕɳɷ9Ì
runtimeClassName: "345"
schedulerName: "335"
runtimeClassName: "348"
schedulerName: "338"
securityContext:
fsGroup: 7861919711004065015
runAsGroup: -4105014793515441558
runAsNonRoot: true
runAsUser: -7059779929916534575
seLinuxOptions:
level: "287"
role: "285"
type: "286"
user: "284"
level: "289"
role: "287"
type: "288"
user: "286"
supplementalGroups:
- 830921445879518469
sysctls:
- name: "290"
value: "291"
- name: "293"
value: "294"
windowsOptions:
gmsaCredentialSpec: "289"
gmsaCredentialSpecName: "288"
serviceAccount: "282"
serviceAccountName: "281"
gmsaCredentialSpec: "291"
gmsaCredentialSpecName: "290"
runAsUserName: "292"
serviceAccount: "284"
serviceAccountName: "283"
shareProcessNamespace: true
subdomain: "294"
subdomain: "297"
terminationGracePeriodSeconds: -860974700141841896
tolerations:
- effect: ɉ愂
key: "336"
key: "339"
operator: '}缫,'
tolerationSeconds: 5005983565679986804
value: "337"
value: "340"
volumes:
- awsElasticBlockStore:
fsType: "56"
@ -716,8 +719,8 @@ status:
availableReplicas: -746105654
conditions:
- lastTransitionTime: "2732-10-05T01:06:26Z"
message: "347"
reason: "346"
message: "350"
reason: "349"
status: H筆U锟蕞纥奆0ǔ廘ɵ岳v&ȝxɕū
type: <vĝ線Ưȫ喆5O2.:鑋Ļ
fullyLabeledReplicas: 801466911