Run code generation for new field

This commit is contained in:
James Sturtevant 2019-02-04 19:21:33 +00:00 committed by Claudiu Belu
parent e8b369ff3c
commit 1c4edfba57
70 changed files with 5752 additions and 5555 deletions

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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