Update generated files

update generated code
This commit is contained in:
Hemant Kumar 2020-02-24 11:51:50 -05:00
parent f7509d277e
commit 053baaf143
71 changed files with 2064 additions and 1914 deletions

View File

@ -8349,6 +8349,10 @@
"format": "int64", "format": "int64",
"type": "integer" "type": "integer"
}, },
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": { "runAsGroup": {
"description": "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.", "description": "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.",
"format": "int64", "format": "int64",

View File

@ -5941,6 +5941,7 @@ func autoConvert_v1_PodSecurityContext_To_core_PodSecurityContext(in *v1.PodSecu
out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups)) out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups))
out.FSGroup = (*int64)(unsafe.Pointer(in.FSGroup)) out.FSGroup = (*int64)(unsafe.Pointer(in.FSGroup))
out.Sysctls = *(*[]core.Sysctl)(unsafe.Pointer(&in.Sysctls)) out.Sysctls = *(*[]core.Sysctl)(unsafe.Pointer(&in.Sysctls))
out.FSGroupChangePolicy = (*core.PodFSGroupChangePolicy)(unsafe.Pointer(in.FSGroupChangePolicy))
return nil return nil
} }
@ -5961,6 +5962,7 @@ func autoConvert_core_PodSecurityContext_To_v1_PodSecurityContext(in *core.PodSe
out.RunAsNonRoot = (*bool)(unsafe.Pointer(in.RunAsNonRoot)) out.RunAsNonRoot = (*bool)(unsafe.Pointer(in.RunAsNonRoot))
out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups)) out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups))
out.FSGroup = (*int64)(unsafe.Pointer(in.FSGroup)) out.FSGroup = (*int64)(unsafe.Pointer(in.FSGroup))
out.FSGroupChangePolicy = (*v1.PodFSGroupChangePolicy)(unsafe.Pointer(in.FSGroupChangePolicy))
out.Sysctls = *(*[]v1.Sysctl)(unsafe.Pointer(&in.Sysctls)) out.Sysctls = *(*[]v1.Sysctl)(unsafe.Pointer(&in.Sysctls))
return nil return nil
} }

View File

@ -3691,6 +3691,11 @@ func (in *PodSecurityContext) DeepCopyInto(out *PodSecurityContext) {
*out = new(int64) *out = new(int64)
**out = **in **out = **in
} }
if in.FSGroupChangePolicy != nil {
in, out := &in.FSGroupChangePolicy, &out.FSGroupChangePolicy
*out = new(PodFSGroupChangePolicy)
**out = **in
}
if in.Sysctls != nil { if in.Sysctls != nil {
in, out := &in.Sysctls, &out.Sysctls in, out := &in.Sysctls, &out.Sysctls
*out = make([]Sysctl, len(*in)) *out = make([]Sysctl, len(*in))

View File

@ -51,6 +51,7 @@ go_test(
"metrics_nil_test.go", "metrics_nil_test.go",
"metrics_statfs_test.go", "metrics_statfs_test.go",
"plugins_test.go", "plugins_test.go",
"volume_linux_test.go",
], ],
embed = [":go_default_library"], embed = [":go_default_library"],
deps = [ deps = [
@ -61,9 +62,15 @@ go_test(
"//staging/src/k8s.io/client-go/util/testing:go_default_library", "//staging/src/k8s.io/client-go/util/testing:go_default_library",
] + select({ ] + select({
"@io_bazel_rules_go//go/platform:android": [ "@io_bazel_rules_go//go/platform:android": [
"//pkg/features:go_default_library",
"//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library",
"//staging/src/k8s.io/component-base/featuregate/testing:go_default_library",
"//vendor/golang.org/x/sys/unix:go_default_library", "//vendor/golang.org/x/sys/unix:go_default_library",
], ],
"@io_bazel_rules_go//go/platform:linux": [ "@io_bazel_rules_go//go/platform:linux": [
"//pkg/features:go_default_library",
"//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library",
"//staging/src/k8s.io/component-base/featuregate/testing:go_default_library",
"//vendor/golang.org/x/sys/unix:go_default_library", "//vendor/golang.org/x/sys/unix:go_default_library",
], ],
"//conditions:default": [], "//conditions:default": [],

File diff suppressed because it is too large Load Diff

View File

@ -3274,6 +3274,15 @@ message PodSecurityContext {
// sysctls (by the container runtime) might fail to launch. // sysctls (by the container runtime) might fail to launch.
// +optional // +optional
repeated Sysctl sysctls = 7; repeated Sysctl sysctls = 7;
// fsGroupChangePolicy defines behavior of changing ownership and permission of the volume
// before being exposed inside Pod. This field will only apply to
// volume types which support fsGroup based ownership(and permissions).
// It will have no effect on ephemeral volume types such as: secret, configmaps
// and emptydir.
// Valid values are "OnRootMismatch" and "Always". If not specified defaults to "Always".
// +optional
optional string fsGroupChangePolicy = 9;
} }
// Describes the class of pods that should avoid this node. // Describes the class of pods that should avoid this node.

View File

@ -1583,6 +1583,7 @@ var map_PodSecurityContext = map[string]string{
"supplementalGroups": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "supplementalGroups": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"fsGroup": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw ", "fsGroup": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw ",
"sysctls": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "sysctls": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"fsGroupChangePolicy": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
} }
func (PodSecurityContext) SwaggerDoc() map[string]string { func (PodSecurityContext) SwaggerDoc() map[string]string {

View File

@ -3689,6 +3689,11 @@ func (in *PodSecurityContext) DeepCopyInto(out *PodSecurityContext) {
*out = make([]Sysctl, len(*in)) *out = make([]Sysctl, len(*in))
copy(*out, *in) copy(*out, *in)
} }
if in.FSGroupChangePolicy != nil {
in, out := &in.FSGroupChangePolicy, &out.FSGroupChangePolicy
*out = new(PodFSGroupChangePolicy)
**out = **in
}
return return
} }

View File

@ -1158,7 +1158,8 @@
"name": "370", "name": "370",
"value": "371" "value": "371"
} }
] ],
"fsGroupChangePolicy": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1175,7 +1176,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "375", "key": "375",
"operator": "Ã茓pȓɻ", "operator": "Ǚ(",
"values": [ "values": [
"376" "376"
] ]
@ -1184,7 +1185,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "377", "key": "377",
"operator": "", "operator": "瘍Nʊ輔3璾ėȜv1b繐汚",
"values": [ "values": [
"378" "378"
] ]
@ -1195,12 +1196,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -767058113, "weight": 702968201,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "379", "key": "379",
"operator": "Ǹ|蕎'佉賞ǧĒz", "operator": "n覦灲閈誹ʅ蕉",
"values": [ "values": [
"380" "380"
] ]
@ -1209,7 +1210,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "381", "key": "381",
"operator": "ùfŭƽ", "operator": "",
"values": [ "values": [
"382" "382"
] ]
@ -1224,11 +1225,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"h-up52--sjo7799-skj5--9/R_rm": "CR.s--f.-f.-zv._._.o" "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "K_A-_9_Z_C..7o_x3..-.8-Jp-94", "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1241,16 +1242,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 801902541, "weight": 1195176401,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I": "x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4" "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"0..KpiS.oK-.O--5-yp8q_s-L"
]
} }
] ]
}, },
@ -1267,12 +1271,15 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"VT3sn-0_.i__a.O2G_J"
]
} }
] ]
}, },
@ -1284,18 +1291,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1508769491,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e",
"operator": "NotIn", "operator": "In",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" ""
] ]
} }
] ]
@ -1313,10 +1320,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "416", "key": "416",
"operator": "堺ʣ", "operator": "抄3昞财Î嘝zʄ!ć",
"value": "417", "value": "417",
"effect": "ŽɣB矗E¸", "effect": "緍k¢茤",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 4096844323391966153
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1328,7 +1335,7 @@
} }
], ],
"priorityClassName": "420", "priorityClassName": "420",
"priority": -1852730577, "priority": -1331113536,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"421" "421"
@ -1345,31 +1352,28 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "mō6µɑ`ȗ\u003c8^翜"
} }
], ],
"runtimeClassName": "425", "runtimeClassName": "425",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "ý筞X",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "tHǽ÷閂抰^窄CǙķȈ": "97"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 1956797678,
"topologyKey": "426", "topologyKey": "426",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz",
"operator": "In", "operator": "DoesNotExist"
"values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ"
]
} }
] ]
} }
@ -1378,29 +1382,28 @@
} }
}, },
"updateStrategy": { "updateStrategy": {
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
"rollingUpdate": { "rollingUpdate": {
"maxUnavailable": 2 "maxUnavailable": 2
} }
}, },
"minReadySeconds": 212061711, "minReadySeconds": 997447044,
"revisionHistoryLimit": -1092090658 "revisionHistoryLimit": 989524452
}, },
"status": { "status": {
"currentNumberScheduled": -1979737528, "currentNumberScheduled": 1606858231,
"numberMisscheduled": -1707056814, "numberMisscheduled": 1791868025,
"desiredNumberScheduled": -424698834, "desiredNumberScheduled": -793692762,
"numberReady": 407742062, "numberReady": -1152625369,
"observedGeneration": 5741439505187758584, "observedGeneration": 3839991706170762113,
"updatedNumberScheduled": 902022378, "updatedNumberScheduled": -1292943463,
"numberAvailable": 1660081568, "numberAvailable": -1734448297,
"numberUnavailable": 904244563, "numberUnavailable": -1757575936,
"collisionCount": -449319810, "collisionCount": 129237050,
"conditions": [ "conditions": [
{ {
"type": "", "type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö",
"status": "'ƈoIǢ龞瞯å", "status": "",
"lastTransitionTime": "2469-07-10T03:20:34Z", "lastTransitionTime": "2733-02-09T15:36:31Z",
"reason": "433", "reason": "433",
"message": "434" "message": "434"
} }

View File

@ -30,8 +30,8 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 212061711 minReadySeconds: 997447044
revisionHistoryLimit: -1092090658 revisionHistoryLimit: 989524452
selector: selector:
matchExpressions: matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@ -78,25 +78,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "379" - key: "379"
operator: Ǹ|蕎'佉賞ǧĒz operator: n覦灲閈誹ʅ蕉
values: values:
- "380" - "380"
matchFields: matchFields:
- key: "381" - key: "381"
operator: ùfŭƽ operator: ""
values: values:
- "382" - "382"
weight: -767058113 weight: 702968201
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "375" - key: "375"
operator: Ã茓pȓɻ operator: Ǚ(
values: values:
- "376" - "376"
matchFields: matchFields:
- key: "377" - key: "377"
operator: "" operator: 瘍Nʊ輔3璾ėȜv1b繐汚
values: values:
- "378" - "378"
podAffinity: podAffinity:
@ -104,21 +104,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: DoesNotExist operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: matchLabels:
bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I: x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4 Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaces: namespaces:
- "397" - "397"
topologyKey: "398" topologyKey: "398"
weight: 801902541 weight: 1195176401
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: K_A-_9_Z_C..7o_x3..-.8-Jp-94 - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
h-up52--sjo7799-skj5--9/R_rm: CR.s--f.-f.-zv._._.o lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I
namespaces: namespaces:
- "389" - "389"
topologyKey: "390" topologyKey: "390"
@ -127,23 +129,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e
operator: NotIn operator: In
values: values:
- txb__-ex-_1_-ODgC_1-_V - ""
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F
namespaces: namespaces:
- "413" - "413"
topologyKey: "414" topologyKey: "414"
weight: -1851436166 weight: -1508769491
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g
operator: DoesNotExist operator: NotIn
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces: namespaces:
- "405" - "405"
topologyKey: "406" topologyKey: "406"
@ -690,17 +694,18 @@ spec:
nodeSelector: nodeSelector:
"358": "359" "358": "359"
overhead: overhead:
4'ď曕椐敛n湙: "310" tHǽ÷閂抰^窄CǙķȈ: "97"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: ý筞X
priority: -1852730577 priority: -1331113536
priorityClassName: "420" priorityClassName: "420"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: mō6µɑ`ȗ<8^翜
restartPolicy: ɭɪǹ0衷, restartPolicy: ɭɪǹ0衷,
runtimeClassName: "425" runtimeClassName: "425"
schedulerName: "415" schedulerName: "415"
securityContext: securityContext:
fsGroup: 2585323675983182372 fsGroup: 2585323675983182372
fsGroupChangePolicy: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
runAsGroup: 6386250802140824739 runAsGroup: 6386250802140824739
runAsNonRoot: false runAsNonRoot: false
runAsUser: -5315960194881172085 runAsUser: -5315960194881172085
@ -724,23 +729,22 @@ spec:
subdomain: "374" subdomain: "374"
terminationGracePeriodSeconds: -3039830979334099524 terminationGracePeriodSeconds: -3039830979334099524
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 緍k¢茤
key: "416" key: "416"
operator: 堺ʣ operator: 抄3昞财Î嘝zʄ!ć
tolerationSeconds: -3532804738923434397 tolerationSeconds: 4096844323391966153
value: "417" value: "417"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz
operator: In operator: DoesNotExist
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5
maxSkew: -150478704 : x_.4dwFbuvEf55Y2k.F-4
maxSkew: 1956797678
topologyKey: "426" topologyKey: "426"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -943,20 +947,19 @@ spec:
updateStrategy: updateStrategy:
rollingUpdate: rollingUpdate:
maxUnavailable: 2 maxUnavailable: 2
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
status: status:
collisionCount: -449319810 collisionCount: 129237050
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2733-02-09T15:36:31Z"
message: "434" message: "434"
reason: "433" reason: "433"
status: '''ƈoIǢ龞瞯å' status:
type: "" type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö'
currentNumberScheduled: -1979737528 currentNumberScheduled: 1606858231
desiredNumberScheduled: -424698834 desiredNumberScheduled: -793692762
numberAvailable: 1660081568 numberAvailable: -1734448297
numberMisscheduled: -1707056814 numberMisscheduled: 1791868025
numberReady: 407742062 numberReady: -1152625369
numberUnavailable: 904244563 numberUnavailable: -1757575936
observedGeneration: 5741439505187758584 observedGeneration: 3839991706170762113
updatedNumberScheduled: 902022378 updatedNumberScheduled: -1292943463

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -96,7 +96,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -704,6 +704,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1155,7 +1155,8 @@
"name": "371", "name": "371",
"value": "372" "value": "372"
} }
] ],
"fsGroupChangePolicy": "蹔ŧ"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1172,7 +1173,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "376", "key": "376",
"operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "operator": "1sȣ±p鋄5",
"values": [ "values": [
"377" "377"
] ]
@ -1181,7 +1182,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "378", "key": "378",
"operator": "埮pɵ{WOŭW灬p", "operator": "幩šeSvEȤƏ埮pɵ",
"values": [ "values": [
"379" "379"
] ]
@ -1192,12 +1193,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 199049889, "weight": -1449289597,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "380", "key": "380",
"operator": "擭銆jʒǚ鍰\\縑", "operator": "",
"values": [ "values": [
"381" "381"
] ]
@ -1206,7 +1207,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "382", "key": "382",
"operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "operator": "ş",
"values": [ "values": [
"383" "383"
] ]
@ -1221,14 +1222,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" "3---93-2-23/8--21kF-c026.i": "9.M.134-5-.q6H_.--t"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "key": "7U_-m.-P.yP9S--858LI__.8U",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"z" "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m"
] ]
} }
] ]
@ -1241,16 +1242,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -217760519, "weight": -280562323,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"c-r.E__-.8_e_l2.._8s--7_3x_-J_....7"
]
} }
] ]
}, },
@ -1267,11 +1271,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1284,18 +1288,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1934575848,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" "ZI-_P..w-W_-nE...-V"
] ]
} }
] ]
@ -1313,10 +1317,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "417", "key": "417",
"operator": "堺ʣ", "operator": "ƴ磳藷曥摮Z Ǐg鲅",
"value": "418", "value": "418",
"effect": "ŽɣB矗E¸", "effect": "癯頯aɴí(Ȟ9\"忕(",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 3807599400818393626
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1328,7 +1332,7 @@
} }
], ],
"priorityClassName": "421", "priorityClassName": "421",
"priority": -1852730577, "priority": 1352980996,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"422" "422"
@ -1345,30 +1349,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ"
} }
], ],
"runtimeClassName": "426", "runtimeClassName": "426",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 547935694,
"topologyKey": "427", "topologyKey": "427",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "Ƨ钖孝0蛮xAǫ\u0026tŧK剛Ʀ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs",
"operator": "In", "operator": "In",
"values": [ "values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I"
] ]
} }
] ]
@ -1379,16 +1383,16 @@
} }
}, },
"status": { "status": {
"replicas": -330302940, "replicas": -1165029050,
"fullyLabeledReplicas": 138911331, "fullyLabeledReplicas": 1893057016,
"readyReplicas": 1613009760, "readyReplicas": -2099726885,
"availableReplicas": -1469601144, "availableReplicas": -928976522,
"observedGeneration": 6703635170896137755, "observedGeneration": 702392770146794584,
"conditions": [ "conditions": [
{ {
"type": "ɡj瓇ɽ丿YƄZZ塖bʘ", "type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ",
"status": "ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å", "status": "ű孖站畦f黹ʩ鹸ɷ",
"lastTransitionTime": "2469-07-10T03:20:34Z", "lastTransitionTime": "2233-10-15T01:58:37Z",
"reason": "434", "reason": "434",
"message": "435" "message": "435"
} }

View File

@ -78,25 +78,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "380" - key: "380"
operator: 擭銆jʒǚ鍰\縑 operator: ""
values: values:
- "381" - "381"
matchFields: matchFields:
- key: "382" - key: "382"
operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ operator: ş
values: values:
- "383" - "383"
weight: 199049889 weight: -1449289597
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "376" - key: "376"
operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 operator: 1sȣ±p鋄5
values: values:
- "377" - "377"
matchFields: matchFields:
- key: "378" - key: "378"
operator: 埮pɵ{WOŭW灬p operator: 幩šeSvEȤƏ埮pɵ
values: values:
- "379" - "379"
podAffinity: podAffinity:
@ -104,23 +104,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11
operator: DoesNotExist operator: NotIn
values:
- c-r.E__-.8_e_l2.._8s--7_3x_-J_....7
matchLabels: matchLabels:
4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX
namespaces: namespaces:
- "398" - "398"
topologyKey: "399" topologyKey: "399"
weight: -217760519 weight: -280562323
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 7U_-m.-P.yP9S--858LI__.8U
operator: NotIn operator: NotIn
values: values:
- z - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m
matchLabels: matchLabels:
4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r 3---93-2-23/8--21kF-c026.i: 9.M.134-5-.q6H_.--t
namespaces: namespaces:
- "390" - "390"
topologyKey: "391" topologyKey: "391"
@ -129,23 +131,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E
operator: NotIn operator: NotIn
values: values:
- txb__-ex-_1_-ODgC_1-_V - ZI-_P..w-W_-nE...-V
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
namespaces: namespaces:
- "414" - "414"
topologyKey: "415" topologyKey: "415"
weight: -1851436166 weight: -1934575848
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu
namespaces: namespaces:
- "406" - "406"
topologyKey: "407" topologyKey: "407"
@ -688,17 +690,18 @@ spec:
nodeSelector: nodeSelector:
"359": "360" "359": "360"
overhead: overhead:
4'ď曕椐敛n湙: "310" Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮
priority: -1852730577 priority: 1352980996
priorityClassName: "421" priorityClassName: "421"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ
restartPolicy: ɘɢ鬍熖B芭花ª瘡 restartPolicy: ɘɢ鬍熖B芭花ª瘡
runtimeClassName: "426" runtimeClassName: "426"
schedulerName: "416" schedulerName: "416"
securityContext: securityContext:
fsGroup: 7124276984274024394 fsGroup: 7124276984274024394
fsGroupChangePolicy: 蹔ŧ
runAsGroup: -779972051078659613 runAsGroup: -779972051078659613
runAsNonRoot: false runAsNonRoot: false
runAsUser: 2179199799235189619 runAsUser: 2179199799235189619
@ -722,23 +725,23 @@ spec:
subdomain: "375" subdomain: "375"
terminationGracePeriodSeconds: 2666412258966278206 terminationGracePeriodSeconds: 2666412258966278206
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 癯頯aɴí(Ȟ9"忕(
key: "417" key: "417"
operator: 堺ʣ operator: ƴ磳藷曥摮Z Ǐg鲅
tolerationSeconds: -3532804738923434397 tolerationSeconds: 3807599400818393626
value: "418" value: "418"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE
maxSkew: -150478704 maxSkew: 547935694
topologyKey: "427" topologyKey: "427"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: Ƨ钖孝0蛮xAǫ&tŧK剛Ʀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -938,14 +941,14 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1469601144 availableReplicas: -928976522
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2233-10-15T01:58:37Z"
message: "435" message: "435"
reason: "434" reason: "434"
status: ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å status: ű孖站畦f黹ʩ鹸ɷ
type: ɡj瓇ɽ丿YƄZZ塖bʘ type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ
fullyLabeledReplicas: 138911331 fullyLabeledReplicas: 1893057016
observedGeneration: 6703635170896137755 observedGeneration: 702392770146794584
readyReplicas: 1613009760 readyReplicas: -2099726885
replicas: -330302940 replicas: -1165029050

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -91,7 +91,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -699,6 +699,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -98,7 +98,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -706,6 +706,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -91,7 +91,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -699,6 +699,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1158,7 +1158,8 @@
"name": "370", "name": "370",
"value": "371" "value": "371"
} }
] ],
"fsGroupChangePolicy": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1175,7 +1176,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "375", "key": "375",
"operator": "Ã茓pȓɻ", "operator": "Ǚ(",
"values": [ "values": [
"376" "376"
] ]
@ -1184,7 +1185,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "377", "key": "377",
"operator": "", "operator": "瘍Nʊ輔3璾ėȜv1b繐汚",
"values": [ "values": [
"378" "378"
] ]
@ -1195,12 +1196,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -767058113, "weight": 702968201,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "379", "key": "379",
"operator": "Ǹ|蕎'佉賞ǧĒz", "operator": "n覦灲閈誹ʅ蕉",
"values": [ "values": [
"380" "380"
] ]
@ -1209,7 +1210,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "381", "key": "381",
"operator": "ùfŭƽ", "operator": "",
"values": [ "values": [
"382" "382"
] ]
@ -1224,11 +1225,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"h-up52--sjo7799-skj5--9/R_rm": "CR.s--f.-f.-zv._._.o" "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "K_A-_9_Z_C..7o_x3..-.8-Jp-94", "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1241,16 +1242,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 801902541, "weight": 1195176401,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I": "x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4" "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"0..KpiS.oK-.O--5-yp8q_s-L"
]
} }
] ]
}, },
@ -1267,12 +1271,15 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"VT3sn-0_.i__a.O2G_J"
]
} }
] ]
}, },
@ -1284,18 +1291,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1508769491,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e",
"operator": "NotIn", "operator": "In",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" ""
] ]
} }
] ]
@ -1313,10 +1320,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "416", "key": "416",
"operator": "堺ʣ", "operator": "抄3昞财Î嘝zʄ!ć",
"value": "417", "value": "417",
"effect": "ŽɣB矗E¸", "effect": "緍k¢茤",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 4096844323391966153
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1328,7 +1335,7 @@
} }
], ],
"priorityClassName": "420", "priorityClassName": "420",
"priority": -1852730577, "priority": -1331113536,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"421" "421"
@ -1345,31 +1352,28 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "mō6µɑ`ȗ\u003c8^翜"
} }
], ],
"runtimeClassName": "425", "runtimeClassName": "425",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "ý筞X",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "tHǽ÷閂抰^窄CǙķȈ": "97"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 1956797678,
"topologyKey": "426", "topologyKey": "426",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz",
"operator": "In", "operator": "DoesNotExist"
"values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ"
]
} }
] ]
} }
@ -1378,29 +1382,28 @@
} }
}, },
"updateStrategy": { "updateStrategy": {
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
"rollingUpdate": { "rollingUpdate": {
"maxUnavailable": 2 "maxUnavailable": 2
} }
}, },
"minReadySeconds": 212061711, "minReadySeconds": 997447044,
"revisionHistoryLimit": -1092090658 "revisionHistoryLimit": 989524452
}, },
"status": { "status": {
"currentNumberScheduled": -1979737528, "currentNumberScheduled": 1606858231,
"numberMisscheduled": -1707056814, "numberMisscheduled": 1791868025,
"desiredNumberScheduled": -424698834, "desiredNumberScheduled": -793692762,
"numberReady": 407742062, "numberReady": -1152625369,
"observedGeneration": 5741439505187758584, "observedGeneration": 3839991706170762113,
"updatedNumberScheduled": 902022378, "updatedNumberScheduled": -1292943463,
"numberAvailable": 1660081568, "numberAvailable": -1734448297,
"numberUnavailable": 904244563, "numberUnavailable": -1757575936,
"collisionCount": -449319810, "collisionCount": 129237050,
"conditions": [ "conditions": [
{ {
"type": "", "type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö",
"status": "'ƈoIǢ龞瞯å", "status": "",
"lastTransitionTime": "2469-07-10T03:20:34Z", "lastTransitionTime": "2733-02-09T15:36:31Z",
"reason": "433", "reason": "433",
"message": "434" "message": "434"
} }

View File

@ -30,8 +30,8 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 212061711 minReadySeconds: 997447044
revisionHistoryLimit: -1092090658 revisionHistoryLimit: 989524452
selector: selector:
matchExpressions: matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@ -78,25 +78,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "379" - key: "379"
operator: Ǹ|蕎'佉賞ǧĒz operator: n覦灲閈誹ʅ蕉
values: values:
- "380" - "380"
matchFields: matchFields:
- key: "381" - key: "381"
operator: ùfŭƽ operator: ""
values: values:
- "382" - "382"
weight: -767058113 weight: 702968201
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "375" - key: "375"
operator: Ã茓pȓɻ operator: Ǚ(
values: values:
- "376" - "376"
matchFields: matchFields:
- key: "377" - key: "377"
operator: "" operator: 瘍Nʊ輔3璾ėȜv1b繐汚
values: values:
- "378" - "378"
podAffinity: podAffinity:
@ -104,21 +104,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: DoesNotExist operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: matchLabels:
bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I: x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4 Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaces: namespaces:
- "397" - "397"
topologyKey: "398" topologyKey: "398"
weight: 801902541 weight: 1195176401
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: K_A-_9_Z_C..7o_x3..-.8-Jp-94 - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
h-up52--sjo7799-skj5--9/R_rm: CR.s--f.-f.-zv._._.o lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I
namespaces: namespaces:
- "389" - "389"
topologyKey: "390" topologyKey: "390"
@ -127,23 +129,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e
operator: NotIn operator: In
values: values:
- txb__-ex-_1_-ODgC_1-_V - ""
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F
namespaces: namespaces:
- "413" - "413"
topologyKey: "414" topologyKey: "414"
weight: -1851436166 weight: -1508769491
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g
operator: DoesNotExist operator: NotIn
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces: namespaces:
- "405" - "405"
topologyKey: "406" topologyKey: "406"
@ -690,17 +694,18 @@ spec:
nodeSelector: nodeSelector:
"358": "359" "358": "359"
overhead: overhead:
4'ď曕椐敛n湙: "310" tHǽ÷閂抰^窄CǙķȈ: "97"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: ý筞X
priority: -1852730577 priority: -1331113536
priorityClassName: "420" priorityClassName: "420"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: mō6µɑ`ȗ<8^翜
restartPolicy: ɭɪǹ0衷, restartPolicy: ɭɪǹ0衷,
runtimeClassName: "425" runtimeClassName: "425"
schedulerName: "415" schedulerName: "415"
securityContext: securityContext:
fsGroup: 2585323675983182372 fsGroup: 2585323675983182372
fsGroupChangePolicy: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
runAsGroup: 6386250802140824739 runAsGroup: 6386250802140824739
runAsNonRoot: false runAsNonRoot: false
runAsUser: -5315960194881172085 runAsUser: -5315960194881172085
@ -724,23 +729,22 @@ spec:
subdomain: "374" subdomain: "374"
terminationGracePeriodSeconds: -3039830979334099524 terminationGracePeriodSeconds: -3039830979334099524
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 緍k¢茤
key: "416" key: "416"
operator: 堺ʣ operator: 抄3昞财Î嘝zʄ!ć
tolerationSeconds: -3532804738923434397 tolerationSeconds: 4096844323391966153
value: "417" value: "417"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz
operator: In operator: DoesNotExist
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5
maxSkew: -150478704 : x_.4dwFbuvEf55Y2k.F-4
maxSkew: 1956797678
topologyKey: "426" topologyKey: "426"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -943,20 +947,19 @@ spec:
updateStrategy: updateStrategy:
rollingUpdate: rollingUpdate:
maxUnavailable: 2 maxUnavailable: 2
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
status: status:
collisionCount: -449319810 collisionCount: 129237050
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2733-02-09T15:36:31Z"
message: "434" message: "434"
reason: "433" reason: "433"
status: '''ƈoIǢ龞瞯å' status:
type: "" type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö'
currentNumberScheduled: -1979737528 currentNumberScheduled: 1606858231
desiredNumberScheduled: -424698834 desiredNumberScheduled: -793692762
numberAvailable: 1660081568 numberAvailable: -1734448297
numberMisscheduled: -1707056814 numberMisscheduled: 1791868025
numberReady: 407742062 numberReady: -1152625369
numberUnavailable: 904244563 numberUnavailable: -1757575936
observedGeneration: 5741439505187758584 observedGeneration: 3839991706170762113
updatedNumberScheduled: 902022378 updatedNumberScheduled: -1292943463

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -96,7 +96,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -704,6 +704,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1155,7 +1155,8 @@
"name": "371", "name": "371",
"value": "372" "value": "372"
} }
] ],
"fsGroupChangePolicy": "蹔ŧ"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1172,7 +1173,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "376", "key": "376",
"operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "operator": "1sȣ±p鋄5",
"values": [ "values": [
"377" "377"
] ]
@ -1181,7 +1182,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "378", "key": "378",
"operator": "埮pɵ{WOŭW灬p", "operator": "幩šeSvEȤƏ埮pɵ",
"values": [ "values": [
"379" "379"
] ]
@ -1192,12 +1193,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 199049889, "weight": -1449289597,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "380", "key": "380",
"operator": "擭銆jʒǚ鍰\\縑", "operator": "",
"values": [ "values": [
"381" "381"
] ]
@ -1206,7 +1207,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "382", "key": "382",
"operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "operator": "ş",
"values": [ "values": [
"383" "383"
] ]
@ -1221,14 +1222,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" "3---93-2-23/8--21kF-c026.i": "9.M.134-5-.q6H_.--t"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "key": "7U_-m.-P.yP9S--858LI__.8U",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"z" "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m"
] ]
} }
] ]
@ -1241,16 +1242,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -217760519, "weight": -280562323,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"c-r.E__-.8_e_l2.._8s--7_3x_-J_....7"
]
} }
] ]
}, },
@ -1267,11 +1271,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1284,18 +1288,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1934575848,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" "ZI-_P..w-W_-nE...-V"
] ]
} }
] ]
@ -1313,10 +1317,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "417", "key": "417",
"operator": "堺ʣ", "operator": "ƴ磳藷曥摮Z Ǐg鲅",
"value": "418", "value": "418",
"effect": "ŽɣB矗E¸", "effect": "癯頯aɴí(Ȟ9\"忕(",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 3807599400818393626
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1328,7 +1332,7 @@
} }
], ],
"priorityClassName": "421", "priorityClassName": "421",
"priority": -1852730577, "priority": 1352980996,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"422" "422"
@ -1345,30 +1349,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ"
} }
], ],
"runtimeClassName": "426", "runtimeClassName": "426",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 547935694,
"topologyKey": "427", "topologyKey": "427",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "Ƨ钖孝0蛮xAǫ\u0026tŧK剛Ʀ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs",
"operator": "In", "operator": "In",
"values": [ "values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I"
] ]
} }
] ]
@ -1379,16 +1383,16 @@
} }
}, },
"status": { "status": {
"replicas": -330302940, "replicas": -1165029050,
"fullyLabeledReplicas": 138911331, "fullyLabeledReplicas": 1893057016,
"readyReplicas": 1613009760, "readyReplicas": -2099726885,
"availableReplicas": -1469601144, "availableReplicas": -928976522,
"observedGeneration": 6703635170896137755, "observedGeneration": 702392770146794584,
"conditions": [ "conditions": [
{ {
"type": "ɡj瓇ɽ丿YƄZZ塖bʘ", "type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ",
"status": "ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å", "status": "ű孖站畦f黹ʩ鹸ɷ",
"lastTransitionTime": "2469-07-10T03:20:34Z", "lastTransitionTime": "2233-10-15T01:58:37Z",
"reason": "434", "reason": "434",
"message": "435" "message": "435"
} }

View File

@ -78,25 +78,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "380" - key: "380"
operator: 擭銆jʒǚ鍰\縑 operator: ""
values: values:
- "381" - "381"
matchFields: matchFields:
- key: "382" - key: "382"
operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ operator: ş
values: values:
- "383" - "383"
weight: 199049889 weight: -1449289597
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "376" - key: "376"
operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 operator: 1sȣ±p鋄5
values: values:
- "377" - "377"
matchFields: matchFields:
- key: "378" - key: "378"
operator: 埮pɵ{WOŭW灬p operator: 幩šeSvEȤƏ埮pɵ
values: values:
- "379" - "379"
podAffinity: podAffinity:
@ -104,23 +104,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11
operator: DoesNotExist operator: NotIn
values:
- c-r.E__-.8_e_l2.._8s--7_3x_-J_....7
matchLabels: matchLabels:
4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX
namespaces: namespaces:
- "398" - "398"
topologyKey: "399" topologyKey: "399"
weight: -217760519 weight: -280562323
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 7U_-m.-P.yP9S--858LI__.8U
operator: NotIn operator: NotIn
values: values:
- z - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m
matchLabels: matchLabels:
4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r 3---93-2-23/8--21kF-c026.i: 9.M.134-5-.q6H_.--t
namespaces: namespaces:
- "390" - "390"
topologyKey: "391" topologyKey: "391"
@ -129,23 +131,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E
operator: NotIn operator: NotIn
values: values:
- txb__-ex-_1_-ODgC_1-_V - ZI-_P..w-W_-nE...-V
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
namespaces: namespaces:
- "414" - "414"
topologyKey: "415" topologyKey: "415"
weight: -1851436166 weight: -1934575848
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu
namespaces: namespaces:
- "406" - "406"
topologyKey: "407" topologyKey: "407"
@ -688,17 +690,18 @@ spec:
nodeSelector: nodeSelector:
"359": "360" "359": "360"
overhead: overhead:
4'ď曕椐敛n湙: "310" Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮
priority: -1852730577 priority: 1352980996
priorityClassName: "421" priorityClassName: "421"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ
restartPolicy: ɘɢ鬍熖B芭花ª瘡 restartPolicy: ɘɢ鬍熖B芭花ª瘡
runtimeClassName: "426" runtimeClassName: "426"
schedulerName: "416" schedulerName: "416"
securityContext: securityContext:
fsGroup: 7124276984274024394 fsGroup: 7124276984274024394
fsGroupChangePolicy: 蹔ŧ
runAsGroup: -779972051078659613 runAsGroup: -779972051078659613
runAsNonRoot: false runAsNonRoot: false
runAsUser: 2179199799235189619 runAsUser: 2179199799235189619
@ -722,23 +725,23 @@ spec:
subdomain: "375" subdomain: "375"
terminationGracePeriodSeconds: 2666412258966278206 terminationGracePeriodSeconds: 2666412258966278206
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 癯頯aɴí(Ȟ9"忕(
key: "417" key: "417"
operator: 堺ʣ operator: ƴ磳藷曥摮Z Ǐg鲅
tolerationSeconds: -3532804738923434397 tolerationSeconds: 3807599400818393626
value: "418" value: "418"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE
maxSkew: -150478704 maxSkew: 547935694
topologyKey: "427" topologyKey: "427"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: Ƨ钖孝0蛮xAǫ&tŧK剛Ʀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -938,14 +941,14 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1469601144 availableReplicas: -928976522
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2233-10-15T01:58:37Z"
message: "435" message: "435"
reason: "434" reason: "434"
status: ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å status: ű孖站畦f黹ʩ鹸ɷ
type: ɡj瓇ɽ丿YƄZZ塖bʘ type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ
fullyLabeledReplicas: 138911331 fullyLabeledReplicas: 1893057016
observedGeneration: 6703635170896137755 observedGeneration: 702392770146794584
readyReplicas: 1613009760 readyReplicas: -2099726885
replicas: -330302940 replicas: -1165029050

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -91,7 +91,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -699,6 +699,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1159,7 +1159,8 @@
"name": "367", "name": "367",
"value": "368" "value": "368"
} }
] ],
"fsGroupChangePolicy": "展}硐庰%皧V垾现葢ŵ橨鬶l獕;跣"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1176,7 +1177,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "372", "key": "372",
"operator": "皥贸碔lNKƙ順\\E¦队", "operator": "揻-$ɽ丟×x",
"values": [ "values": [
"373" "373"
] ]
@ -1185,7 +1186,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "374", "key": "374",
"operator": "跣Hǝcw媀瓄\u0026翜舞拉Œɥ颶", "operator": "妧Ö闊",
"values": [ "values": [
"375" "375"
] ]
@ -1196,12 +1197,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 1907998540, "weight": -1666319281,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "376", "key": "376",
"operator": " 鰔澝qV訆ƎżŧL²", "operator": "",
"values": [ "values": [
"377" "377"
] ]
@ -1210,7 +1211,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "378", "key": "378",
"operator": "Ä蚃ɣľ)酊龨δ摖ȱğ_\u003c", "operator": "蘇KŅ/»頸+SÄ蚃",
"values": [ "values": [
"379" "379"
] ]
@ -1225,12 +1226,15 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"n5v-5925a-x12a-214-3s--gg93--p.2ql/B-.--g": "Y1" "2-_.uB-.--.gb_2_-8-----yJY.__-X_.8xN._-_-vv-Q2qz.W..4....-0": "5GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4--.-_Z3"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/4_.-_-_-...1py_8-3..s._.x2", "key": "y-9-te858----38----r-0.h-up52--sjo7799-skj5--9/H.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.7",
"operator": "Exists" "operator": "In",
"values": [
"q..csh-3--Z1Tvw39F_C-rtSY.gR"
]
} }
] ]
}, },
@ -1242,15 +1246,15 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1058923098, "weight": -478839383,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7": "m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1" "e..Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_Wf": "53_-1y_8D_XX"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M", "key": "O._D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.99",
"operator": "Exists" "operator": "Exists"
} }
] ]
@ -1268,12 +1272,12 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" "0--1----v8-4--558n1asz-r886-1--s/t": "r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "v8_.O_..8n.--z_-..6W.K", "key": "67F3p2_-_AmD-.0P",
"operator": "Exists" "operator": "DoesNotExist"
} }
] ]
}, },
@ -1285,19 +1289,16 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -168773629, "weight": -1560706624,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"x-3/6-.7D.3_KPgL": "d._.Um.-__k.5" "x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5": "bB3_.b17ca-p"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C", "key": "1rhm-5y--z-0/5eQ9",
"operator": "In", "operator": "DoesNotExist"
"values": [
"p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw"
]
} }
] ]
}, },
@ -1314,10 +1315,9 @@
"tolerations": [ "tolerations": [
{ {
"key": "413", "key": "413",
"operator": "栣险¹贮獘薟8Mĕ霉",
"value": "414", "value": "414",
"effect": "ŪǗȦɆ悼j蛑q", "effect": "ɂ挃Ū",
"tolerationSeconds": 4375148957048018073 "tolerationSeconds": 4056431723868092838
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1329,7 +1329,7 @@
} }
], ],
"priorityClassName": "417", "priorityClassName": "417",
"priority": -1286809305, "priority": -1965712376,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"418" "418"
@ -1346,30 +1346,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ųŎ群E牬庘颮6(|ǖû" "conditionType": "沷¾!蘋`翾"
} }
], ],
"runtimeClassName": "422", "runtimeClassName": "422",
"enableServiceLinks": false, "enableServiceLinks": true,
"preemptionPolicy": "怨彬ɈNƋl塠傫ü", "preemptionPolicy": "Ŏ群E牬",
"overhead": { "overhead": {
"ɮ6)": "299" "颮6(|ǖûǭg怨彬ɈNƋl塠": "609"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -554557703, "maxSkew": 163034368,
"topologyKey": "423", "topologyKey": "423",
"whenUnsatisfiable": "¹t骳ɰɰUʜʔŜ0¢", "whenUnsatisfiable": "ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l": "b-L7.-__-G_2kCpS__.3g" "7p--3zm-lx300w-tj-5.a-50/Z659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4": "gD.._.-x6db-L7.-_m"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A", "key": "Y.39g_.--_-_ve5.m_U",
"operator": "In", "operator": "NotIn",
"values": [ "values": [
"7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx" "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
] ]
} }
] ]
@ -1378,21 +1378,21 @@
] ]
} }
}, },
"ttlSecondsAfterFinished": -1574276574 "ttlSecondsAfterFinished": -596285123
}, },
"status": { "status": {
"conditions": [ "conditions": [
{ {
"type": "ļė[BN柌ë娒汙查o*Ĵ麻齔試", "type": "續-ÚŜĂwǐ擨^幸$Ż料",
"status": "", "status": "色苆试揯遐e",
"lastProbeTime": "2756-02-27T11:08:58Z", "lastProbeTime": "2947-08-17T19:40:02Z",
"lastTransitionTime": "2296-12-01T04:10:44Z", "lastTransitionTime": "2374-06-16T11:34:18Z",
"reason": "430", "reason": "430",
"message": "431" "message": "431"
} }
], ],
"active": -125022959, "active": 1921346963,
"succeeded": 186118994, "succeeded": 135144999,
"failed": 115522160 "failed": 1357487443
} }
} }

View File

@ -81,25 +81,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "376" - key: "376"
operator: ' 鰔澝qV訆ƎżŧL²' operator: ""
values: values:
- "377" - "377"
matchFields: matchFields:
- key: "378" - key: "378"
operator: Ä蚃ɣľ)酊龨δ摖ȱğ_< operator: 蘇KŅ/»頸+SÄ蚃
values: values:
- "379" - "379"
weight: 1907998540 weight: -1666319281
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "372" - key: "372"
operator: 皥贸碔lNKƙ順\E¦队 operator: 揻-$ɽ丟×x
values: values:
- "373" - "373"
matchFields: matchFields:
- key: "374" - key: "374"
operator: 跣Hǝcw媀瓄&翜舞拉Œɥ operator: 妧Ö闊
values: values:
- "375" - "375"
podAffinity: podAffinity:
@ -107,21 +107,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M - key: O._D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.99
operator: Exists operator: Exists
matchLabels: matchLabels:
3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7: m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1 e..Or_-.3OHgt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_Wf: 53_-1y_8D_XX
namespaces: namespaces:
- "394" - "394"
topologyKey: "395" topologyKey: "395"
weight: -1058923098 weight: -478839383
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/4_.-_-_-...1py_8-3..s._.x2 - key: y-9-te858----38----r-0.h-up52--sjo7799-skj5--9/H.I3.__-.0-z_z0sn_.hx_-a__0-8-.M-.7
operator: Exists operator: In
values:
- q..csh-3--Z1Tvw39F_C-rtSY.gR
matchLabels: matchLabels:
n5v-5925a-x12a-214-3s--gg93--p.2ql/B-.--g: Y1 2-_.uB-.--.gb_2_-8-----yJY.__-X_.8xN._-_-vv-Q2qz.W..4....-0: 5GgT7_7B_D-..-.k4u-zA_--_.-.6GA26C-s.Nj-d-4_4--.-_Z3
namespaces: namespaces:
- "386" - "386"
topologyKey: "387" topologyKey: "387"
@ -130,23 +132,21 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C - key: 1rhm-5y--z-0/5eQ9
operator: In operator: DoesNotExist
values:
- p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw
matchLabels: matchLabels:
x-3/6-.7D.3_KPgL: d._.Um.-__k.5 x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..6-5: bB3_.b17ca-p
namespaces: namespaces:
- "410" - "410"
topologyKey: "411" topologyKey: "411"
weight: -168773629 weight: -1560706624
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: v8_.O_..8n.--z_-..6W.K - key: 67F3p2_-_AmD-.0P
operator: Exists operator: DoesNotExist
matchLabels: matchLabels:
sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 0--1----v8-4--558n1asz-r886-1--s/t: r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp5
namespaces: namespaces:
- "402" - "402"
topologyKey: "403" topologyKey: "403"
@ -333,7 +333,7 @@ spec:
searches: searches:
- "419" - "419"
dnsPolicy: 遰=E dnsPolicy: 遰=E
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "289" - "289"
@ -691,17 +691,18 @@ spec:
nodeSelector: nodeSelector:
"355": "356" "355": "356"
overhead: overhead:
ɮ6): "299" 颮6(|ǖûǭg怨彬ɈNƋl塠: "609"
preemptionPolicy: 怨彬ɈNƋl塠傫ü preemptionPolicy: Ŏ群E牬
priority: -1286809305 priority: -1965712376
priorityClassName: "417" priorityClassName: "417"
readinessGates: readinessGates:
- conditionType: ųŎ群E牬庘颮6(|ǖû - conditionType: 沷¾!蘋`翾
restartPolicy: 媁荭gw忊 restartPolicy: 媁荭gw忊
runtimeClassName: "422" runtimeClassName: "422"
schedulerName: "412" schedulerName: "412"
securityContext: securityContext:
fsGroup: -1212012606981050727 fsGroup: -1212012606981050727
fsGroupChangePolicy: 展}硐庰%皧V垾现葢ŵ橨鬶l獕;跣
runAsGroup: 2695823502041400376 runAsGroup: 2695823502041400376
runAsNonRoot: false runAsNonRoot: false
runAsUser: 2651364835047718925 runAsUser: 2651364835047718925
@ -725,23 +726,22 @@ spec:
subdomain: "371" subdomain: "371"
terminationGracePeriodSeconds: -4333562938396485230 terminationGracePeriodSeconds: -4333562938396485230
tolerations: tolerations:
- effect: ŪǗȦɆ悼j蛑q - effect: ɂ挃Ū
key: "413" key: "413"
operator: 栣险¹贮獘薟8Mĕ霉 tolerationSeconds: 4056431723868092838
tolerationSeconds: 4375148957048018073
value: "414" value: "414"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: nw0-3i--a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h---0-u73pj.brgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--itk/5.m_2_--XZ-x.__.Y_2-n_5023Xl-3Pw_-r75--_A - key: Y.39g_.--_-_ve5.m_U
operator: In operator: NotIn
values: values:
- 7M7y-Dy__3wc.q.8_00.0_._.-_L-__bf_9_-C-Pfx - nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
matchLabels: matchLabels:
o--5r-v-5-e-m78o-6-s.4-7--i1-8miw-7a-2408m-0--5--2-5----00/l_.23--_l: b-L7.-__-G_2kCpS__.3g 7p--3zm-lx300w-tj-5.a-50/Z659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4: gD.._.-x6db-L7.-_m
maxSkew: -554557703 maxSkew: 163034368
topologyKey: "423" topologyKey: "423"
whenUnsatisfiable: ¹t骳ɰɰUʜʔŜ0¢ whenUnsatisfiable: ĄÇ稕Eɒ杞¹t骳ɰɰUʜʔŜ0¢啥Ƶ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -939,15 +939,15 @@ spec:
storagePolicyID: "104" storagePolicyID: "104"
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
ttlSecondsAfterFinished: -1574276574 ttlSecondsAfterFinished: -596285123
status: status:
active: -125022959 active: 1921346963
conditions: conditions:
- lastProbeTime: "2756-02-27T11:08:58Z" - lastProbeTime: "2947-08-17T19:40:02Z"
lastTransitionTime: "2296-12-01T04:10:44Z" lastTransitionTime: "2374-06-16T11:34:18Z"
message: "431" message: "431"
reason: "430" reason: "430"
status: status: 色苆试揯遐e
type: ļė[BN柌ë娒汙查o*Ĵ麻齔試 type: 續-ÚŜĂwǐ擨^幸$Ż料
failed: 115522160 failed: 1357487443
succeeded: 186118994 succeeded: 135144999

View File

@ -1202,7 +1202,8 @@
"name": "384", "name": "384",
"value": "385" "value": "385"
} }
] ],
"fsGroupChangePolicy": "蹔ŧ"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1219,7 +1220,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "389", "key": "389",
"operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "operator": "1sȣ±p鋄5",
"values": [ "values": [
"390" "390"
] ]
@ -1228,7 +1229,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "391", "key": "391",
"operator": "埮pɵ{WOŭW灬p", "operator": "幩šeSvEȤƏ埮pɵ",
"values": [ "values": [
"392" "392"
] ]
@ -1239,12 +1240,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 199049889, "weight": -1449289597,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "393", "key": "393",
"operator": "擭銆jʒǚ鍰\\縑", "operator": "",
"values": [ "values": [
"394" "394"
] ]
@ -1253,7 +1254,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "395", "key": "395",
"operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "operator": "ş",
"values": [ "values": [
"396" "396"
] ]
@ -1268,14 +1269,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" "3---93-2-23/8--21kF-c026.i": "9.M.134-5-.q6H_.--t"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "key": "7U_-m.-P.yP9S--858LI__.8U",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"z" "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m"
] ]
} }
] ]
@ -1288,16 +1289,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -217760519, "weight": -280562323,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"c-r.E__-.8_e_l2.._8s--7_3x_-J_....7"
]
} }
] ]
}, },
@ -1314,11 +1318,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1331,18 +1335,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1934575848,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" "ZI-_P..w-W_-nE...-V"
] ]
} }
] ]
@ -1360,10 +1364,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "430", "key": "430",
"operator": "堺ʣ", "operator": "ƴ磳藷曥摮Z Ǐg鲅",
"value": "431", "value": "431",
"effect": "ŽɣB矗E¸", "effect": "癯頯aɴí(Ȟ9\"忕(",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 3807599400818393626
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1375,7 +1379,7 @@
} }
], ],
"priorityClassName": "434", "priorityClassName": "434",
"priority": -1852730577, "priority": 1352980996,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"435" "435"
@ -1392,30 +1396,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ"
} }
], ],
"runtimeClassName": "439", "runtimeClassName": "439",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 547935694,
"topologyKey": "440", "topologyKey": "440",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "Ƨ钖孝0蛮xAǫ\u0026tŧK剛Ʀ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs",
"operator": "In", "operator": "In",
"values": [ "values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I"
] ]
} }
] ]
@ -1424,11 +1428,11 @@
] ]
} }
}, },
"ttlSecondsAfterFinished": 920774957 "ttlSecondsAfterFinished": -1754419098
} }
}, },
"successfulJobsHistoryLimit": 1613009760, "successfulJobsHistoryLimit": -2099726885,
"failedJobsHistoryLimit": 1560811691 "failedJobsHistoryLimit": 163538560
}, },
"status": { "status": {
"active": [ "active": [
@ -1436,7 +1440,7 @@
"kind": "447", "kind": "447",
"namespace": "448", "namespace": "448",
"name": "449", "name": "449",
"uid": "Ŋ)TiD¢ƿ媴h", "uid": "ɦ?鮻ȧH僠 \u0026G",
"apiVersion": "450", "apiVersion": "450",
"resourceVersion": "451", "resourceVersion": "451",
"fieldPath": "452" "fieldPath": "452"

View File

@ -31,7 +31,7 @@ metadata:
uid: "7" uid: "7"
spec: spec:
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
failedJobsHistoryLimit: 1560811691 failedJobsHistoryLimit: 163538560
jobTemplate: jobTemplate:
metadata: metadata:
annotations: annotations:
@ -112,25 +112,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "393" - key: "393"
operator: 擭銆jʒǚ鍰\縑 operator: ""
values: values:
- "394" - "394"
matchFields: matchFields:
- key: "395" - key: "395"
operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ operator: ş
values: values:
- "396" - "396"
weight: 199049889 weight: -1449289597
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "389" - key: "389"
operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 operator: 1sȣ±p鋄5
values: values:
- "390" - "390"
matchFields: matchFields:
- key: "391" - key: "391"
operator: 埮pɵ{WOŭW灬p operator: 幩šeSvEȤƏ埮pɵ
values: values:
- "392" - "392"
podAffinity: podAffinity:
@ -138,23 +138,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11
operator: DoesNotExist operator: NotIn
values:
- c-r.E__-.8_e_l2.._8s--7_3x_-J_....7
matchLabels: matchLabels:
4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX
namespaces: namespaces:
- "411" - "411"
topologyKey: "412" topologyKey: "412"
weight: -217760519 weight: -280562323
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 7U_-m.-P.yP9S--858LI__.8U
operator: NotIn operator: NotIn
values: values:
- z - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m
matchLabels: matchLabels:
4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r 3---93-2-23/8--21kF-c026.i: 9.M.134-5-.q6H_.--t
namespaces: namespaces:
- "403" - "403"
topologyKey: "404" topologyKey: "404"
@ -163,23 +165,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E
operator: NotIn operator: NotIn
values: values:
- txb__-ex-_1_-ODgC_1-_V - ZI-_P..w-W_-nE...-V
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
namespaces: namespaces:
- "427" - "427"
topologyKey: "428" topologyKey: "428"
weight: -1851436166 weight: -1934575848
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu
namespaces: namespaces:
- "419" - "419"
topologyKey: "420" topologyKey: "420"
@ -724,17 +726,18 @@ spec:
nodeSelector: nodeSelector:
"372": "373" "372": "373"
overhead: overhead:
4'ď曕椐敛n湙: "310" Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮
priority: -1852730577 priority: 1352980996
priorityClassName: "434" priorityClassName: "434"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ
restartPolicy: ɘɢ鬍熖B芭花ª瘡 restartPolicy: ɘɢ鬍熖B芭花ª瘡
runtimeClassName: "439" runtimeClassName: "439"
schedulerName: "429" schedulerName: "429"
securityContext: securityContext:
fsGroup: 7124276984274024394 fsGroup: 7124276984274024394
fsGroupChangePolicy: 蹔ŧ
runAsGroup: -779972051078659613 runAsGroup: -779972051078659613
runAsNonRoot: false runAsNonRoot: false
runAsUser: 2179199799235189619 runAsUser: 2179199799235189619
@ -758,23 +761,23 @@ spec:
subdomain: "388" subdomain: "388"
terminationGracePeriodSeconds: 2666412258966278206 terminationGracePeriodSeconds: 2666412258966278206
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 癯頯aɴí(Ȟ9"忕(
key: "430" key: "430"
operator: 堺ʣ operator: ƴ磳藷曥摮Z Ǐg鲅
tolerationSeconds: -3532804738923434397 tolerationSeconds: 3807599400818393626
value: "431" value: "431"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE
maxSkew: -150478704 maxSkew: 547935694
topologyKey: "440" topologyKey: "440"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: Ƨ钖孝0蛮xAǫ&tŧK剛Ʀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "65" fsType: "65"
@ -973,10 +976,10 @@ spec:
storagePolicyID: "122" storagePolicyID: "122"
storagePolicyName: "121" storagePolicyName: "121"
volumePath: "119" volumePath: "119"
ttlSecondsAfterFinished: 920774957 ttlSecondsAfterFinished: -1754419098
schedule: "19" schedule: "19"
startingDeadlineSeconds: -2555947251840004808 startingDeadlineSeconds: -2555947251840004808
successfulJobsHistoryLimit: 1613009760 successfulJobsHistoryLimit: -2099726885
suspend: true suspend: true
status: status:
active: active:
@ -986,4 +989,4 @@ status:
name: "449" name: "449"
namespace: "448" namespace: "448"
resourceVersion: "451" resourceVersion: "451"
uid: Ŋ)TiD¢ƿ媴h uid: ɦ?鮻ȧH僠 &G

View File

@ -1203,7 +1203,8 @@
"name": "380", "name": "380",
"value": "381" "value": "381"
} }
] ],
"fsGroupChangePolicy": "ɱďW賁Ě"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1220,7 +1221,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "385", "key": "385",
"operator": "餑噭DµņP)", "operator": ")DŽ髐njʉBn(fǂ",
"values": [ "values": [
"386" "386"
] ]
@ -1229,7 +1230,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "387", "key": "387",
"operator": "ƷƣMț", "operator": "鑳w妕眵笭/9崍h趭",
"values": [ "values": [
"388" "388"
] ]
@ -1240,12 +1241,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1588068441, "weight": -17241638,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "389", "key": "389",
"operator": "W疪鑳w妕眵", "operator": "E增猍",
"values": [ "values": [
"390" "390"
] ]
@ -1254,7 +1255,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "391", "key": "391",
"operator": "躒訙Ǫʓ)ǂť嗆u8晲T[irȎ", "operator": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
"values": [ "values": [
"392" "392"
] ]
@ -1269,12 +1270,15 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p": "H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v" "83980c7f0p-3-----995----5sumf7ef8jzv4-9-35o-1-5w5z3-d----0p--8.463--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---fn/d.-.-8v-J1zET_..3dCv3j._.-_pH": "G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97", "key": "lk9-8609a-e0--1----v8-4--558n1asz-r886-1--0s-t1e--mv56.l203-8sln7-3x-b--55039780bdw0-9/7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mej",
"operator": "Exists" "operator": "In",
"values": [
"7-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-C"
]
} }
] ]
}, },
@ -1286,19 +1290,16 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 2102595797, "weight": 1792673033,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3": "8.3_t_-l..-.DG7r-3.----._4__Xn" "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "Ue_l2.._8s--Z", "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81",
"operator": "In", "operator": "DoesNotExist"
"values": [
"A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a"
]
} }
] ]
}, },
@ -1315,14 +1316,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"D-0": "P.-.C_--.5" "3-72q--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pu.exr-1-o--g--1l-8---3snw0-3i--a2/4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.U": "4wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m3"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX", "key": "rN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-n8",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"1_xJ1-lFA_Xf3.V0H2-.zHw.H__7" "8u.._-__BM.6-.Y_72-_--pT751"
] ]
} }
] ]
@ -1335,16 +1336,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 754095416, "weight": -1229089770,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" "j9-w-n-f-v.yoh782-u---76g---h-4-lx-0-2qg--4i/wwv3D": "s_6O-5_7a"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", "key": "fz2zy0e428-4-k-2-08vc--8/T9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-Q",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV"
]
} }
] ]
}, },
@ -1361,10 +1365,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "426", "key": "426",
"operator": "z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜", "operator": "ȧH僠",
"value": "427", "value": "427",
"effect": "ǣʛsĊ剞鮧軷șlļė[BN柌ë", "effect": "ÙQ阉(闒ƈƳ萎Ŋ\u003ceÙ蝌铀í",
"tolerationSeconds": -9161243904952859304 "tolerationSeconds": 4315581051482382801
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1376,7 +1380,7 @@
} }
], ],
"priorityClassName": "430", "priorityClassName": "430",
"priority": -966330786, "priority": 466142803,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"431" "431"
@ -1393,27 +1397,27 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "齔試ŭ" "conditionType": "帵(弬NĆɜɘ灢7ưg"
} }
], ],
"runtimeClassName": "435", "runtimeClassName": "435",
"enableServiceLinks": false, "enableServiceLinks": true,
"preemptionPolicy": "鬙Ǒȃ绡\u003e堵zŕƧ钖孝0蛮xAǫ", "preemptionPolicy": "Lå\u003cƨ襌ę鶫礗渶刄[",
"overhead": { "overhead": {
"tŧK剛Ʀ魨练脨,Ƃ3貊": "972" "ŚȆĸs": "489"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": 2088809792, "maxSkew": -2146985013,
"topologyKey": "436", "topologyKey": "436",
"whenUnsatisfiable": "縊CkǚŨ镦", "whenUnsatisfiable": "幻/饑Ȉ@|{t亪鸑躓1Ǐ詁Ȟ鮩ĺJ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP": "q-JM" "u--.K--g__..2bd": "7-0-...WE.-_tdt_-Z0T"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "RT.0zo", "key": "lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.s_s_6.-_vX",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1422,7 +1426,7 @@
] ]
} }
}, },
"ttlSecondsAfterFinished": 246849509 "ttlSecondsAfterFinished": -1746367307
} }
} }
} }

View File

@ -111,25 +111,25 @@ template:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "389" - key: "389"
operator: W疪鑳w妕眵 operator: E增猍
values: values:
- "390" - "390"
matchFields: matchFields:
- key: "391" - key: "391"
operator: 躒訙Ǫʓ)ǂť嗆u8晲T[irȎ operator: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
values: values:
- "392" - "392"
weight: -1588068441 weight: -17241638
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "385" - key: "385"
operator: 餑噭DµņP) operator: )DŽ髐njʉBn(fǂ
values: values:
- "386" - "386"
matchFields: matchFields:
- key: "387" - key: "387"
operator: ƷƣMț operator: 鑳w妕眵笭/9崍h趭
values: values:
- "388" - "388"
podAffinity: podAffinity:
@ -137,23 +137,24 @@ template:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: Ue_l2.._8s--Z - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81
operator: In operator: DoesNotExist
values:
- A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a
matchLabels: matchLabels:
5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3: 8.3_t_-l..-.DG7r-3.----._4__Xn 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1
namespaces: namespaces:
- "407" - "407"
topologyKey: "408" topologyKey: "408"
weight: 2102595797 weight: 1792673033
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97 - key: lk9-8609a-e0--1----v8-4--558n1asz-r886-1--0s-t1e--mv56.l203-8sln7-3x-b--55039780bdw0-9/7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mej
operator: Exists operator: In
values:
- 7-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-C
matchLabels: matchLabels:
W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p: H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v ? 83980c7f0p-3-----995----5sumf7ef8jzv4-9-35o-1-5w5z3-d----0p--8.463--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---fn/d.-.-8v-J1zET_..3dCv3j._.-_pH
: G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
namespaces: namespaces:
- "399" - "399"
topologyKey: "400" topologyKey: "400"
@ -162,23 +163,25 @@ template:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr - key: fz2zy0e428-4-k-2-08vc--8/T9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-Q
operator: DoesNotExist operator: NotIn
values:
- h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV
matchLabels: matchLabels:
0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g j9-w-n-f-v.yoh782-u---76g---h-4-lx-0-2qg--4i/wwv3D: s_6O-5_7a
namespaces: namespaces:
- "423" - "423"
topologyKey: "424" topologyKey: "424"
weight: 754095416 weight: -1229089770
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX - key: rN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-n8
operator: NotIn operator: NotIn
values: values:
- 1_xJ1-lFA_Xf3.V0H2-.zHw.H__7 - 8u.._-__BM.6-.Y_72-_--pT751
matchLabels: matchLabels:
D-0: P.-.C_--.5 3-72q--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pu.exr-1-o--g--1l-8---3snw0-3i--a2/4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.U: 4wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m3
namespaces: namespaces:
- "415" - "415"
topologyKey: "416" topologyKey: "416"
@ -364,7 +367,7 @@ template:
searches: searches:
- "432" - "432"
dnsPolicy: ʐşƧ dnsPolicy: ʐşƧ
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "299" - "299"
@ -723,17 +726,18 @@ template:
nodeSelector: nodeSelector:
"368": "369" "368": "369"
overhead: overhead:
tŧK剛Ʀ魨练脨,Ƃ3貊: "972" ŚȆĸs: "489"
preemptionPolicy: 鬙Ǒȃ绡>堵zŕƧ钖孝0蛮xAǫ preemptionPolicy: Lå<ƨ襌ę鶫礗渶刄[
priority: -966330786 priority: 466142803
priorityClassName: "430" priorityClassName: "430"
readinessGates: readinessGates:
- conditionType: 齔試ŭ - conditionType: 帵(弬NĆɜɘ灢7ưg
restartPolicy: 幩šeSvEȤƏ埮pɵ restartPolicy: 幩šeSvEȤƏ埮pɵ
runtimeClassName: "435" runtimeClassName: "435"
schedulerName: "425" schedulerName: "425"
securityContext: securityContext:
fsGroup: -5265121980497361308 fsGroup: -5265121980497361308
fsGroupChangePolicy: ɱďW賁Ě
runAsGroup: 2006200781539567705 runAsGroup: 2006200781539567705
runAsNonRoot: true runAsNonRoot: true
runAsUser: 1287380841622288898 runAsUser: 1287380841622288898
@ -757,21 +761,21 @@ template:
subdomain: "384" subdomain: "384"
terminationGracePeriodSeconds: -3123571459188372202 terminationGracePeriodSeconds: -3123571459188372202
tolerations: tolerations:
- effect: ǣʛsĊ剞鮧軷șlļė[BN柌ë - effect: ÙQ阉(闒ƈƳ萎Ŋ<eÙ蝌铀í
key: "426" key: "426"
operator: z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜 operator: ȧH僠
tolerationSeconds: -9161243904952859304 tolerationSeconds: 4315581051482382801
value: "427" value: "427"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: RT.0zo - key: lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.s_s_6.-_vX
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP: q-JM u--.K--g__..2bd: 7-0-...WE.-_tdt_-Z0T
maxSkew: 2088809792 maxSkew: -2146985013
topologyKey: "436" topologyKey: "436"
whenUnsatisfiable: 縊CkǚŨ镦 whenUnsatisfiable: 幻/饑Ȉ@|{t亪鸑躓1Ǐ詁Ȟ鮩ĺJ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "64" fsType: "64"
@ -973,4 +977,4 @@ template:
storagePolicyID: "121" storagePolicyID: "121"
storagePolicyName: "120" storagePolicyName: "120"
volumePath: "118" volumePath: "118"
ttlSecondsAfterFinished: 246849509 ttlSecondsAfterFinished: -1746367307

View File

@ -1202,7 +1202,8 @@
"name": "384", "name": "384",
"value": "385" "value": "385"
} }
] ],
"fsGroupChangePolicy": "蹔ŧ"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1219,7 +1220,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "389", "key": "389",
"operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "operator": "1sȣ±p鋄5",
"values": [ "values": [
"390" "390"
] ]
@ -1228,7 +1229,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "391", "key": "391",
"operator": "埮pɵ{WOŭW灬p", "operator": "幩šeSvEȤƏ埮pɵ",
"values": [ "values": [
"392" "392"
] ]
@ -1239,12 +1240,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 199049889, "weight": -1449289597,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "393", "key": "393",
"operator": "擭銆jʒǚ鍰\\縑", "operator": "",
"values": [ "values": [
"394" "394"
] ]
@ -1253,7 +1254,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "395", "key": "395",
"operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "operator": "ş",
"values": [ "values": [
"396" "396"
] ]
@ -1268,14 +1269,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" "3---93-2-23/8--21kF-c026.i": "9.M.134-5-.q6H_.--t"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "key": "7U_-m.-P.yP9S--858LI__.8U",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"z" "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m"
] ]
} }
] ]
@ -1288,16 +1289,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -217760519, "weight": -280562323,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"c-r.E__-.8_e_l2.._8s--7_3x_-J_....7"
]
} }
] ]
}, },
@ -1314,11 +1318,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1331,18 +1335,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1934575848,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" "ZI-_P..w-W_-nE...-V"
] ]
} }
] ]
@ -1360,10 +1364,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "430", "key": "430",
"operator": "堺ʣ", "operator": "ƴ磳藷曥摮Z Ǐg鲅",
"value": "431", "value": "431",
"effect": "ŽɣB矗E¸", "effect": "癯頯aɴí(Ȟ9\"忕(",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 3807599400818393626
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1375,7 +1379,7 @@
} }
], ],
"priorityClassName": "434", "priorityClassName": "434",
"priority": -1852730577, "priority": 1352980996,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"435" "435"
@ -1392,30 +1396,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ"
} }
], ],
"runtimeClassName": "439", "runtimeClassName": "439",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 547935694,
"topologyKey": "440", "topologyKey": "440",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "Ƨ钖孝0蛮xAǫ\u0026tŧK剛Ʀ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs",
"operator": "In", "operator": "In",
"values": [ "values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I"
] ]
} }
] ]
@ -1424,11 +1428,11 @@
] ]
} }
}, },
"ttlSecondsAfterFinished": 920774957 "ttlSecondsAfterFinished": -1754419098
} }
}, },
"successfulJobsHistoryLimit": 1613009760, "successfulJobsHistoryLimit": -2099726885,
"failedJobsHistoryLimit": 1560811691 "failedJobsHistoryLimit": 163538560
}, },
"status": { "status": {
"active": [ "active": [
@ -1436,7 +1440,7 @@
"kind": "447", "kind": "447",
"namespace": "448", "namespace": "448",
"name": "449", "name": "449",
"uid": "Ŋ)TiD¢ƿ媴h", "uid": "ɦ?鮻ȧH僠 \u0026G",
"apiVersion": "450", "apiVersion": "450",
"resourceVersion": "451", "resourceVersion": "451",
"fieldPath": "452" "fieldPath": "452"

View File

@ -31,7 +31,7 @@ metadata:
uid: "7" uid: "7"
spec: spec:
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
failedJobsHistoryLimit: 1560811691 failedJobsHistoryLimit: 163538560
jobTemplate: jobTemplate:
metadata: metadata:
annotations: annotations:
@ -112,25 +112,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "393" - key: "393"
operator: 擭銆jʒǚ鍰\縑 operator: ""
values: values:
- "394" - "394"
matchFields: matchFields:
- key: "395" - key: "395"
operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ operator: ş
values: values:
- "396" - "396"
weight: 199049889 weight: -1449289597
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "389" - key: "389"
operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 operator: 1sȣ±p鋄5
values: values:
- "390" - "390"
matchFields: matchFields:
- key: "391" - key: "391"
operator: 埮pɵ{WOŭW灬p operator: 幩šeSvEȤƏ埮pɵ
values: values:
- "392" - "392"
podAffinity: podAffinity:
@ -138,23 +138,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11
operator: DoesNotExist operator: NotIn
values:
- c-r.E__-.8_e_l2.._8s--7_3x_-J_....7
matchLabels: matchLabels:
4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX
namespaces: namespaces:
- "411" - "411"
topologyKey: "412" topologyKey: "412"
weight: -217760519 weight: -280562323
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 7U_-m.-P.yP9S--858LI__.8U
operator: NotIn operator: NotIn
values: values:
- z - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m
matchLabels: matchLabels:
4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r 3---93-2-23/8--21kF-c026.i: 9.M.134-5-.q6H_.--t
namespaces: namespaces:
- "403" - "403"
topologyKey: "404" topologyKey: "404"
@ -163,23 +165,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E
operator: NotIn operator: NotIn
values: values:
- txb__-ex-_1_-ODgC_1-_V - ZI-_P..w-W_-nE...-V
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
namespaces: namespaces:
- "427" - "427"
topologyKey: "428" topologyKey: "428"
weight: -1851436166 weight: -1934575848
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu
namespaces: namespaces:
- "419" - "419"
topologyKey: "420" topologyKey: "420"
@ -724,17 +726,18 @@ spec:
nodeSelector: nodeSelector:
"372": "373" "372": "373"
overhead: overhead:
4'ď曕椐敛n湙: "310" Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮
priority: -1852730577 priority: 1352980996
priorityClassName: "434" priorityClassName: "434"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ
restartPolicy: ɘɢ鬍熖B芭花ª瘡 restartPolicy: ɘɢ鬍熖B芭花ª瘡
runtimeClassName: "439" runtimeClassName: "439"
schedulerName: "429" schedulerName: "429"
securityContext: securityContext:
fsGroup: 7124276984274024394 fsGroup: 7124276984274024394
fsGroupChangePolicy: 蹔ŧ
runAsGroup: -779972051078659613 runAsGroup: -779972051078659613
runAsNonRoot: false runAsNonRoot: false
runAsUser: 2179199799235189619 runAsUser: 2179199799235189619
@ -758,23 +761,23 @@ spec:
subdomain: "388" subdomain: "388"
terminationGracePeriodSeconds: 2666412258966278206 terminationGracePeriodSeconds: 2666412258966278206
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 癯頯aɴí(Ȟ9"忕(
key: "430" key: "430"
operator: 堺ʣ operator: ƴ磳藷曥摮Z Ǐg鲅
tolerationSeconds: -3532804738923434397 tolerationSeconds: 3807599400818393626
value: "431" value: "431"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE
maxSkew: -150478704 maxSkew: 547935694
topologyKey: "440" topologyKey: "440"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: Ƨ钖孝0蛮xAǫ&tŧK剛Ʀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "65" fsType: "65"
@ -973,10 +976,10 @@ spec:
storagePolicyID: "122" storagePolicyID: "122"
storagePolicyName: "121" storagePolicyName: "121"
volumePath: "119" volumePath: "119"
ttlSecondsAfterFinished: 920774957 ttlSecondsAfterFinished: -1754419098
schedule: "19" schedule: "19"
startingDeadlineSeconds: -2555947251840004808 startingDeadlineSeconds: -2555947251840004808
successfulJobsHistoryLimit: 1613009760 successfulJobsHistoryLimit: -2099726885
suspend: true suspend: true
status: status:
active: active:
@ -986,4 +989,4 @@ status:
name: "449" name: "449"
namespace: "448" namespace: "448"
resourceVersion: "451" resourceVersion: "451"
uid: Ŋ)TiD¢ƿ媴h uid: ɦ?鮻ȧH僠 &G

View File

@ -1203,7 +1203,8 @@
"name": "380", "name": "380",
"value": "381" "value": "381"
} }
] ],
"fsGroupChangePolicy": "ɱďW賁Ě"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1220,7 +1221,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "385", "key": "385",
"operator": "餑噭DµņP)", "operator": ")DŽ髐njʉBn(fǂ",
"values": [ "values": [
"386" "386"
] ]
@ -1229,7 +1230,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "387", "key": "387",
"operator": "ƷƣMț", "operator": "鑳w妕眵笭/9崍h趭",
"values": [ "values": [
"388" "388"
] ]
@ -1240,12 +1241,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1588068441, "weight": -17241638,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "389", "key": "389",
"operator": "W疪鑳w妕眵", "operator": "E增猍",
"values": [ "values": [
"390" "390"
] ]
@ -1254,7 +1255,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "391", "key": "391",
"operator": "躒訙Ǫʓ)ǂť嗆u8晲T[irȎ", "operator": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
"values": [ "values": [
"392" "392"
] ]
@ -1269,12 +1270,15 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p": "H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v" "83980c7f0p-3-----995----5sumf7ef8jzv4-9-35o-1-5w5z3-d----0p--8.463--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---fn/d.-.-8v-J1zET_..3dCv3j._.-_pH": "G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97", "key": "lk9-8609a-e0--1----v8-4--558n1asz-r886-1--0s-t1e--mv56.l203-8sln7-3x-b--55039780bdw0-9/7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mej",
"operator": "Exists" "operator": "In",
"values": [
"7-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-C"
]
} }
] ]
}, },
@ -1286,19 +1290,16 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 2102595797, "weight": 1792673033,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3": "8.3_t_-l..-.DG7r-3.----._4__Xn" "4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33": "17ca-_p-y.eQZ9p_1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "Ue_l2.._8s--Z", "key": "yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81",
"operator": "In", "operator": "DoesNotExist"
"values": [
"A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a"
]
} }
] ]
}, },
@ -1315,14 +1316,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"D-0": "P.-.C_--.5" "3-72q--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pu.exr-1-o--g--1l-8---3snw0-3i--a2/4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.U": "4wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m3"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX", "key": "rN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-n8",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"1_xJ1-lFA_Xf3.V0H2-.zHw.H__7" "8u.._-__BM.6-.Y_72-_--pT751"
] ]
} }
] ]
@ -1335,16 +1336,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 754095416, "weight": -1229089770,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g" "j9-w-n-f-v.yoh782-u---76g---h-4-lx-0-2qg--4i/wwv3D": "s_6O-5_7a"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr", "key": "fz2zy0e428-4-k-2-08vc--8/T9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-Q",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV"
]
} }
] ]
}, },
@ -1361,10 +1365,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "426", "key": "426",
"operator": "z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜", "operator": "ȧH僠",
"value": "427", "value": "427",
"effect": "ǣʛsĊ剞鮧軷șlļė[BN柌ë", "effect": "ÙQ阉(闒ƈƳ萎Ŋ\u003ceÙ蝌铀í",
"tolerationSeconds": -9161243904952859304 "tolerationSeconds": 4315581051482382801
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1376,7 +1380,7 @@
} }
], ],
"priorityClassName": "430", "priorityClassName": "430",
"priority": -966330786, "priority": 466142803,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"431" "431"
@ -1393,27 +1397,27 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "齔試ŭ" "conditionType": "帵(弬NĆɜɘ灢7ưg"
} }
], ],
"runtimeClassName": "435", "runtimeClassName": "435",
"enableServiceLinks": false, "enableServiceLinks": true,
"preemptionPolicy": "鬙Ǒȃ绡\u003e堵zŕƧ钖孝0蛮xAǫ", "preemptionPolicy": "Lå\u003cƨ襌ę鶫礗渶刄[",
"overhead": { "overhead": {
"tŧK剛Ʀ魨练脨,Ƃ3貊": "972" "ŚȆĸs": "489"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": 2088809792, "maxSkew": -2146985013,
"topologyKey": "436", "topologyKey": "436",
"whenUnsatisfiable": "縊CkǚŨ镦", "whenUnsatisfiable": "幻/饑Ȉ@|{t亪鸑躓1Ǐ詁Ȟ鮩ĺJ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP": "q-JM" "u--.K--g__..2bd": "7-0-...WE.-_tdt_-Z0T"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "RT.0zo", "key": "lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.s_s_6.-_vX",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1422,7 +1426,7 @@
] ]
} }
}, },
"ttlSecondsAfterFinished": 246849509 "ttlSecondsAfterFinished": -1746367307
} }
} }
} }

View File

@ -111,25 +111,25 @@ template:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "389" - key: "389"
operator: W疪鑳w妕眵 operator: E增猍
values: values:
- "390" - "390"
matchFields: matchFields:
- key: "391" - key: "391"
operator: 躒訙Ǫʓ)ǂť嗆u8晲T[irȎ operator: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
values: values:
- "392" - "392"
weight: -1588068441 weight: -17241638
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "385" - key: "385"
operator: 餑噭DµņP) operator: )DŽ髐njʉBn(fǂ
values: values:
- "386" - "386"
matchFields: matchFields:
- key: "387" - key: "387"
operator: ƷƣMț operator: 鑳w妕眵笭/9崍h趭
values: values:
- "388" - "388"
podAffinity: podAffinity:
@ -137,23 +137,24 @@ template:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: Ue_l2.._8s--Z - key: yp8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---9/tA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W81
operator: In operator: DoesNotExist
values:
- A-._d._.Um.-__k.j._g-G-7--p9.-_0R.-_-3_L_2a
matchLabels: matchLabels:
5m8-1x129-9d8-s7-t7--336-11k8/3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.._Q.6.I--2_9.v.--3: 8.3_t_-l..-.DG7r-3.----._4__Xn 4-m_0-m-6Sp_N-S..O-BZ..6-1.S-B33: 17ca-_p-y.eQZ9p_1
namespaces: namespaces:
- "407" - "407"
topologyKey: "408" topologyKey: "408"
weight: 2102595797 weight: 1792673033
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 39d4im.2---2etfh41ca-z-5g2wco280/C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC97 - key: lk9-8609a-e0--1----v8-4--558n1asz-r886-1--0s-t1e--mv56.l203-8sln7-3x-b--55039780bdw0-9/7._l.._Q.6.I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mej
operator: Exists operator: In
values:
- 7-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-C
matchLabels: matchLabels:
W_0-8-.M-.-.-8v-J1zET_..3dCv3j._.-p: H_up.2L_s-o779._-k-5___-Qq..csh-3--Z1v ? 83980c7f0p-3-----995----5sumf7ef8jzv4-9-35o-1-5w5z3-d----0p--8.463--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-5g2wco28---fn/d.-.-8v-J1zET_..3dCv3j._.-_pH
: G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
namespaces: namespaces:
- "399" - "399"
topologyKey: "400" topologyKey: "400"
@ -162,23 +163,25 @@ template:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr - key: fz2zy0e428-4-k-2-08vc--8/T9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-Q
operator: DoesNotExist operator: NotIn
values:
- h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV
matchLabels: matchLabels:
0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g j9-w-n-f-v.yoh782-u---76g---h-4-lx-0-2qg--4i/wwv3D: s_6O-5_7a
namespaces: namespaces:
- "423" - "423"
topologyKey: "424" topologyKey: "424"
weight: 754095416 weight: -1229089770
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: d4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv7.05-6-1xr-7---064eqk5--f4e4--r1k278l-d8/NN-S..O-BZ..6-1.S-BX - key: rN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-n8
operator: NotIn operator: NotIn
values: values:
- 1_xJ1-lFA_Xf3.V0H2-.zHw.H__7 - 8u.._-__BM.6-.Y_72-_--pT751
matchLabels: matchLabels:
D-0: P.-.C_--.5 3-72q--m--2k-p---139g-2wt-g-ve55m-2-dm--ux3--0--2pu.exr-1-o--g--1l-8---3snw0-3i--a2/4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.U: 4wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m3
namespaces: namespaces:
- "415" - "415"
topologyKey: "416" topologyKey: "416"
@ -364,7 +367,7 @@ template:
searches: searches:
- "432" - "432"
dnsPolicy: ʐşƧ dnsPolicy: ʐşƧ
enableServiceLinks: false enableServiceLinks: true
ephemeralContainers: ephemeralContainers:
- args: - args:
- "299" - "299"
@ -723,17 +726,18 @@ template:
nodeSelector: nodeSelector:
"368": "369" "368": "369"
overhead: overhead:
tŧK剛Ʀ魨练脨,Ƃ3貊: "972" ŚȆĸs: "489"
preemptionPolicy: 鬙Ǒȃ绡>堵zŕƧ钖孝0蛮xAǫ preemptionPolicy: Lå<ƨ襌ę鶫礗渶刄[
priority: -966330786 priority: 466142803
priorityClassName: "430" priorityClassName: "430"
readinessGates: readinessGates:
- conditionType: 齔試ŭ - conditionType: 帵(弬NĆɜɘ灢7ưg
restartPolicy: 幩šeSvEȤƏ埮pɵ restartPolicy: 幩šeSvEȤƏ埮pɵ
runtimeClassName: "435" runtimeClassName: "435"
schedulerName: "425" schedulerName: "425"
securityContext: securityContext:
fsGroup: -5265121980497361308 fsGroup: -5265121980497361308
fsGroupChangePolicy: ɱďW賁Ě
runAsGroup: 2006200781539567705 runAsGroup: 2006200781539567705
runAsNonRoot: true runAsNonRoot: true
runAsUser: 1287380841622288898 runAsUser: 1287380841622288898
@ -757,21 +761,21 @@ template:
subdomain: "384" subdomain: "384"
terminationGracePeriodSeconds: -3123571459188372202 terminationGracePeriodSeconds: -3123571459188372202
tolerations: tolerations:
- effect: ǣʛsĊ剞鮧軷șlļė[BN柌ë - effect: ÙQ阉(闒ƈƳ萎Ŋ<eÙ蝌铀í
key: "426" key: "426"
operator: z* 皗u疲fɎ嵄箲Ů埞瞔ɏÊ锒e躜 operator: ȧH僠
tolerationSeconds: -9161243904952859304 tolerationSeconds: 4315581051482382801
value: "427" value: "427"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: RT.0zo - key: lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.s_s_6.-_vX
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
rf-l67-9a-trt-03-7z2zy0e428-4-k2/kU27_.-4T-I.-..K.-.0__sD.-.-_I-FP: q-JM u--.K--g__..2bd: 7-0-...WE.-_tdt_-Z0T
maxSkew: 2088809792 maxSkew: -2146985013
topologyKey: "436" topologyKey: "436"
whenUnsatisfiable: 縊CkǚŨ镦 whenUnsatisfiable: 幻/饑Ȉ@|{t亪鸑躓1Ǐ詁Ȟ鮩ĺJ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "64" fsType: "64"
@ -973,4 +977,4 @@ template:
storagePolicyID: "121" storagePolicyID: "121"
storagePolicyName: "120" storagePolicyName: "120"
volumePath: "118" volumePath: "118"
ttlSecondsAfterFinished: 246849509 ttlSecondsAfterFinished: -1746367307

View File

@ -1099,7 +1099,8 @@
"name": "345", "name": "345",
"value": "346" "value": "346"
} }
] ],
"fsGroupChangePolicy": "勅跦Opwǩ曬逴褜1Ø"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1116,7 +1117,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "350", "key": "350",
"operator": "}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g\u003e", "operator": "8Ƥ熪军g\u003e郵[+",
"values": [ "values": [
"351" "351"
] ]
@ -1125,7 +1126,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "352", "key": "352",
"operator": "偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ圯W", "operator": "荙JLĹ]佱¿\u003e犵殇ŕ",
"values": [ "values": [
"353" "353"
] ]
@ -1136,12 +1137,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1418092595, "weight": -979584143,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "354", "key": "354",
"operator": "唊#v", "operator": "W:ĸ輦唊#v",
"values": [ "values": [
"355" "355"
] ]
@ -1150,7 +1151,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "356", "key": "356",
"operator": "埄趛", "operator": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*",
"values": [ "values": [
"357" "357"
] ]
@ -1165,15 +1166,12 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6": "9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y" "A_k_K5._..O_.J_-G_--V-42E_--o90G_A4..-L..L": "0N_N.O30-_u._-2hT.-z-._7-5lL..-_--.VEa-_gn.8-c.C3_F._oX-9"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T", "key": "ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x2",
"operator": "NotIn", "operator": "Exists"
"values": [
"H.I3.__-.u"
]
} }
] ]
}, },
@ -1185,19 +1183,16 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -819013491, "weight": -1058923098,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2": "Ns-o779._-k5" "3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7": "m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D", "key": "3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M",
"operator": "NotIn", "operator": "Exists"
"values": [
"G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X"
]
} }
] ]
}, },
@ -1214,7 +1209,7 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"xm-.nx.sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" "sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {

View File

@ -37,25 +37,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "354" - key: "354"
operator: 唊#v operator: W:ĸ輦唊#v
values: values:
- "355" - "355"
matchFields: matchFields:
- key: "356" - key: "356"
operator: 埄趛 operator: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
values: values:
- "357" - "357"
weight: -1418092595 weight: -979584143
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "350" - key: "350"
operator: '}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g>' operator: 8Ƥ熪军g>郵[+
values: values:
- "351" - "351"
matchFields: matchFields:
- key: "352" - key: "352"
operator: 偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ圯W operator: 荙JLĹ]佱¿>犵殇ŕ
values: values:
- "353" - "353"
podAffinity: podAffinity:
@ -63,25 +63,21 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D - key: 3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M
operator: NotIn operator: Exists
values:
- G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
matchLabels: matchLabels:
x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2: Ns-o779._-k5 3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7: m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1
namespaces: namespaces:
- "372" - "372"
topologyKey: "373" topologyKey: "373"
weight: -819013491 weight: -1058923098
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T - key: ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x2
operator: NotIn operator: Exists
values:
- H.I3.__-.u
matchLabels: matchLabels:
zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6: 9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y A_k_K5._..O_.J_-G_--V-42E_--o90G_A4..-L..L: 0N_N.O30-_u._-2hT.-z-._7-5lL..-_--.VEa-_gn.8-c.C3_F._oX-9
namespaces: namespaces:
- "364" - "364"
topologyKey: "365" topologyKey: "365"
@ -106,7 +102,7 @@ spec:
- key: v8_.O_..8n.--z_-..6W.K - key: v8_.O_..8n.--z_-..6W.K
operator: Exists operator: Exists
matchLabels: matchLabels:
xm-.nx.sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1
namespaces: namespaces:
- "380" - "380"
topologyKey: "381" topologyKey: "381"
@ -664,6 +660,7 @@ spec:
schedulerName: "390" schedulerName: "390"
securityContext: securityContext:
fsGroup: 6347577485454457915 fsGroup: 6347577485454457915
fsGroupChangePolicy: 勅跦Opwǩ曬逴褜1Ø
runAsGroup: -860974700141841896 runAsGroup: -860974700141841896
runAsNonRoot: true runAsNonRoot: true
runAsUser: 7525448836100188460 runAsUser: 7525448836100188460

View File

@ -1144,7 +1144,8 @@
"name": "358", "name": "358",
"value": "359" "value": "359"
} }
] ],
"fsGroupChangePolicy": "勅跦Opwǩ曬逴褜1Ø"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1161,7 +1162,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "363", "key": "363",
"operator": "}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g\u003e", "operator": "8Ƥ熪军g\u003e郵[+",
"values": [ "values": [
"364" "364"
] ]
@ -1170,7 +1171,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "365", "key": "365",
"operator": "偢ɇ卷荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ圯W", "operator": "荙JLĹ]佱¿\u003e犵殇ŕ",
"values": [ "values": [
"366" "366"
] ]
@ -1181,12 +1182,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1418092595, "weight": -979584143,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "367", "key": "367",
"operator": "唊#v", "operator": "W:ĸ輦唊#v",
"values": [ "values": [
"368" "368"
] ]
@ -1195,7 +1196,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "369", "key": "369",
"operator": "埄趛", "operator": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*",
"values": [ "values": [
"370" "370"
] ]
@ -1210,15 +1211,12 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6": "9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y" "A_k_K5._..O_.J_-G_--V-42E_--o90G_A4..-L..L": "0N_N.O30-_u._-2hT.-z-._7-5lL..-_--.VEa-_gn.8-c.C3_F._oX-9"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T", "key": "ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x2",
"operator": "NotIn", "operator": "Exists"
"values": [
"H.I3.__-.u"
]
} }
] ]
}, },
@ -1230,19 +1228,16 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -819013491, "weight": -1058923098,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2": "Ns-o779._-k5" "3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7": "m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D", "key": "3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M",
"operator": "NotIn", "operator": "Exists"
"values": [
"G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X"
]
} }
] ]
}, },
@ -1259,7 +1254,7 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"xm-.nx.sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1" "sEK4.B.__65m8_x": "29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {

View File

@ -67,25 +67,25 @@ template:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "367" - key: "367"
operator: 唊#v operator: W:ĸ輦唊#v
values: values:
- "368" - "368"
matchFields: matchFields:
- key: "369" - key: "369"
operator: 埄趛 operator: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
values: values:
- "370" - "370"
weight: -1418092595 weight: -979584143
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "363" - key: "363"
operator: '}潷ʒ胵輓Ɔȓ蹣ɐǛv+8Ƥ熪军g>' operator: 8Ƥ熪军g>郵[+
values: values:
- "364" - "364"
matchFields: matchFields:
- key: "365" - key: "365"
operator: 偢ɇ卷荙JLĹ]佱¿>犵殇ŕ-Ɂ圯W operator: 荙JLĹ]佱¿>犵殇ŕ
values: values:
- "366" - "366"
podAffinity: podAffinity:
@ -93,25 +93,21 @@ template:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D - key: 3--j2---2--82--cj-1-s--op34-yw/A-_3bz._M
operator: NotIn operator: Exists
values:
- G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
matchLabels: matchLabels:
x_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up2: Ns-o779._-k5 3-----995----5sumf7ef8jzv4-9-30.rt--6g1-2-73m-e46-r-g63--gt1--6mx-r-927--m6-g/J0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-7: m.__G-8...__.Q_c8.G.b_9_1o.w_aI._1
namespaces: namespaces:
- "385" - "385"
topologyKey: "386" topologyKey: "386"
weight: -819013491 weight: -1058923098
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 8x.2K_2qu_0S-CqW.D_8--21kF-c026.-iTl.1-.T - key: ao26--26-hs5-jedse.7vc0260ni-l11q5--uk5mj-94-8134i5kq/aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1py_8-3..s._.x2
operator: NotIn operator: Exists
values:
- H.I3.__-.u
matchLabels: matchLabels:
zo--4-1-2s39--6---fv--m-8--72-bca4m56au3f---tx-8----2d-4u-d7sn/48Y.q.0-_1-F.h-__k_K5._..O_.J_-G_--V-42E_--o90G_A6: 9_.5vN5.25aWx.2aM214_.-N_g-..__._____K_g1cXfr.4_.-_-_-...1y A_k_K5._..O_.J_-G_--V-42E_--o90G_A4..-L..L: 0N_N.O30-_u._-2hT.-z-._7-5lL..-_--.VEa-_gn.8-c.C3_F._oX-9
namespaces: namespaces:
- "377" - "377"
topologyKey: "378" topologyKey: "378"
@ -136,7 +132,7 @@ template:
- key: v8_.O_..8n.--z_-..6W.K - key: v8_.O_..8n.--z_-..6W.K
operator: Exists operator: Exists
matchLabels: matchLabels:
xm-.nx.sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1 sEK4.B.__65m8_x: 29_.-.Ms7_t.P_3..H..k9M86.9a_-0R1
namespaces: namespaces:
- "393" - "393"
topologyKey: "394" topologyKey: "394"
@ -697,6 +693,7 @@ template:
schedulerName: "403" schedulerName: "403"
securityContext: securityContext:
fsGroup: 6347577485454457915 fsGroup: 6347577485454457915
fsGroupChangePolicy: 勅跦Opwǩ曬逴褜1Ø
runAsGroup: -860974700141841896 runAsGroup: -860974700141841896
runAsNonRoot: true runAsNonRoot: true
runAsUser: 7525448836100188460 runAsUser: 7525448836100188460

View File

@ -1145,7 +1145,8 @@
"name": "366", "name": "366",
"value": "367" "value": "367"
} }
] ],
"fsGroupChangePolicy": ""
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1162,7 +1163,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "371", "key": "371",
"operator": "ɇ荙JLĹ]佱¿\u003e犵殇ŕ-Ɂ", "operator": "卷",
"values": [ "values": [
"372" "372"
] ]
@ -1171,7 +1172,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "373", "key": "373",
"operator": "t叀碧闳ȩr嚧ʣq埄", "operator": "+",
"values": [ "values": [
"374" "374"
] ]
@ -1182,12 +1183,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -379385405, "weight": 1724958480,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "375", "key": "375",
"operator": "岼昕ĬÇó藢xɮĵȑ6L*Z", "operator": "ljVX1虊谇j爻ƙt叀碧",
"values": [ "values": [
"376" "376"
] ]
@ -1196,7 +1197,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "377", "key": "377",
"operator": "绤fʀļ腩墺Ò媁荭g", "operator": "#v铿ʩȂ4ē鐭#嬀ơŸ8T 苧y",
"values": [ "values": [
"378" "378"
] ]
@ -1211,11 +1212,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6-d42--clo90---461v-07r--0---8-30i-uo/9DF": "AH-Q.GM72_-c-.-.6--3-__t" "i_18_...E.-2o_-.N.9D-F45eJK7Q5-R4_F": "7M.JP_oA_41"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "8SUGP.-_.uB-.--.gb_2_-8--z", "key": "b25a-x12a-214-3s--gg93--5------g/L6_EU--AH-Q.GM72_-c-.-.6--3-___t-Z8SUGP.-_.uB-.--.gb_2o",
"operator": "Exists" "operator": "Exists"
} }
] ]
@ -1228,16 +1229,16 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 1258370227, "weight": 409029209,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"N-_-vv-Q2q7": "3.4....-h._.GgT7_7P" "h._.GgT7_7B_D-..-.k4u-zA_--8": "6"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "ftie4-7--gm4p-8y-9-te858----38----r-m-a--q3980c7fp/26GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sn_.x", "key": "Nj-d-4_4--.-_Z4.LA3HVG9G",
"operator": "DoesNotExist" "operator": "Exists"
} }
] ]
}, },
@ -1254,12 +1255,12 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "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" "k.q6H_.--_---.M.U_-m.-P.yP9Se": "58LI__.8____rO-S-P_-...0c.-.p_3_J_SA995IKCR.s--f.-f.-v"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "2I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7s", "key": "mm6-k8-c2---2t.n--8--c83-4b-9-1o8w-a-6-31g-1/0-K_A-_9_Z_C..7o_x3..-.w",
"operator": "DoesNotExist" "operator": "Exists"
} }
] ]
}, },
@ -1271,18 +1272,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 1289969734, "weight": -533093249,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "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": "" "r3po4-f/TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK1": "x1.9_.-.M7"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q", "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"0..KpiS.oK-.O--5-yp8q_s-L" "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc"
] ]
} }
] ]
@ -1300,10 +1301,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "412", "key": "412",
"operator": "}缫,", "operator": "ù灹8緔Tj§E蓋",
"value": "413", "value": "413",
"effect": "ɉ愂", "effect": "ƫZɀȩ愉",
"tolerationSeconds": 5005983565679986804 "tolerationSeconds": -1390311149947249535
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1315,7 +1316,7 @@
} }
], ],
"priorityClassName": "416", "priorityClassName": "416",
"priority": 178156526, "priority": -88455527,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"417" "417"
@ -1332,30 +1333,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "糮R(_âŔ獎$ƆJije檗" "conditionType": "普闎Ť萃Q+駟à稨氙"
} }
], ],
"runtimeClassName": "421", "runtimeClassName": "421",
"enableServiceLinks": true, "enableServiceLinks": true,
"preemptionPolicy": "ʜ_ȭwɵ糫武诰ð", "preemptionPolicy": "\u003e",
"overhead": { "overhead": {
"娒Ġ滔xvŗÑ\"虆k遚釾ʼn{": "803" "'o儿Ƭ銭u裡_": "986"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -1531421126, "maxSkew": -1676200318,
"topologyKey": "422", "topologyKey": "422",
"whenUnsatisfiable": "墘ȕûy\u003cvĝ線Ưȫ喆5O2.", "whenUnsatisfiable": "唞鹚蝉茲ʛ饊ɣKIJW",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY": "0" "l-d-8o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m8.o-20st4-7--i1-8miw-7a-2404/5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpS": "5.0"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "vf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7yd-y-3/hjO", "key": "7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG" "9CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--k"
] ]
} }
] ]
@ -1366,16 +1367,16 @@
} }
}, },
"status": { "status": {
"replicas": -1530496417, "replicas": -580887468,
"fullyLabeledReplicas": -1698525469, "fullyLabeledReplicas": 189301373,
"readyReplicas": -525943726, "readyReplicas": -1235733921,
"availableReplicas": -578926701, "availableReplicas": -1438616392,
"observedGeneration": 8034206547748752944, "observedGeneration": 7696803627798560212,
"conditions": [ "conditions": [
{ {
"type": "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲", "type": "獰Ĉ癯頯aɴí(Ȟ9\"",
"status": "\u003e堵zŕƧ钖孝0蛮xAǫ\u0026tŧK剛Ʀ", "status": "oǰ'źĄ栧焷蜪sÛ°",
"lastTransitionTime": "2837-10-14T23:23:27Z", "lastTransitionTime": "2129-09-06T04:28:43Z",
"reason": "429", "reason": "429",
"message": "430" "message": "430"
} }

View File

@ -72,25 +72,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "375" - key: "375"
operator: 岼昕ĬÇó藢xɮĵȑ6L*Z operator: ljVX1虊谇j爻ƙt叀碧
values: values:
- "376" - "376"
matchFields: matchFields:
- key: "377" - key: "377"
operator: 绤fʀļ腩墺Ò媁荭g operator: '#v铿ʩȂ4ē鐭#嬀ơŸ8T 苧y'
values: values:
- "378" - "378"
weight: -379385405 weight: 1724958480
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "371" - key: "371"
operator: ɇ荙JLĹ]佱¿>犵殇ŕ-Ɂ operator:
values: values:
- "372" - "372"
matchFields: matchFields:
- key: "373" - key: "373"
operator: t叀碧闳ȩr嚧ʣq埄 operator: +
values: values:
- "374" - "374"
podAffinity: podAffinity:
@ -98,21 +98,21 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: ftie4-7--gm4p-8y-9-te858----38----r-m-a--q3980c7fp/26GA26C-s.Nj-d-4_4--.-_Z4.LA3HVG93_._.I3.__-.0-z_z0sn_.x - key: Nj-d-4_4--.-_Z4.LA3HVG9G
operator: DoesNotExist operator: Exists
matchLabels: matchLabels:
N-_-vv-Q2q7: 3.4....-h._.GgT7_7P h._.GgT7_7B_D-..-.k4u-zA_--8: "6"
namespaces: namespaces:
- "393" - "393"
topologyKey: "394" topologyKey: "394"
weight: 1258370227 weight: 409029209
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 8SUGP.-_.uB-.--.gb_2_-8--z - key: b25a-x12a-214-3s--gg93--5------g/L6_EU--AH-Q.GM72_-c-.-.6--3-___t-Z8SUGP.-_.uB-.--.gb_2o
operator: Exists operator: Exists
matchLabels: matchLabels:
6-d42--clo90---461v-07r--0---8-30i-uo/9DF: AH-Q.GM72_-c-.-.6--3-__t i_18_...E.-2o_-.N.9D-F45eJK7Q5-R4_F: 7M.JP_oA_41
namespaces: namespaces:
- "385" - "385"
topologyKey: "386" topologyKey: "386"
@ -121,23 +121,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v
operator: NotIn operator: NotIn
values: values:
- 0..KpiS.oK-.O--5-yp8q_s-L - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
matchLabels: 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: "" r3po4-f/TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK1: x1.9_.-.M7
namespaces: namespaces:
- "409" - "409"
topologyKey: "410" topologyKey: "410"
weight: 1289969734 weight: -533093249
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 2I--2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7s - key: mm6-k8-c2---2t.n--8--c83-4b-9-1o8w-a-6-31g-1/0-K_A-_9_Z_C..7o_x3..-.w
operator: DoesNotExist operator: Exists
matchLabels: 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 k.q6H_.--_---.M.U_-m.-P.yP9Se: 58LI__.8____rO-S-P_-...0c.-.p_3_J_SA995IKCR.s--f.-f.-v
namespaces: namespaces:
- "401" - "401"
topologyKey: "402" topologyKey: "402"
@ -683,17 +683,18 @@ spec:
nodeSelector: nodeSelector:
"354": "355" "354": "355"
overhead: overhead:
娒Ġ滔xvŗÑ"虆k遚釾ʼn{: "803" '''o儿Ƭ銭u裡_': "986"
preemptionPolicy: ʜ_ȭwɵ糫武诰ð preemptionPolicy: '>'
priority: 178156526 priority: -88455527
priorityClassName: "416" priorityClassName: "416"
readinessGates: readinessGates:
- conditionType: 糮R(_âŔ獎$ƆJije檗 - conditionType: 普闎Ť萃Q+駟à稨氙
restartPolicy: Ì restartPolicy: Ì
runtimeClassName: "421" runtimeClassName: "421"
schedulerName: "411" schedulerName: "411"
securityContext: securityContext:
fsGroup: 7861919711004065015 fsGroup: 7861919711004065015
fsGroupChangePolicy: ""
runAsGroup: -4105014793515441558 runAsGroup: -4105014793515441558
runAsNonRoot: true runAsNonRoot: true
runAsUser: -7059779929916534575 runAsUser: -7059779929916534575
@ -717,23 +718,24 @@ spec:
subdomain: "370" subdomain: "370"
terminationGracePeriodSeconds: -860974700141841896 terminationGracePeriodSeconds: -860974700141841896
tolerations: tolerations:
- effect: ɉ愂 - effect: ƫZɀȩ愉
key: "412" key: "412"
operator: '}缫,' operator: ù灹8緔Tj§E蓋
tolerationSeconds: 5005983565679986804 tolerationSeconds: -1390311149947249535
value: "413" value: "413"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: vf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7yd-y-3/hjO - key: 7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY
operator: NotIn operator: NotIn
values: values:
- c.q.8_00.0_._.-_L-__bf_9_-C-PfNxG - 9CqrN7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--k
matchLabels: matchLabels:
7s4483-o--3f1p7--43nw-l-x18mtxb--kexr-1-o--g--1l8.bc-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-4g-z46--f2t-k/db-L7.-__-G_2kCpSY: "0" ? l-d-8o1-x-1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m8.o-20st4-7--i1-8miw-7a-2404/5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..KpS
maxSkew: -1531421126 : "5.0"
maxSkew: -1676200318
topologyKey: "422" topologyKey: "422"
whenUnsatisfiable: 墘ȕûy<vĝ線Ưȫ喆5O2. whenUnsatisfiable: 唞鹚蝉茲ʛ饊ɣKIJW
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "43" fsType: "43"
@ -931,14 +933,14 @@ spec:
storagePolicyName: "99" storagePolicyName: "99"
volumePath: "97" volumePath: "97"
status: status:
availableReplicas: -578926701 availableReplicas: -1438616392
conditions: conditions:
- lastTransitionTime: "2837-10-14T23:23:27Z" - lastTransitionTime: "2129-09-06T04:28:43Z"
message: "430" message: "430"
reason: "429" reason: "429"
status: '>堵zŕƧ钖孝0蛮xAǫ&tŧK剛Ʀ' status: oǰ'źĄ栧焷蜪sÛ°
type: Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲 type: 獰Ĉ癯頯aɴí(Ȟ9"
fullyLabeledReplicas: -1698525469 fullyLabeledReplicas: 189301373
observedGeneration: 8034206547748752944 observedGeneration: 7696803627798560212
readyReplicas: -525943726 readyReplicas: -1235733921
replicas: -1530496417 replicas: -580887468

View File

@ -1158,7 +1158,8 @@
"name": "370", "name": "370",
"value": "371" "value": "371"
} }
] ],
"fsGroupChangePolicy": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1175,7 +1176,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "375", "key": "375",
"operator": "Ã茓pȓɻ", "operator": "Ǚ(",
"values": [ "values": [
"376" "376"
] ]
@ -1184,7 +1185,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "377", "key": "377",
"operator": "", "operator": "瘍Nʊ輔3璾ėȜv1b繐汚",
"values": [ "values": [
"378" "378"
] ]
@ -1195,12 +1196,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -767058113, "weight": 702968201,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "379", "key": "379",
"operator": "Ǹ|蕎'佉賞ǧĒz", "operator": "n覦灲閈誹ʅ蕉",
"values": [ "values": [
"380" "380"
] ]
@ -1209,7 +1210,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "381", "key": "381",
"operator": "ùfŭƽ", "operator": "",
"values": [ "values": [
"382" "382"
] ]
@ -1224,11 +1225,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"h-up52--sjo7799-skj5--9/R_rm": "CR.s--f.-f.-zv._._.o" "lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d": "b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "K_A-_9_Z_C..7o_x3..-.8-Jp-94", "key": "d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1241,16 +1242,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 801902541, "weight": 1195176401,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I": "x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4" "Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"0..KpiS.oK-.O--5-yp8q_s-L"
]
} }
] ]
}, },
@ -1267,12 +1271,15 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j": "35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"VT3sn-0_.i__a.O2G_J"
]
} }
] ]
}, },
@ -1284,18 +1291,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1508769491,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3": "20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e",
"operator": "NotIn", "operator": "In",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" ""
] ]
} }
] ]
@ -1313,10 +1320,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "416", "key": "416",
"operator": "堺ʣ", "operator": "抄3昞财Î嘝zʄ!ć",
"value": "417", "value": "417",
"effect": "ŽɣB矗E¸", "effect": "緍k¢茤",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 4096844323391966153
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1328,7 +1335,7 @@
} }
], ],
"priorityClassName": "420", "priorityClassName": "420",
"priority": -1852730577, "priority": -1331113536,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"421" "421"
@ -1345,31 +1352,28 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "mō6µɑ`ȗ\u003c8^翜"
} }
], ],
"runtimeClassName": "425", "runtimeClassName": "425",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "ý筞X",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "tHǽ÷閂抰^窄CǙķȈ": "97"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 1956797678,
"topologyKey": "426", "topologyKey": "426",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "ƀ+瑏eCmAȥ睙",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5": "x_.4dwFbuvEf55Y2k.F-4"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz",
"operator": "In", "operator": "DoesNotExist"
"values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ"
]
} }
] ]
} }
@ -1378,30 +1382,29 @@
} }
}, },
"updateStrategy": { "updateStrategy": {
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
"rollingUpdate": { "rollingUpdate": {
"maxUnavailable": 2 "maxUnavailable": 2
} }
}, },
"minReadySeconds": 212061711, "minReadySeconds": 997447044,
"templateGeneration": 8027668557984017414, "templateGeneration": 117144906028254972,
"revisionHistoryLimit": -1979737528 "revisionHistoryLimit": 1606858231
}, },
"status": { "status": {
"currentNumberScheduled": -1707056814, "currentNumberScheduled": 1791868025,
"numberMisscheduled": -424698834, "numberMisscheduled": -793692762,
"desiredNumberScheduled": 407742062, "desiredNumberScheduled": -1152625369,
"numberReady": 2115789304, "numberReady": -1832836223,
"observedGeneration": -455484136992029462, "observedGeneration": 289178836781711257,
"updatedNumberScheduled": 1660081568, "updatedNumberScheduled": -1734448297,
"numberAvailable": 904244563, "numberAvailable": -1757575936,
"numberUnavailable": -1245696932, "numberUnavailable": -1151395185,
"collisionCount": 2063260600, "collisionCount": 2022921268,
"conditions": [ "conditions": [
{ {
"type": "Ƅ抄3昞财Î嘝zʄ", "type": "ɦ!",
"status": "\u003ec緍k¢茤Ƣǟ½灶du汎mō6µɑ", "status": "(XEfê澙凋B/ü橚2ț",
"lastTransitionTime": "2196-03-13T21:02:11Z", "lastTransitionTime": "2733-02-09T15:36:31Z",
"reason": "433", "reason": "433",
"message": "434" "message": "434"
} }

View File

@ -30,8 +30,8 @@ metadata:
selfLink: "5" selfLink: "5"
uid: "7" uid: "7"
spec: spec:
minReadySeconds: 212061711 minReadySeconds: 997447044
revisionHistoryLimit: -1979737528 revisionHistoryLimit: 1606858231
selector: selector:
matchExpressions: matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0 - key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@ -78,25 +78,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "379" - key: "379"
operator: Ǹ|蕎'佉賞ǧĒz operator: n覦灲閈誹ʅ蕉
values: values:
- "380" - "380"
matchFields: matchFields:
- key: "381" - key: "381"
operator: ùfŭƽ operator: ""
values: values:
- "382" - "382"
weight: -767058113 weight: 702968201
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "375" - key: "375"
operator: Ã茓pȓɻ operator: Ǚ(
values: values:
- "376" - "376"
matchFields: matchFields:
- key: "377" - key: "377"
operator: "" operator: 瘍Nʊ輔3璾ėȜv1b繐汚
values: values:
- "378" - "378"
podAffinity: podAffinity:
@ -104,21 +104,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
operator: DoesNotExist operator: NotIn
values:
- 0..KpiS.oK-.O--5-yp8q_s-L
matchLabels: matchLabels:
bx1y-8---3----p-pdn--j2---2--82--cj-1-s--op34-yy28-38xmu5nx4s-4/4b_9_1o.w_I: x-_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----.4 Bk.j._g-G-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
namespaces: namespaces:
- "397" - "397"
topologyKey: "398" topologyKey: "398"
weight: 801902541 weight: 1195176401
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: K_A-_9_Z_C..7o_x3..-.8-Jp-94 - key: d----v8-4--558n1asz-r886x.2-cgr6---r58-e-l203-8sln7-x/k2_9.v.--_.--4QQ.-s.H.Hu-k-_-0-T1mel--F......3_t_l
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
h-up52--sjo7799-skj5--9/R_rm: CR.s--f.-f.-zv._._.o lm-e46-r-g63--gt1--6mx-r-927--m6-k8-c2---2etfh41ca-z-g/0p_3_J_SA995IKCR.s--f.-f.-zv._._.5-H.T.-.-.d: b_9_1o.w_aI._31-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l.I
namespaces: namespaces:
- "389" - "389"
topologyKey: "390" topologyKey: "390"
@ -127,23 +129,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: p_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-e
operator: NotIn operator: In
values: values:
- txb__-ex-_1_-ODgC_1-_V - ""
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 3--rgvf3q-z-5z80n--t5--9-4-d2-22--i--40wv--in-870w--it6k47-7y1.h72n-cnp-75/c10KkQ-R_R.-.--4_IT_O__3.5h_XC0_-3: 20_._.-_L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.F
namespaces: namespaces:
- "413" - "413"
topologyKey: "414" topologyKey: "414"
weight: -1851436166 weight: -1508769491
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: d-XZ-x.__.Y_2-n_5023Xl-3Pw_-r7g
operator: DoesNotExist operator: NotIn
values:
- VT3sn-0_.i__a.O2G_J
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n H__V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_j: 35.40Rw4gD.._.-x6db-L7.-__-G_2kCpS_1
namespaces: namespaces:
- "405" - "405"
topologyKey: "406" topologyKey: "406"
@ -690,17 +694,18 @@ spec:
nodeSelector: nodeSelector:
"358": "359" "358": "359"
overhead: overhead:
4'ď曕椐敛n湙: "310" tHǽ÷閂抰^窄CǙķȈ: "97"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: ý筞X
priority: -1852730577 priority: -1331113536
priorityClassName: "420" priorityClassName: "420"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: mō6µɑ`ȗ<8^翜
restartPolicy: ɭɪǹ0衷, restartPolicy: ɭɪǹ0衷,
runtimeClassName: "425" runtimeClassName: "425"
schedulerName: "415" schedulerName: "415"
securityContext: securityContext:
fsGroup: 2585323675983182372 fsGroup: 2585323675983182372
fsGroupChangePolicy: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
runAsGroup: 6386250802140824739 runAsGroup: 6386250802140824739
runAsNonRoot: false runAsNonRoot: false
runAsUser: -5315960194881172085 runAsUser: -5315960194881172085
@ -724,23 +729,22 @@ spec:
subdomain: "374" subdomain: "374"
terminationGracePeriodSeconds: -3039830979334099524 terminationGracePeriodSeconds: -3039830979334099524
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 緍k¢茤
key: "416" key: "416"
operator: 堺ʣ operator: 抄3昞财Î嘝zʄ!ć
tolerationSeconds: -3532804738923434397 tolerationSeconds: 4096844323391966153
value: "417" value: "417"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 88-i19.y-y7o-0-wq-zfdw73w0---4a18-f---ui6-48e-9-h4-w-qp25--7-n--kfk3g/1n1.--.._-x_4..u2-__3uM77U7._pz
operator: In operator: DoesNotExist
values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU ? zp22o4a-w----11rqy3eo79p-f4r1--7p--053--suu--98.y1s8-j-6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0--v/Ied-0-i_zZsY_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G5
maxSkew: -150478704 : x_.4dwFbuvEf55Y2k.F-4
maxSkew: 1956797678
topologyKey: "426" topologyKey: "426"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: ƀ+瑏eCmAȥ睙
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -940,24 +944,23 @@ spec:
storagePolicyID: "104" storagePolicyID: "104"
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
templateGeneration: 8027668557984017414 templateGeneration: 117144906028254972
updateStrategy: updateStrategy:
rollingUpdate: rollingUpdate:
maxUnavailable: 2 maxUnavailable: 2
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
status: status:
collisionCount: 2063260600 collisionCount: 2022921268
conditions: conditions:
- lastTransitionTime: "2196-03-13T21:02:11Z" - lastTransitionTime: "2733-02-09T15:36:31Z"
message: "434" message: "434"
reason: "433" reason: "433"
status: '>c緍k¢茤Ƣǟ½灶du汎mō6µɑ' status: (XEfê澙凋B/ü橚2ț
type: Ƅ抄3昞财Î嘝zʄ type: ɦ!
currentNumberScheduled: -1707056814 currentNumberScheduled: 1791868025
desiredNumberScheduled: 407742062 desiredNumberScheduled: -1152625369
numberAvailable: 904244563 numberAvailable: -1757575936
numberMisscheduled: -424698834 numberMisscheduled: -793692762
numberReady: 2115789304 numberReady: -1832836223
numberUnavailable: -1245696932 numberUnavailable: -1151395185
observedGeneration: -455484136992029462 observedGeneration: 289178836781711257
updatedNumberScheduled: 1660081568 updatedNumberScheduled: -1734448297

View File

@ -1154,7 +1154,8 @@
"name": "363", "name": "363",
"value": "364" "value": "364"
} }
] ],
"fsGroupChangePolicy": "Ņ#耗Ǚ("
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1171,7 +1172,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "368", "key": "368",
"operator": "ǧĒzŔ瘍N", "operator": "",
"values": [ "values": [
"369" "369"
] ]

View File

@ -98,7 +98,7 @@ spec:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "368" - key: "368"
operator: ǧĒzŔ瘍N operator: ""
values: values:
- "369" - "369"
matchFields: matchFields:
@ -706,6 +706,7 @@ spec:
schedulerName: "408" schedulerName: "408"
securityContext: securityContext:
fsGroup: 760480547754807445 fsGroup: 760480547754807445
fsGroupChangePolicy: Ņ#耗Ǚ(
runAsGroup: -801152248124332545 runAsGroup: -801152248124332545
runAsNonRoot: true runAsNonRoot: true
runAsUser: -2781126825051715248 runAsUser: -2781126825051715248

View File

@ -1155,7 +1155,8 @@
"name": "371", "name": "371",
"value": "372" "value": "372"
} }
] ],
"fsGroupChangePolicy": "蹔ŧ"
}, },
"imagePullSecrets": [ "imagePullSecrets": [
{ {
@ -1172,7 +1173,7 @@
"matchExpressions": [ "matchExpressions": [
{ {
"key": "376", "key": "376",
"operator": "6x$1sȣ±p鋄5弢ȹ均i绝5哇芆", "operator": "1sȣ±p鋄5",
"values": [ "values": [
"377" "377"
] ]
@ -1181,7 +1182,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "378", "key": "378",
"operator": "埮pɵ{WOŭW灬p", "operator": "幩šeSvEȤƏ埮pɵ",
"values": [ "values": [
"379" "379"
] ]
@ -1192,12 +1193,12 @@
}, },
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": 199049889, "weight": -1449289597,
"preference": { "preference": {
"matchExpressions": [ "matchExpressions": [
{ {
"key": "380", "key": "380",
"operator": "擭銆jʒǚ鍰\\縑", "operator": "",
"values": [ "values": [
"381" "381"
] ]
@ -1206,7 +1207,7 @@
"matchFields": [ "matchFields": [
{ {
"key": "382", "key": "382",
"operator": "鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ", "operator": "ş",
"values": [ "values": [
"383" "383"
] ]
@ -1221,14 +1222,14 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS": "1Tvw39F_C-rtSY.g._2F7.-_e..r" "3---93-2-23/8--21kF-c026.i": "9.M.134-5-.q6H_.--t"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1", "key": "7U_-m.-P.yP9S--858LI__.8U",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"z" "7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m"
] ]
} }
] ]
@ -1241,16 +1242,19 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -217760519, "weight": -280562323,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6": "Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP" "gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5": "2w-o.8_WT-M.3_-1y_8DX"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2", "key": "z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11",
"operator": "DoesNotExist" "operator": "NotIn",
"values": [
"c-r.E__-.8_e_l2.._8s--7_3x_-J_....7"
]
} }
] ]
}, },
@ -1267,11 +1271,11 @@
{ {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"7F3p2_-_AmD-.0AP.1": "A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n" "mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W": "7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "QZ9p_6.C.e", "key": "r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b",
"operator": "DoesNotExist" "operator": "DoesNotExist"
} }
] ]
@ -1284,18 +1288,18 @@
], ],
"preferredDuringSchedulingIgnoredDuringExecution": [ "preferredDuringSchedulingIgnoredDuringExecution": [
{ {
"weight": -1851436166, "weight": -1934575848,
"podAffinityTerm": { "podAffinityTerm": {
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3": "V0H2-.zHw.H__V.VT" "72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV": "nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D", "key": "7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E",
"operator": "NotIn", "operator": "NotIn",
"values": [ "values": [
"txb__-ex-_1_-ODgC_1-_V" "ZI-_P..w-W_-nE...-V"
] ]
} }
] ]
@ -1313,10 +1317,10 @@
"tolerations": [ "tolerations": [
{ {
"key": "417", "key": "417",
"operator": "堺ʣ", "operator": "ƴ磳藷曥摮Z Ǐg鲅",
"value": "418", "value": "418",
"effect": "ŽɣB矗E¸", "effect": "癯頯aɴí(Ȟ9\"忕(",
"tolerationSeconds": -3532804738923434397 "tolerationSeconds": 3807599400818393626
} }
], ],
"hostAliases": [ "hostAliases": [
@ -1328,7 +1332,7 @@
} }
], ],
"priorityClassName": "421", "priorityClassName": "421",
"priority": -1852730577, "priority": 1352980996,
"dnsConfig": { "dnsConfig": {
"nameservers": [ "nameservers": [
"422" "422"
@ -1345,30 +1349,30 @@
}, },
"readinessGates": [ "readinessGates": [
{ {
"conditionType": "ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅" "conditionType": "Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ"
} }
], ],
"runtimeClassName": "426", "runtimeClassName": "426",
"enableServiceLinks": false, "enableServiceLinks": false,
"preemptionPolicy": "!ń1ċƹ|慼櫁色苆试揯遐", "preemptionPolicy": "鲛ô衞Ɵ鳝稃Ȍ液文?謮",
"overhead": { "overhead": {
"4'ď曕椐敛n湙": "310" "Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲": "185"
}, },
"topologySpreadConstraints": [ "topologySpreadConstraints": [
{ {
"maxSkew": -150478704, "maxSkew": 547935694,
"topologyKey": "427", "topologyKey": "427",
"whenUnsatisfiable": ";鹡鑓侅闍ŏŃŋŏ}ŀ", "whenUnsatisfiable": "Ƨ钖孝0蛮xAǫ\u0026tŧK剛Ʀ",
"labelSelector": { "labelSelector": {
"matchLabels": { "matchLabels": {
"p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i": "wvU" "za42o/Y-YD-Q9_-__..YNFu7Pg-.1": "tE"
}, },
"matchExpressions": [ "matchExpressions": [
{ {
"key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W", "key": "9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs",
"operator": "In", "operator": "In",
"values": [ "values": [
"2-.s_6O-5_7_-0w_--5-_.3--_9QWJ" "7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I"
] ]
} }
] ]
@ -1379,16 +1383,16 @@
} }
}, },
"status": { "status": {
"replicas": -330302940, "replicas": -1165029050,
"fullyLabeledReplicas": 138911331, "fullyLabeledReplicas": 1893057016,
"readyReplicas": 1613009760, "readyReplicas": -2099726885,
"availableReplicas": -1469601144, "availableReplicas": -928976522,
"observedGeneration": 6703635170896137755, "observedGeneration": 702392770146794584,
"conditions": [ "conditions": [
{ {
"type": "ɡj瓇ɽ丿YƄZZ塖bʘ", "type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ",
"status": "ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å", "status": "ű孖站畦f黹ʩ鹸ɷ",
"lastTransitionTime": "2469-07-10T03:20:34Z", "lastTransitionTime": "2233-10-15T01:58:37Z",
"reason": "434", "reason": "434",
"message": "435" "message": "435"
} }

View File

@ -78,25 +78,25 @@ spec:
- preference: - preference:
matchExpressions: matchExpressions:
- key: "380" - key: "380"
operator: 擭銆jʒǚ鍰\縑 operator: ""
values: values:
- "381" - "381"
matchFields: matchFields:
- key: "382" - key: "382"
operator: 鞤ɱďW賁Ěɭɪǹ0衷,Ʒƣ operator: ş
values: values:
- "383" - "383"
weight: 199049889 weight: -1449289597
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: "376" - key: "376"
operator: 6x$1sȣ±p鋄5弢ȹ均i绝5哇芆 operator: 1sȣ±p鋄5
values: values:
- "377" - "377"
matchFields: matchFields:
- key: "378" - key: "378"
operator: 埮pɵ{WOŭW灬p operator: 幩šeSvEȤƏ埮pɵ
values: values:
- "379" - "379"
podAffinity: podAffinity:
@ -104,23 +104,25 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 3---g-----p8-d5-8-m8i--k0j5g.zrrw8-5ts-7-bp/6E__-.8_e_2 - key: z-ufkr-x0u-1meljf-5269893-t-kl35d6--7rs37zzgy3-4----nf---2/D8.TS-jJ.Ys_Mop34_-y.8_38xm-.nx.sEK4.B.__65m8_11
operator: DoesNotExist operator: NotIn
values:
- c-r.E__-.8_e_l2.._8s--7_3x_-J_....7
matchLabels: matchLabels:
4-yy28-38xmu5nx4s--41-7--6m/271-_-9_._X-D---k6: Q.-s.H.Hu-k-_-0-T1mel--F......3_t_-l..-.DG7r-3.----._4__XOnP gt._U.-x_rC9..__-6_k.N-2B_V.-tfh4.caTz5: 2w-o.8_WT-M.3_-1y_8DX
namespaces: namespaces:
- "398" - "398"
topologyKey: "399" topologyKey: "399"
weight: -217760519 weight: -280562323
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 6-x_rC9..__-6_k.N-2B_V.-tfh4.caTz_.g.w-o.8_WT-M.3_1 - key: 7U_-m.-P.yP9S--858LI__.8U
operator: NotIn operator: NotIn
values: values:
- z - 7-_pP__up.2L_s-o779._-k-5___-Qq..csh-3--Z1Tvw39F_C-rtSY.g._2F7m
matchLabels: matchLabels:
4--883d-v3j4-7y-p---up52--sjo7799-skj5---r-t.sumf7ew/u-5mj_9.M.134-5-.q6H_.--_---.M.U_-m.-P.yPS: 1Tvw39F_C-rtSY.g._2F7.-_e..r 3---93-2-23/8--21kF-c026.i: 9.M.134-5-.q6H_.--t
namespaces: namespaces:
- "390" - "390"
topologyKey: "391" topologyKey: "391"
@ -129,23 +131,23 @@ spec:
- podAffinityTerm: - podAffinityTerm:
labelSelector: labelSelector:
matchExpressions: matchExpressions:
- key: 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D - key: 7--4_IT_O__3.5h_XC0_-7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_E
operator: NotIn operator: NotIn
values: values:
- txb__-ex-_1_-ODgC_1-_V - ZI-_P..w-W_-nE...-V
matchLabels: matchLabels:
6V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8o._xJ1-lFA_X3: V0H2-.zHw.H__V.VT 72q--m--2k-p---139g-2wt-g-ve55m-27/k5v3aUK_--_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUV: nw_-_x18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
namespaces: namespaces:
- "414" - "414"
topologyKey: "415" topologyKey: "415"
weight: -1851436166 weight: -1934575848
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: QZ9p_6.C.e - key: r-7---064eqk5--f4e4--r1k278l-d-8o1-x-1wl----f31-0-9/X1rh-K5y_AzOBW.9oE9_6.--v17r__.b
operator: DoesNotExist operator: DoesNotExist
matchLabels: matchLabels:
7F3p2_-_AmD-.0AP.1: A--.F5_x.KNC0-.-m_0-m-6Sp_N-S..O-BZ..n mi-4xs-0-5k-67-3p2-t--m-l80--5o1--cp6-5-x4/n-p9.-_0R.-_-W: 7F.pq..--3QC1--L--v_Z--Zg-_4Q__-v_tu
namespaces: namespaces:
- "406" - "406"
topologyKey: "407" topologyKey: "407"
@ -688,17 +690,18 @@ spec:
nodeSelector: nodeSelector:
"359": "360" "359": "360"
overhead: overhead:
4'ď曕椐敛n湙: "310" Î磣:mʂ渢pɉ驻(+昒ȼȈɍ颬灲: "185"
preemptionPolicy: '!ń1ċƹ|慼櫁色苆试揯遐' preemptionPolicy: 鲛ô衞Ɵ鳝稃Ȍ液文?謮
priority: -1852730577 priority: 1352980996
priorityClassName: "421" priorityClassName: "421"
readinessGates: readinessGates:
- conditionType: ź魊塾ɖ$rolȋɶuɋ5r儉ɩ柀ɨ鴅 - conditionType: Ɏ嵄箲Ů埞瞔ɏÊ锒e躜ƕ
restartPolicy: ɘɢ鬍熖B芭花ª瘡 restartPolicy: ɘɢ鬍熖B芭花ª瘡
runtimeClassName: "426" runtimeClassName: "426"
schedulerName: "416" schedulerName: "416"
securityContext: securityContext:
fsGroup: 7124276984274024394 fsGroup: 7124276984274024394
fsGroupChangePolicy: 蹔ŧ
runAsGroup: -779972051078659613 runAsGroup: -779972051078659613
runAsNonRoot: false runAsNonRoot: false
runAsUser: 2179199799235189619 runAsUser: 2179199799235189619
@ -722,23 +725,23 @@ spec:
subdomain: "375" subdomain: "375"
terminationGracePeriodSeconds: 2666412258966278206 terminationGracePeriodSeconds: 2666412258966278206
tolerations: tolerations:
- effect: ŽɣB矗E¸ - effect: 癯頯aɴí(Ȟ9"忕(
key: "417" key: "417"
operator: 堺ʣ operator: ƴ磳藷曥摮Z Ǐg鲅
tolerationSeconds: -3532804738923434397 tolerationSeconds: 3807599400818393626
value: "418" value: "418"
topologySpreadConstraints: topologySpreadConstraints:
- labelSelector: - labelSelector:
matchExpressions: matchExpressions:
- key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W - key: 9-t-4m7a-41-6j4m--4-r4p--w1k8-u.4-2-08vc-u/B_-X__Hs
operator: In operator: In
values: values:
- 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ - 7h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2I
matchLabels: matchLabels:
p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/t5W_._._-2M2._i: wvU za42o/Y-YD-Q9_-__..YNFu7Pg-.1: tE
maxSkew: -150478704 maxSkew: 547935694
topologyKey: "427" topologyKey: "427"
whenUnsatisfiable: ;鹡鑓侅闍ŏŃŋŏ}ŀ whenUnsatisfiable: Ƨ钖孝0蛮xAǫ&tŧK剛Ʀ
volumes: volumes:
- awsElasticBlockStore: - awsElasticBlockStore:
fsType: "47" fsType: "47"
@ -938,14 +941,14 @@ spec:
storagePolicyName: "103" storagePolicyName: "103"
volumePath: "101" volumePath: "101"
status: status:
availableReplicas: -1469601144 availableReplicas: -928976522
conditions: conditions:
- lastTransitionTime: "2469-07-10T03:20:34Z" - lastTransitionTime: "2233-10-15T01:58:37Z"
message: "435" message: "435"
reason: "434" reason: "434"
status: ɻ猶N嫡牿咸Ǻ潑鶋洅啶'ƈoIǢ龞瞯å status: ű孖站畦f黹ʩ鹸ɷ
type: ɡj瓇ɽ丿YƄZZ塖bʘ type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ
fullyLabeledReplicas: 138911331 fullyLabeledReplicas: 1893057016
observedGeneration: 6703635170896137755 observedGeneration: 702392770146794584
readyReplicas: 1613009760 readyReplicas: -2099726885
replicas: -330302940 replicas: -1165029050