Adding autogenerated files
This commit is contained in:
parent
4112d8db20
commit
7ef7ce2a3c
4
api/openapi-spec/swagger.json
generated
4
api/openapi-spec/swagger.json
generated
@ -8557,6 +8557,10 @@
|
|||||||
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
|
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"setHostnameAsFQDN": {
|
||||||
|
"description": "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.",
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
"shareProcessNamespace": {
|
"shareProcessNamespace": {
|
||||||
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
|
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
2
pkg/apis/core/v1/zz_generated.conversion.go
generated
2
pkg/apis/core/v1/zz_generated.conversion.go
generated
@ -6043,6 +6043,7 @@ func autoConvert_v1_PodSpec_To_core_PodSpec(in *v1.PodSpec, out *core.PodSpec, s
|
|||||||
out.PreemptionPolicy = (*core.PreemptionPolicy)(unsafe.Pointer(in.PreemptionPolicy))
|
out.PreemptionPolicy = (*core.PreemptionPolicy)(unsafe.Pointer(in.PreemptionPolicy))
|
||||||
out.Overhead = *(*core.ResourceList)(unsafe.Pointer(&in.Overhead))
|
out.Overhead = *(*core.ResourceList)(unsafe.Pointer(&in.Overhead))
|
||||||
out.TopologySpreadConstraints = *(*[]core.TopologySpreadConstraint)(unsafe.Pointer(&in.TopologySpreadConstraints))
|
out.TopologySpreadConstraints = *(*[]core.TopologySpreadConstraint)(unsafe.Pointer(&in.TopologySpreadConstraints))
|
||||||
|
out.SetHostnameAsFQDN = (*bool)(unsafe.Pointer(in.SetHostnameAsFQDN))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6081,6 +6082,7 @@ func autoConvert_core_PodSpec_To_v1_PodSpec(in *core.PodSpec, out *v1.PodSpec, s
|
|||||||
out.ImagePullSecrets = *(*[]v1.LocalObjectReference)(unsafe.Pointer(&in.ImagePullSecrets))
|
out.ImagePullSecrets = *(*[]v1.LocalObjectReference)(unsafe.Pointer(&in.ImagePullSecrets))
|
||||||
out.Hostname = in.Hostname
|
out.Hostname = in.Hostname
|
||||||
out.Subdomain = in.Subdomain
|
out.Subdomain = in.Subdomain
|
||||||
|
out.SetHostnameAsFQDN = (*bool)(unsafe.Pointer(in.SetHostnameAsFQDN))
|
||||||
out.Affinity = (*v1.Affinity)(unsafe.Pointer(in.Affinity))
|
out.Affinity = (*v1.Affinity)(unsafe.Pointer(in.Affinity))
|
||||||
out.SchedulerName = in.SchedulerName
|
out.SchedulerName = in.SchedulerName
|
||||||
out.Tolerations = *(*[]v1.Toleration)(unsafe.Pointer(&in.Tolerations))
|
out.Tolerations = *(*[]v1.Toleration)(unsafe.Pointer(&in.Tolerations))
|
||||||
|
5
pkg/apis/core/zz_generated.deepcopy.go
generated
5
pkg/apis/core/zz_generated.deepcopy.go
generated
@ -3798,6 +3798,11 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
|
|||||||
*out = make([]LocalObjectReference, len(*in))
|
*out = make([]LocalObjectReference, len(*in))
|
||||||
copy(*out, *in)
|
copy(*out, *in)
|
||||||
}
|
}
|
||||||
|
if in.SetHostnameAsFQDN != nil {
|
||||||
|
in, out := &in.SetHostnameAsFQDN, &out.SetHostnameAsFQDN
|
||||||
|
*out = new(bool)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
if in.Affinity != nil {
|
if in.Affinity != nil {
|
||||||
in, out := &in.Affinity, &out.Affinity
|
in, out := &in.Affinity, &out.Affinity
|
||||||
*out = new(Affinity)
|
*out = new(Affinity)
|
||||||
|
1755
staging/src/k8s.io/api/core/v1/generated.pb.go
generated
1755
staging/src/k8s.io/api/core/v1/generated.pb.go
generated
File diff suppressed because it is too large
Load Diff
@ -3551,6 +3551,14 @@ message PodSpec {
|
|||||||
// +listMapKey=topologyKey
|
// +listMapKey=topologyKey
|
||||||
// +listMapKey=whenUnsatisfiable
|
// +listMapKey=whenUnsatisfiable
|
||||||
repeated TopologySpreadConstraint topologySpreadConstraints = 33;
|
repeated TopologySpreadConstraint topologySpreadConstraints = 33;
|
||||||
|
|
||||||
|
// If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
|
||||||
|
// In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
|
||||||
|
// In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
|
||||||
|
// If a pod does not have FQDN, this has no effect.
|
||||||
|
// Default to false.
|
||||||
|
// +optional
|
||||||
|
optional bool setHostnameAsFQDN = 35;
|
||||||
}
|
}
|
||||||
|
|
||||||
// PodStatus represents information about the status of a pod. Status may trail the actual
|
// PodStatus represents information about the status of a pod. Status may trail the actual
|
||||||
|
@ -1634,6 +1634,7 @@ var map_PodSpec = map[string]string{
|
|||||||
"preemptionPolicy": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
|
"preemptionPolicy": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
|
||||||
"overhead": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
|
"overhead": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
|
||||||
"topologySpreadConstraints": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
|
"topologySpreadConstraints": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
|
||||||
|
"setHostnameAsFQDN": "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.",
|
||||||
}
|
}
|
||||||
|
|
||||||
func (PodSpec) SwaggerDoc() map[string]string {
|
func (PodSpec) SwaggerDoc() map[string]string {
|
||||||
|
@ -3859,6 +3859,11 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
|
|||||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.SetHostnameAsFQDN != nil {
|
||||||
|
in, out := &in.SetHostnameAsFQDN, &out.SetHostnameAsFQDN
|
||||||
|
*out = new(bool)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1378,32 +1378,34 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"updateStrategy": {
|
"updateStrategy": {
|
||||||
|
"type": "))e×鄞閆N钮Ǒ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2
|
"maxUnavailable": 2
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 997447044,
|
"minReadySeconds": -1521312599,
|
||||||
"revisionHistoryLimit": 989524452
|
"revisionHistoryLimit": 554881301
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"currentNumberScheduled": 1606858231,
|
"currentNumberScheduled": 687719923,
|
||||||
"numberMisscheduled": 1791868025,
|
"numberMisscheduled": -1777921334,
|
||||||
"desiredNumberScheduled": -793692762,
|
"desiredNumberScheduled": -2022058870,
|
||||||
"numberReady": -1152625369,
|
"numberReady": 283054026,
|
||||||
"observedGeneration": 3839991706170762113,
|
"observedGeneration": 9202522069332337259,
|
||||||
"updatedNumberScheduled": -1292943463,
|
"updatedNumberScheduled": -691360969,
|
||||||
"numberAvailable": -1734448297,
|
"numberAvailable": 1090884237,
|
||||||
"numberUnavailable": -1757575936,
|
"numberUnavailable": -1303432952,
|
||||||
"collisionCount": 129237050,
|
"collisionCount": -434531243,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö",
|
"type": "",
|
||||||
"status": "2ț",
|
"status": "B/ü橚2ț}¹旛坷硂",
|
||||||
"lastTransitionTime": "2733-02-09T15:36:31Z",
|
"lastTransitionTime": "2776-12-09T00:48:05Z",
|
||||||
"reason": "433",
|
"reason": "433",
|
||||||
"message": "434"
|
"message": "434"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -30,8 +30,8 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 997447044
|
minReadySeconds: -1521312599
|
||||||
revisionHistoryLimit: 989524452
|
revisionHistoryLimit: 554881301
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
|
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
|
||||||
@ -725,6 +725,7 @@ spec:
|
|||||||
runAsUserName: "369"
|
runAsUserName: "369"
|
||||||
serviceAccount: "361"
|
serviceAccount: "361"
|
||||||
serviceAccountName: "360"
|
serviceAccountName: "360"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "374"
|
subdomain: "374"
|
||||||
terminationGracePeriodSeconds: -3039830979334099524
|
terminationGracePeriodSeconds: -3039830979334099524
|
||||||
@ -947,19 +948,20 @@ spec:
|
|||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
|
type: ))e×鄞閆N钮Ǒ
|
||||||
status:
|
status:
|
||||||
collisionCount: 129237050
|
collisionCount: -434531243
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2733-02-09T15:36:31Z"
|
- lastTransitionTime: "2776-12-09T00:48:05Z"
|
||||||
message: "434"
|
message: "434"
|
||||||
reason: "433"
|
reason: "433"
|
||||||
status: 2ț
|
status: B/ü橚2ț}¹旛坷硂
|
||||||
type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö'
|
type: ""
|
||||||
currentNumberScheduled: 1606858231
|
currentNumberScheduled: 687719923
|
||||||
desiredNumberScheduled: -793692762
|
desiredNumberScheduled: -2022058870
|
||||||
numberAvailable: -1734448297
|
numberAvailable: 1090884237
|
||||||
numberMisscheduled: 1791868025
|
numberMisscheduled: -1777921334
|
||||||
numberReady: -1152625369
|
numberReady: 283054026
|
||||||
numberUnavailable: -1757575936
|
numberUnavailable: -1303432952
|
||||||
observedGeneration: 3839991706170762113
|
observedGeneration: 9202522069332337259
|
||||||
updatedNumberScheduled: -1292943463
|
updatedNumberScheduled: -691360969
|
||||||
|
@ -1371,37 +1371,38 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"strategy": {
|
"strategy": {
|
||||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2,
|
"maxUnavailable": 2,
|
||||||
"maxSurge": 3
|
"maxSurge": 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 212061711,
|
"minReadySeconds": 696654600,
|
||||||
"revisionHistoryLimit": -1092090658,
|
"revisionHistoryLimit": 407742062,
|
||||||
"progressDeadlineSeconds": -1707056814
|
"progressDeadlineSeconds": 902022378
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 2992108727478230062,
|
"observedGeneration": -3992059348490463840,
|
||||||
"replicas": 407742062,
|
"replicas": 904244563,
|
||||||
"updatedReplicas": 2115789304,
|
"updatedReplicas": -1245696932,
|
||||||
"readyReplicas": 902022378,
|
"readyReplicas": -1512660030,
|
||||||
"availableReplicas": 1660081568,
|
"availableReplicas": -655315199,
|
||||||
"unavailableReplicas": 904244563,
|
"unavailableReplicas": -918184784,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "洅啶",
|
"type": "oIǢ龞瞯å檳ė\u003ec緍k¢茤Ƣǟ½灶",
|
||||||
"status": "Ƅ抄3昞财Î嘝zʄ",
|
"status": "査Z綶ĀRġ磸",
|
||||||
"lastUpdateTime": "2524-02-08T04:27:05Z",
|
"lastUpdateTime": "2631-04-27T22:00:28Z",
|
||||||
"lastTransitionTime": "2146-08-16T07:05:27Z",
|
"lastTransitionTime": "2196-03-13T21:02:11Z",
|
||||||
"reason": "426",
|
"reason": "426",
|
||||||
"message": "427"
|
"message": "427"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"collisionCount": -1977467928
|
"collisionCount": -1914221188
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -30,10 +30,10 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 212061711
|
minReadySeconds: 696654600
|
||||||
progressDeadlineSeconds: -1707056814
|
progressDeadlineSeconds: 902022378
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: -1092090658
|
revisionHistoryLimit: 407742062
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -44,7 +44,7 @@ spec:
|
|||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxSurge: 3
|
maxSurge: 3
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
@ -724,6 +724,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -945,17 +946,17 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: 1660081568
|
availableReplicas: -655315199
|
||||||
collisionCount: -1977467928
|
collisionCount: -1914221188
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2146-08-16T07:05:27Z"
|
- lastTransitionTime: "2196-03-13T21:02:11Z"
|
||||||
lastUpdateTime: "2524-02-08T04:27:05Z"
|
lastUpdateTime: "2631-04-27T22:00:28Z"
|
||||||
message: "427"
|
message: "427"
|
||||||
reason: "426"
|
reason: "426"
|
||||||
status: Ƅ抄3昞财Î嘝zʄ
|
status: 査Z綶ĀRġ磸
|
||||||
type: 洅啶
|
type: oIǢ龞瞯å檳ė>c緍k¢茤Ƣǟ½灶
|
||||||
observedGeneration: 2992108727478230062
|
observedGeneration: -3992059348490463840
|
||||||
readyReplicas: 902022378
|
readyReplicas: -1512660030
|
||||||
replicas: 407742062
|
replicas: 904244563
|
||||||
unavailableReplicas: 904244563
|
unavailableReplicas: -918184784
|
||||||
updatedReplicas: 2115789304
|
updatedReplicas: -1245696932
|
||||||
|
@ -1378,21 +1378,22 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"replicas": -1165029050,
|
"replicas": 1893057016,
|
||||||
"fullyLabeledReplicas": 1893057016,
|
"fullyLabeledReplicas": -2099726885,
|
||||||
"readyReplicas": -2099726885,
|
"readyReplicas": -928976522,
|
||||||
"availableReplicas": -928976522,
|
"availableReplicas": -983106472,
|
||||||
"observedGeneration": 702392770146794584,
|
"observedGeneration": 4693783954739913971,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "暁×軓鼐嵱宯ÙQ阉(闒ƈƳ",
|
"type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ",
|
||||||
"status": "ű孖站畦f黹ʩ鹸ɷ",
|
"status": "站畦f黹ʩ鹸ɷLȋ",
|
||||||
"lastTransitionTime": "2233-10-15T01:58:37Z",
|
"lastTransitionTime": "2376-03-18T02:40:44Z",
|
||||||
"reason": "434",
|
"reason": "434",
|
||||||
"message": "435"
|
"message": "435"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -721,6 +721,7 @@ spec:
|
|||||||
runAsUserName: "370"
|
runAsUserName: "370"
|
||||||
serviceAccount: "362"
|
serviceAccount: "362"
|
||||||
serviceAccountName: "361"
|
serviceAccountName: "361"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "375"
|
subdomain: "375"
|
||||||
terminationGracePeriodSeconds: 2666412258966278206
|
terminationGracePeriodSeconds: 2666412258966278206
|
||||||
@ -941,14 +942,14 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: -928976522
|
availableReplicas: -983106472
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2233-10-15T01:58:37Z"
|
- lastTransitionTime: "2376-03-18T02:40:44Z"
|
||||||
message: "435"
|
message: "435"
|
||||||
reason: "434"
|
reason: "434"
|
||||||
status: ű孖站畦f黹ʩ鹸ɷ
|
status: 站畦f黹ʩ鹸ɷLȋ
|
||||||
type: 暁×軓鼐嵱宯ÙQ阉(闒ƈƳ
|
type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ
|
||||||
fullyLabeledReplicas: 1893057016
|
fullyLabeledReplicas: -2099726885
|
||||||
observedGeneration: 702392770146794584
|
observedGeneration: 4693783954739913971
|
||||||
readyReplicas: -2099726885
|
readyReplicas: -928976522
|
||||||
replicas: -1165029050
|
replicas: 1893057016
|
||||||
|
@ -1371,7 +1371,8 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"volumeClaimTemplates": [
|
"volumeClaimTemplates": [
|
||||||
@ -1381,11 +1382,11 @@
|
|||||||
"generateName": "427",
|
"generateName": "427",
|
||||||
"namespace": "428",
|
"namespace": "428",
|
||||||
"selfLink": "429",
|
"selfLink": "429",
|
||||||
"uid": "`ȗ\u003c8^翜T蘈",
|
"uid": "瞯å檳ė\u003ec緍",
|
||||||
"resourceVersion": "6281861817195808867",
|
"resourceVersion": "8774564298362452033",
|
||||||
"generation": -8502907933203165744,
|
"generation": -4846338476256404591,
|
||||||
"creationTimestamp": null,
|
"creationTimestamp": null,
|
||||||
"deletionGracePeriodSeconds": -1824067601569574665,
|
"deletionGracePeriodSeconds": 6041236524714316269,
|
||||||
"labels": {
|
"labels": {
|
||||||
"431": "432"
|
"431": "432"
|
||||||
},
|
},
|
||||||
@ -1397,8 +1398,8 @@
|
|||||||
"apiVersion": "435",
|
"apiVersion": "435",
|
||||||
"kind": "436",
|
"kind": "436",
|
||||||
"name": "437",
|
"name": "437",
|
||||||
"uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ",
|
"uid": "ƄZ",
|
||||||
"controller": true,
|
"controller": false,
|
||||||
"blockOwnerDeletion": false
|
"blockOwnerDeletion": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -1409,7 +1410,7 @@
|
|||||||
"managedFields": [
|
"managedFields": [
|
||||||
{
|
{
|
||||||
"manager": "440",
|
"manager": "440",
|
||||||
"operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā",
|
"operation": "ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄",
|
||||||
"apiVersion": "441",
|
"apiVersion": "441",
|
||||||
"fieldsType": "442"
|
"fieldsType": "442"
|
||||||
}
|
}
|
||||||
@ -1417,30 +1418,30 @@
|
|||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"accessModes": [
|
"accessModes": [
|
||||||
"銲tHǽ÷閂抰^窄CǙķȈĐI梞ū"
|
"Ƣǟ½灶du汎mō6µɑ`ȗ\u003c8^翜T"
|
||||||
],
|
],
|
||||||
"selector": {
|
"selector": {
|
||||||
"matchLabels": {
|
"matchLabels": {
|
||||||
"p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C": "a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r"
|
"d-m._fN._k8__._ep21": "6_A_090ERG2nV.__p_Y-.2__a_dWU_VF"
|
||||||
},
|
},
|
||||||
"matchExpressions": [
|
"matchExpressions": [
|
||||||
{
|
{
|
||||||
"key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv",
|
"key": "oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T",
|
||||||
"operator": "Exists"
|
"operator": "DoesNotExist"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
"limits": {
|
"limits": {
|
||||||
"O^:": "847"
|
"蒸CƅR8ɷ|恫f籽": "139"
|
||||||
},
|
},
|
||||||
"requests": {
|
"requests": {
|
||||||
"Ɍ蚊ơ鎊t潑": "199"
|
"": "380"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"volumeName": "449",
|
"volumeName": "449",
|
||||||
"storageClassName": "450",
|
"storageClassName": "450",
|
||||||
"volumeMode": "ȳT",
|
"volumeMode": "ì淵歔",
|
||||||
"dataSource": {
|
"dataSource": {
|
||||||
"apiGroup": "451",
|
"apiGroup": "451",
|
||||||
"kind": "452",
|
"kind": "452",
|
||||||
@ -1448,19 +1449,19 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"phase": "戱PRɄ",
|
"phase": "d,",
|
||||||
"accessModes": [
|
"accessModes": [
|
||||||
"熔ķ´ʑ潞Ĵ3Q蠯0"
|
";蛡媈U"
|
||||||
],
|
],
|
||||||
"capacity": {
|
"capacity": {
|
||||||
"\\溮Ŀ傜NZ!š": "952"
|
"n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:": "847"
|
||||||
},
|
},
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:",
|
"type": "Ɍ蚊ơ鎊t潑",
|
||||||
"status": "ƿOqõƨj2愴ňù廻@p",
|
"status": "惃ȳTʬ戱P",
|
||||||
"lastProbeTime": "2252-06-28T22:34:24Z",
|
"lastProbeTime": "2237-12-11T16:15:26Z",
|
||||||
"lastTransitionTime": "1974-04-29T05:51:38Z",
|
"lastTransitionTime": "2926-09-20T14:30:14Z",
|
||||||
"reason": "454",
|
"reason": "454",
|
||||||
"message": "455"
|
"message": "455"
|
||||||
}
|
}
|
||||||
@ -1469,29 +1470,29 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"serviceName": "456",
|
"serviceName": "456",
|
||||||
"podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣",
|
"podManagementPolicy": "冒ƖƦɼ橈\"Ĩ媻ʪdž澆",
|
||||||
"updateStrategy": {
|
"updateStrategy": {
|
||||||
"type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ",
|
"type": "ƍ\\溮Ŀ傜NZ!šZ_",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"partition": 86666826
|
"partition": -1774432721
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"revisionHistoryLimit": 69142596
|
"revisionHistoryLimit": 51542630
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 3474169154658456972,
|
"observedGeneration": 4970381117743528748,
|
||||||
"replicas": 1449104338,
|
"replicas": 1736529625,
|
||||||
"readyReplicas": 2037461401,
|
"readyReplicas": 1972352681,
|
||||||
"currentReplicas": -1847673756,
|
"currentReplicas": -727089824,
|
||||||
"updatedReplicas": 154782591,
|
"updatedReplicas": -2068243724,
|
||||||
"currentRevision": "457",
|
"currentRevision": "457",
|
||||||
"updateRevision": "458",
|
"updateRevision": "458",
|
||||||
"collisionCount": 341287797,
|
"collisionCount": -1807803289,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "ÆŁĪŀc=Ƨz鈡煰敹xŪO",
|
"type": "!轅諑",
|
||||||
"status": "ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+",
|
"status": "YĹ爩",
|
||||||
"lastTransitionTime": "2493-11-15T11:08:04Z",
|
"lastTransitionTime": "2544-05-05T21:53:33Z",
|
||||||
"reason": "459",
|
"reason": "459",
|
||||||
"message": "460"
|
"message": "460"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -30,9 +30,9 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣
|
podManagementPolicy: 冒ƖƦɼ橈"Ĩ媻ʪdž澆
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: 69142596
|
revisionHistoryLimit: 51542630
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -719,6 +719,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -941,84 +942,84 @@ spec:
|
|||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
partition: 86666826
|
partition: -1774432721
|
||||||
type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ
|
type: ƍ\溮Ŀ傜NZ!šZ_
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- metadata:
|
- metadata:
|
||||||
annotations:
|
annotations:
|
||||||
"433": "434"
|
"433": "434"
|
||||||
clusterName: "439"
|
clusterName: "439"
|
||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
deletionGracePeriodSeconds: -1824067601569574665
|
deletionGracePeriodSeconds: 6041236524714316269
|
||||||
finalizers:
|
finalizers:
|
||||||
- "438"
|
- "438"
|
||||||
generateName: "427"
|
generateName: "427"
|
||||||
generation: -8502907933203165744
|
generation: -4846338476256404591
|
||||||
labels:
|
labels:
|
||||||
"431": "432"
|
"431": "432"
|
||||||
managedFields:
|
managedFields:
|
||||||
- apiVersion: "441"
|
- apiVersion: "441"
|
||||||
fieldsType: "442"
|
fieldsType: "442"
|
||||||
manager: "440"
|
manager: "440"
|
||||||
operation: Bi攵&ý"ʀ废査Z綶Ā
|
operation: ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄
|
||||||
name: "426"
|
name: "426"
|
||||||
namespace: "428"
|
namespace: "428"
|
||||||
ownerReferences:
|
ownerReferences:
|
||||||
- apiVersion: "435"
|
- apiVersion: "435"
|
||||||
blockOwnerDeletion: false
|
blockOwnerDeletion: false
|
||||||
controller: true
|
controller: false
|
||||||
kind: "436"
|
kind: "436"
|
||||||
name: "437"
|
name: "437"
|
||||||
uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ
|
uid: ƄZ
|
||||||
resourceVersion: "6281861817195808867"
|
resourceVersion: "8774564298362452033"
|
||||||
selfLink: "429"
|
selfLink: "429"
|
||||||
uid: '`ȗ<8^翜T蘈'
|
uid: 瞯å檳ė>c緍
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū
|
- Ƣǟ½灶du汎mō6µɑ`ȗ<8^翜T
|
||||||
dataSource:
|
dataSource:
|
||||||
apiGroup: "451"
|
apiGroup: "451"
|
||||||
kind: "452"
|
kind: "452"
|
||||||
name: "453"
|
name: "453"
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
'O^:': "847"
|
蒸CƅR8ɷ|恫f籽: "139"
|
||||||
requests:
|
requests:
|
||||||
Ɍ蚊ơ鎊t潑: "199"
|
"": "380"
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv
|
- key: oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T
|
||||||
operator: Exists
|
operator: DoesNotExist
|
||||||
matchLabels:
|
matchLabels:
|
||||||
p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C: a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r
|
d-m._fN._k8__._ep21: 6_A_090ERG2nV.__p_Y-.2__a_dWU_VF
|
||||||
storageClassName: "450"
|
storageClassName: "450"
|
||||||
volumeMode: ȳT
|
volumeMode: ì淵歔
|
||||||
volumeName: "449"
|
volumeName: "449"
|
||||||
status:
|
status:
|
||||||
accessModes:
|
accessModes:
|
||||||
- 熔ķ´ʑ潞Ĵ3Q蠯0
|
- ;蛡媈U
|
||||||
capacity:
|
capacity:
|
||||||
\溮Ŀ傜NZ!š: "952"
|
'n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:': "847"
|
||||||
conditions:
|
conditions:
|
||||||
- lastProbeTime: "2252-06-28T22:34:24Z"
|
- lastProbeTime: "2237-12-11T16:15:26Z"
|
||||||
lastTransitionTime: "1974-04-29T05:51:38Z"
|
lastTransitionTime: "2926-09-20T14:30:14Z"
|
||||||
message: "455"
|
message: "455"
|
||||||
reason: "454"
|
reason: "454"
|
||||||
status: ƿOqõƨj2愴ňù廻@p
|
status: 惃ȳTʬ戱P
|
||||||
type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:'
|
type: Ɍ蚊ơ鎊t潑
|
||||||
phase: 戱PRɄ
|
phase: d,
|
||||||
status:
|
status:
|
||||||
collisionCount: 341287797
|
collisionCount: -1807803289
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2493-11-15T11:08:04Z"
|
- lastTransitionTime: "2544-05-05T21:53:33Z"
|
||||||
message: "460"
|
message: "460"
|
||||||
reason: "459"
|
reason: "459"
|
||||||
status: ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+
|
status: YĹ爩
|
||||||
type: ÆŁĪŀc=Ƨz鈡煰敹xŪO
|
type: '!轅諑'
|
||||||
currentReplicas: -1847673756
|
currentReplicas: -727089824
|
||||||
currentRevision: "457"
|
currentRevision: "457"
|
||||||
observedGeneration: 3474169154658456972
|
observedGeneration: 4970381117743528748
|
||||||
readyReplicas: 2037461401
|
readyReplicas: 1972352681
|
||||||
replicas: 1449104338
|
replicas: 1736529625
|
||||||
updateRevision: "458"
|
updateRevision: "458"
|
||||||
updatedReplicas: 154782591
|
updatedReplicas: -2068243724
|
||||||
|
@ -1371,40 +1371,41 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"strategy": {
|
"strategy": {
|
||||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2,
|
"maxUnavailable": 2,
|
||||||
"maxSurge": 3
|
"maxSurge": 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 212061711,
|
"minReadySeconds": 696654600,
|
||||||
"revisionHistoryLimit": -1092090658,
|
"revisionHistoryLimit": 407742062,
|
||||||
"rollbackTo": {
|
"rollbackTo": {
|
||||||
"revision": -318895959020904110
|
"revision": -455484136992029462
|
||||||
},
|
},
|
||||||
"progressDeadlineSeconds": 1109758199
|
"progressDeadlineSeconds": -1450995995
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 1751238822830387407,
|
"observedGeneration": 3883700826410970519,
|
||||||
"replicas": -106050665,
|
"replicas": -449319810,
|
||||||
"updatedReplicas": -929473748,
|
"updatedReplicas": 2063260600,
|
||||||
"readyReplicas": -1450995995,
|
"readyReplicas": -729742317,
|
||||||
"availableReplicas": 740158871,
|
"availableReplicas": 294718341,
|
||||||
"unavailableReplicas": -449319810,
|
"unavailableReplicas": 867742020,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "",
|
"type": "昞财Î嘝zʄ!ć惍Bi攵\u0026ý\"ʀ",
|
||||||
"status": "'ƈoIǢ龞瞯å",
|
"status": "",
|
||||||
"lastUpdateTime": "2469-07-10T03:20:34Z",
|
"lastUpdateTime": "2042-08-25T05:10:04Z",
|
||||||
"lastTransitionTime": "1970-05-16T01:44:00Z",
|
"lastTransitionTime": "2097-04-15T07:29:40Z",
|
||||||
"reason": "426",
|
"reason": "426",
|
||||||
"message": "427"
|
"message": "427"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"collisionCount": 571778293
|
"collisionCount": -2071091268
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -30,12 +30,12 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 212061711
|
minReadySeconds: 696654600
|
||||||
progressDeadlineSeconds: 1109758199
|
progressDeadlineSeconds: -1450995995
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: -1092090658
|
revisionHistoryLimit: 407742062
|
||||||
rollbackTo:
|
rollbackTo:
|
||||||
revision: -318895959020904110
|
revision: -455484136992029462
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -46,7 +46,7 @@ spec:
|
|||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxSurge: 3
|
maxSurge: 3
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
@ -726,6 +726,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -947,17 +948,17 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: 740158871
|
availableReplicas: 294718341
|
||||||
collisionCount: 571778293
|
collisionCount: -2071091268
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "1970-05-16T01:44:00Z"
|
- lastTransitionTime: "2097-04-15T07:29:40Z"
|
||||||
lastUpdateTime: "2469-07-10T03:20:34Z"
|
lastUpdateTime: "2042-08-25T05:10:04Z"
|
||||||
message: "427"
|
message: "427"
|
||||||
reason: "426"
|
reason: "426"
|
||||||
status: '''ƈoIǢ龞瞯å'
|
status: ""
|
||||||
type: ""
|
type: 昞财Î嘝zʄ!ć惍Bi攵&ý"ʀ
|
||||||
observedGeneration: 1751238822830387407
|
observedGeneration: 3883700826410970519
|
||||||
readyReplicas: -1450995995
|
readyReplicas: -729742317
|
||||||
replicas: -106050665
|
replicas: -449319810
|
||||||
unavailableReplicas: -449319810
|
unavailableReplicas: 867742020
|
||||||
updatedReplicas: -929473748
|
updatedReplicas: 2063260600
|
||||||
|
@ -1371,7 +1371,8 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"volumeClaimTemplates": [
|
"volumeClaimTemplates": [
|
||||||
@ -1381,11 +1382,11 @@
|
|||||||
"generateName": "427",
|
"generateName": "427",
|
||||||
"namespace": "428",
|
"namespace": "428",
|
||||||
"selfLink": "429",
|
"selfLink": "429",
|
||||||
"uid": "`ȗ\u003c8^翜T蘈",
|
"uid": "瞯å檳ė\u003ec緍",
|
||||||
"resourceVersion": "6281861817195808867",
|
"resourceVersion": "8774564298362452033",
|
||||||
"generation": -8502907933203165744,
|
"generation": -4846338476256404591,
|
||||||
"creationTimestamp": null,
|
"creationTimestamp": null,
|
||||||
"deletionGracePeriodSeconds": -1824067601569574665,
|
"deletionGracePeriodSeconds": 6041236524714316269,
|
||||||
"labels": {
|
"labels": {
|
||||||
"431": "432"
|
"431": "432"
|
||||||
},
|
},
|
||||||
@ -1397,8 +1398,8 @@
|
|||||||
"apiVersion": "435",
|
"apiVersion": "435",
|
||||||
"kind": "436",
|
"kind": "436",
|
||||||
"name": "437",
|
"name": "437",
|
||||||
"uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ",
|
"uid": "ƄZ",
|
||||||
"controller": true,
|
"controller": false,
|
||||||
"blockOwnerDeletion": false
|
"blockOwnerDeletion": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -1409,7 +1410,7 @@
|
|||||||
"managedFields": [
|
"managedFields": [
|
||||||
{
|
{
|
||||||
"manager": "440",
|
"manager": "440",
|
||||||
"operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā",
|
"operation": "ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄",
|
||||||
"apiVersion": "441",
|
"apiVersion": "441",
|
||||||
"fieldsType": "442"
|
"fieldsType": "442"
|
||||||
}
|
}
|
||||||
@ -1417,30 +1418,30 @@
|
|||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"accessModes": [
|
"accessModes": [
|
||||||
"銲tHǽ÷閂抰^窄CǙķȈĐI梞ū"
|
"Ƣǟ½灶du汎mō6µɑ`ȗ\u003c8^翜T"
|
||||||
],
|
],
|
||||||
"selector": {
|
"selector": {
|
||||||
"matchLabels": {
|
"matchLabels": {
|
||||||
"p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C": "a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r"
|
"d-m._fN._k8__._ep21": "6_A_090ERG2nV.__p_Y-.2__a_dWU_VF"
|
||||||
},
|
},
|
||||||
"matchExpressions": [
|
"matchExpressions": [
|
||||||
{
|
{
|
||||||
"key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv",
|
"key": "oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T",
|
||||||
"operator": "Exists"
|
"operator": "DoesNotExist"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
"limits": {
|
"limits": {
|
||||||
"O^:": "847"
|
"蒸CƅR8ɷ|恫f籽": "139"
|
||||||
},
|
},
|
||||||
"requests": {
|
"requests": {
|
||||||
"Ɍ蚊ơ鎊t潑": "199"
|
"": "380"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"volumeName": "449",
|
"volumeName": "449",
|
||||||
"storageClassName": "450",
|
"storageClassName": "450",
|
||||||
"volumeMode": "ȳT",
|
"volumeMode": "ì淵歔",
|
||||||
"dataSource": {
|
"dataSource": {
|
||||||
"apiGroup": "451",
|
"apiGroup": "451",
|
||||||
"kind": "452",
|
"kind": "452",
|
||||||
@ -1448,19 +1449,19 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"phase": "戱PRɄ",
|
"phase": "d,",
|
||||||
"accessModes": [
|
"accessModes": [
|
||||||
"熔ķ´ʑ潞Ĵ3Q蠯0"
|
";蛡媈U"
|
||||||
],
|
],
|
||||||
"capacity": {
|
"capacity": {
|
||||||
"\\溮Ŀ傜NZ!š": "952"
|
"n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:": "847"
|
||||||
},
|
},
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:",
|
"type": "Ɍ蚊ơ鎊t潑",
|
||||||
"status": "ƿOqõƨj2愴ňù廻@p",
|
"status": "惃ȳTʬ戱P",
|
||||||
"lastProbeTime": "2252-06-28T22:34:24Z",
|
"lastProbeTime": "2237-12-11T16:15:26Z",
|
||||||
"lastTransitionTime": "1974-04-29T05:51:38Z",
|
"lastTransitionTime": "2926-09-20T14:30:14Z",
|
||||||
"reason": "454",
|
"reason": "454",
|
||||||
"message": "455"
|
"message": "455"
|
||||||
}
|
}
|
||||||
@ -1469,29 +1470,29 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"serviceName": "456",
|
"serviceName": "456",
|
||||||
"podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣",
|
"podManagementPolicy": "冒ƖƦɼ橈\"Ĩ媻ʪdž澆",
|
||||||
"updateStrategy": {
|
"updateStrategy": {
|
||||||
"type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ",
|
"type": "ƍ\\溮Ŀ傜NZ!šZ_",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"partition": 86666826
|
"partition": -1774432721
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"revisionHistoryLimit": 69142596
|
"revisionHistoryLimit": 51542630
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 8145135462833081718,
|
"observedGeneration": -2780555863272013359,
|
||||||
"replicas": -1589158932,
|
"replicas": -1607291056,
|
||||||
"readyReplicas": -1470626063,
|
"readyReplicas": 1591188280,
|
||||||
"currentReplicas": -2011137790,
|
"currentReplicas": 1562316216,
|
||||||
"updatedReplicas": -126896219,
|
"updatedReplicas": -292741450,
|
||||||
"currentRevision": "457",
|
"currentRevision": "457",
|
||||||
"updateRevision": "458",
|
"updateRevision": "458",
|
||||||
"collisionCount": 1664714908,
|
"collisionCount": 1615616035,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "靌瀞鈝Ń¥厀Ł8Ì",
|
"type": "Ď眊:YĹ爩í鬯濴VǕ癶L浼",
|
||||||
"status": "",
|
"status": "@p$ÖTő净湅oĒ弦}C嚰s9",
|
||||||
"lastTransitionTime": "2456-08-06T13:26:39Z",
|
"lastTransitionTime": "2668-07-22T09:34:16Z",
|
||||||
"reason": "459",
|
"reason": "459",
|
||||||
"message": "460"
|
"message": "460"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -30,9 +30,9 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣
|
podManagementPolicy: 冒ƖƦɼ橈"Ĩ媻ʪdž澆
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: 69142596
|
revisionHistoryLimit: 51542630
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -719,6 +719,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -941,84 +942,84 @@ spec:
|
|||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
partition: 86666826
|
partition: -1774432721
|
||||||
type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ
|
type: ƍ\溮Ŀ傜NZ!šZ_
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- metadata:
|
- metadata:
|
||||||
annotations:
|
annotations:
|
||||||
"433": "434"
|
"433": "434"
|
||||||
clusterName: "439"
|
clusterName: "439"
|
||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
deletionGracePeriodSeconds: -1824067601569574665
|
deletionGracePeriodSeconds: 6041236524714316269
|
||||||
finalizers:
|
finalizers:
|
||||||
- "438"
|
- "438"
|
||||||
generateName: "427"
|
generateName: "427"
|
||||||
generation: -8502907933203165744
|
generation: -4846338476256404591
|
||||||
labels:
|
labels:
|
||||||
"431": "432"
|
"431": "432"
|
||||||
managedFields:
|
managedFields:
|
||||||
- apiVersion: "441"
|
- apiVersion: "441"
|
||||||
fieldsType: "442"
|
fieldsType: "442"
|
||||||
manager: "440"
|
manager: "440"
|
||||||
operation: Bi攵&ý"ʀ废査Z綶Ā
|
operation: ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄
|
||||||
name: "426"
|
name: "426"
|
||||||
namespace: "428"
|
namespace: "428"
|
||||||
ownerReferences:
|
ownerReferences:
|
||||||
- apiVersion: "435"
|
- apiVersion: "435"
|
||||||
blockOwnerDeletion: false
|
blockOwnerDeletion: false
|
||||||
controller: true
|
controller: false
|
||||||
kind: "436"
|
kind: "436"
|
||||||
name: "437"
|
name: "437"
|
||||||
uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ
|
uid: ƄZ
|
||||||
resourceVersion: "6281861817195808867"
|
resourceVersion: "8774564298362452033"
|
||||||
selfLink: "429"
|
selfLink: "429"
|
||||||
uid: '`ȗ<8^翜T蘈'
|
uid: 瞯å檳ė>c緍
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū
|
- Ƣǟ½灶du汎mō6µɑ`ȗ<8^翜T
|
||||||
dataSource:
|
dataSource:
|
||||||
apiGroup: "451"
|
apiGroup: "451"
|
||||||
kind: "452"
|
kind: "452"
|
||||||
name: "453"
|
name: "453"
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
'O^:': "847"
|
蒸CƅR8ɷ|恫f籽: "139"
|
||||||
requests:
|
requests:
|
||||||
Ɍ蚊ơ鎊t潑: "199"
|
"": "380"
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv
|
- key: oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T
|
||||||
operator: Exists
|
operator: DoesNotExist
|
||||||
matchLabels:
|
matchLabels:
|
||||||
p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C: a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r
|
d-m._fN._k8__._ep21: 6_A_090ERG2nV.__p_Y-.2__a_dWU_VF
|
||||||
storageClassName: "450"
|
storageClassName: "450"
|
||||||
volumeMode: ȳT
|
volumeMode: ì淵歔
|
||||||
volumeName: "449"
|
volumeName: "449"
|
||||||
status:
|
status:
|
||||||
accessModes:
|
accessModes:
|
||||||
- 熔ķ´ʑ潞Ĵ3Q蠯0
|
- ;蛡媈U
|
||||||
capacity:
|
capacity:
|
||||||
\溮Ŀ傜NZ!š: "952"
|
'n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:': "847"
|
||||||
conditions:
|
conditions:
|
||||||
- lastProbeTime: "2252-06-28T22:34:24Z"
|
- lastProbeTime: "2237-12-11T16:15:26Z"
|
||||||
lastTransitionTime: "1974-04-29T05:51:38Z"
|
lastTransitionTime: "2926-09-20T14:30:14Z"
|
||||||
message: "455"
|
message: "455"
|
||||||
reason: "454"
|
reason: "454"
|
||||||
status: ƿOqõƨj2愴ňù廻@p
|
status: 惃ȳTʬ戱P
|
||||||
type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:'
|
type: Ɍ蚊ơ鎊t潑
|
||||||
phase: 戱PRɄ
|
phase: d,
|
||||||
status:
|
status:
|
||||||
collisionCount: 1664714908
|
collisionCount: 1615616035
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2456-08-06T13:26:39Z"
|
- lastTransitionTime: "2668-07-22T09:34:16Z"
|
||||||
message: "460"
|
message: "460"
|
||||||
reason: "459"
|
reason: "459"
|
||||||
status: ""
|
status: '@p$ÖTő净湅oĒ弦}C嚰s9'
|
||||||
type: 靌瀞鈝Ń¥厀Ł8Ì
|
type: Ď眊:YĹ爩í鬯濴VǕ癶L浼
|
||||||
currentReplicas: -2011137790
|
currentReplicas: 1562316216
|
||||||
currentRevision: "457"
|
currentRevision: "457"
|
||||||
observedGeneration: 8145135462833081718
|
observedGeneration: -2780555863272013359
|
||||||
readyReplicas: -1470626063
|
readyReplicas: 1591188280
|
||||||
replicas: -1589158932
|
replicas: -1607291056
|
||||||
updateRevision: "458"
|
updateRevision: "458"
|
||||||
updatedReplicas: -126896219
|
updatedReplicas: -292741450
|
||||||
|
@ -1378,32 +1378,34 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"updateStrategy": {
|
"updateStrategy": {
|
||||||
|
"type": "))e×鄞閆N钮Ǒ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2
|
"maxUnavailable": 2
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 997447044,
|
"minReadySeconds": -1521312599,
|
||||||
"revisionHistoryLimit": 989524452
|
"revisionHistoryLimit": 554881301
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"currentNumberScheduled": 1606858231,
|
"currentNumberScheduled": 687719923,
|
||||||
"numberMisscheduled": 1791868025,
|
"numberMisscheduled": -1777921334,
|
||||||
"desiredNumberScheduled": -793692762,
|
"desiredNumberScheduled": -2022058870,
|
||||||
"numberReady": -1152625369,
|
"numberReady": 283054026,
|
||||||
"observedGeneration": 3839991706170762113,
|
"observedGeneration": 9202522069332337259,
|
||||||
"updatedNumberScheduled": -1292943463,
|
"updatedNumberScheduled": -691360969,
|
||||||
"numberAvailable": -1734448297,
|
"numberAvailable": 1090884237,
|
||||||
"numberUnavailable": -1757575936,
|
"numberUnavailable": -1303432952,
|
||||||
"collisionCount": 129237050,
|
"collisionCount": -434531243,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö",
|
"type": "",
|
||||||
"status": "2ț",
|
"status": "B/ü橚2ț}¹旛坷硂",
|
||||||
"lastTransitionTime": "2733-02-09T15:36:31Z",
|
"lastTransitionTime": "2776-12-09T00:48:05Z",
|
||||||
"reason": "433",
|
"reason": "433",
|
||||||
"message": "434"
|
"message": "434"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -30,8 +30,8 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 997447044
|
minReadySeconds: -1521312599
|
||||||
revisionHistoryLimit: 989524452
|
revisionHistoryLimit: 554881301
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
|
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
|
||||||
@ -725,6 +725,7 @@ spec:
|
|||||||
runAsUserName: "369"
|
runAsUserName: "369"
|
||||||
serviceAccount: "361"
|
serviceAccount: "361"
|
||||||
serviceAccountName: "360"
|
serviceAccountName: "360"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "374"
|
subdomain: "374"
|
||||||
terminationGracePeriodSeconds: -3039830979334099524
|
terminationGracePeriodSeconds: -3039830979334099524
|
||||||
@ -947,19 +948,20 @@ spec:
|
|||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
|
type: ))e×鄞閆N钮Ǒ
|
||||||
status:
|
status:
|
||||||
collisionCount: 129237050
|
collisionCount: -434531243
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2733-02-09T15:36:31Z"
|
- lastTransitionTime: "2776-12-09T00:48:05Z"
|
||||||
message: "434"
|
message: "434"
|
||||||
reason: "433"
|
reason: "433"
|
||||||
status: 2ț
|
status: B/ü橚2ț}¹旛坷硂
|
||||||
type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö'
|
type: ""
|
||||||
currentNumberScheduled: 1606858231
|
currentNumberScheduled: 687719923
|
||||||
desiredNumberScheduled: -793692762
|
desiredNumberScheduled: -2022058870
|
||||||
numberAvailable: -1734448297
|
numberAvailable: 1090884237
|
||||||
numberMisscheduled: 1791868025
|
numberMisscheduled: -1777921334
|
||||||
numberReady: -1152625369
|
numberReady: 283054026
|
||||||
numberUnavailable: -1757575936
|
numberUnavailable: -1303432952
|
||||||
observedGeneration: 3839991706170762113
|
observedGeneration: 9202522069332337259
|
||||||
updatedNumberScheduled: -1292943463
|
updatedNumberScheduled: -691360969
|
||||||
|
@ -1371,37 +1371,38 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"strategy": {
|
"strategy": {
|
||||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2,
|
"maxUnavailable": 2,
|
||||||
"maxSurge": 3
|
"maxSurge": 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 212061711,
|
"minReadySeconds": 696654600,
|
||||||
"revisionHistoryLimit": -1092090658,
|
"revisionHistoryLimit": 407742062,
|
||||||
"progressDeadlineSeconds": -1707056814
|
"progressDeadlineSeconds": 902022378
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 2992108727478230062,
|
"observedGeneration": -3992059348490463840,
|
||||||
"replicas": 407742062,
|
"replicas": 904244563,
|
||||||
"updatedReplicas": 2115789304,
|
"updatedReplicas": -1245696932,
|
||||||
"readyReplicas": 902022378,
|
"readyReplicas": -1512660030,
|
||||||
"availableReplicas": 1660081568,
|
"availableReplicas": -655315199,
|
||||||
"unavailableReplicas": 904244563,
|
"unavailableReplicas": -918184784,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "洅啶",
|
"type": "oIǢ龞瞯å檳ė\u003ec緍k¢茤Ƣǟ½灶",
|
||||||
"status": "Ƅ抄3昞财Î嘝zʄ",
|
"status": "査Z綶ĀRġ磸",
|
||||||
"lastUpdateTime": "2524-02-08T04:27:05Z",
|
"lastUpdateTime": "2631-04-27T22:00:28Z",
|
||||||
"lastTransitionTime": "2146-08-16T07:05:27Z",
|
"lastTransitionTime": "2196-03-13T21:02:11Z",
|
||||||
"reason": "426",
|
"reason": "426",
|
||||||
"message": "427"
|
"message": "427"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"collisionCount": -1977467928
|
"collisionCount": -1914221188
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -30,10 +30,10 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 212061711
|
minReadySeconds: 696654600
|
||||||
progressDeadlineSeconds: -1707056814
|
progressDeadlineSeconds: 902022378
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: -1092090658
|
revisionHistoryLimit: 407742062
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -44,7 +44,7 @@ spec:
|
|||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxSurge: 3
|
maxSurge: 3
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
@ -724,6 +724,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -945,17 +946,17 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: 1660081568
|
availableReplicas: -655315199
|
||||||
collisionCount: -1977467928
|
collisionCount: -1914221188
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2146-08-16T07:05:27Z"
|
- lastTransitionTime: "2196-03-13T21:02:11Z"
|
||||||
lastUpdateTime: "2524-02-08T04:27:05Z"
|
lastUpdateTime: "2631-04-27T22:00:28Z"
|
||||||
message: "427"
|
message: "427"
|
||||||
reason: "426"
|
reason: "426"
|
||||||
status: Ƅ抄3昞财Î嘝zʄ
|
status: 査Z綶ĀRġ磸
|
||||||
type: 洅啶
|
type: oIǢ龞瞯å檳ė>c緍k¢茤Ƣǟ½灶
|
||||||
observedGeneration: 2992108727478230062
|
observedGeneration: -3992059348490463840
|
||||||
readyReplicas: 902022378
|
readyReplicas: -1512660030
|
||||||
replicas: 407742062
|
replicas: 904244563
|
||||||
unavailableReplicas: 904244563
|
unavailableReplicas: -918184784
|
||||||
updatedReplicas: 2115789304
|
updatedReplicas: -1245696932
|
||||||
|
@ -1378,21 +1378,22 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"replicas": -1165029050,
|
"replicas": 1893057016,
|
||||||
"fullyLabeledReplicas": 1893057016,
|
"fullyLabeledReplicas": -2099726885,
|
||||||
"readyReplicas": -2099726885,
|
"readyReplicas": -928976522,
|
||||||
"availableReplicas": -928976522,
|
"availableReplicas": -983106472,
|
||||||
"observedGeneration": 702392770146794584,
|
"observedGeneration": 4693783954739913971,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "暁×軓鼐嵱宯ÙQ阉(闒ƈƳ",
|
"type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ",
|
||||||
"status": "ű孖站畦f黹ʩ鹸ɷ",
|
"status": "站畦f黹ʩ鹸ɷLȋ",
|
||||||
"lastTransitionTime": "2233-10-15T01:58:37Z",
|
"lastTransitionTime": "2376-03-18T02:40:44Z",
|
||||||
"reason": "434",
|
"reason": "434",
|
||||||
"message": "435"
|
"message": "435"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -721,6 +721,7 @@ spec:
|
|||||||
runAsUserName: "370"
|
runAsUserName: "370"
|
||||||
serviceAccount: "362"
|
serviceAccount: "362"
|
||||||
serviceAccountName: "361"
|
serviceAccountName: "361"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "375"
|
subdomain: "375"
|
||||||
terminationGracePeriodSeconds: 2666412258966278206
|
terminationGracePeriodSeconds: 2666412258966278206
|
||||||
@ -941,14 +942,14 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: -928976522
|
availableReplicas: -983106472
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2233-10-15T01:58:37Z"
|
- lastTransitionTime: "2376-03-18T02:40:44Z"
|
||||||
message: "435"
|
message: "435"
|
||||||
reason: "434"
|
reason: "434"
|
||||||
status: ű孖站畦f黹ʩ鹸ɷ
|
status: 站畦f黹ʩ鹸ɷLȋ
|
||||||
type: 暁×軓鼐嵱宯ÙQ阉(闒ƈƳ
|
type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ
|
||||||
fullyLabeledReplicas: 1893057016
|
fullyLabeledReplicas: -2099726885
|
||||||
observedGeneration: 702392770146794584
|
observedGeneration: 4693783954739913971
|
||||||
readyReplicas: -2099726885
|
readyReplicas: -928976522
|
||||||
replicas: -1165029050
|
replicas: 1893057016
|
||||||
|
@ -1371,7 +1371,8 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"volumeClaimTemplates": [
|
"volumeClaimTemplates": [
|
||||||
@ -1381,11 +1382,11 @@
|
|||||||
"generateName": "427",
|
"generateName": "427",
|
||||||
"namespace": "428",
|
"namespace": "428",
|
||||||
"selfLink": "429",
|
"selfLink": "429",
|
||||||
"uid": "`ȗ\u003c8^翜T蘈",
|
"uid": "瞯å檳ė\u003ec緍",
|
||||||
"resourceVersion": "6281861817195808867",
|
"resourceVersion": "8774564298362452033",
|
||||||
"generation": -8502907933203165744,
|
"generation": -4846338476256404591,
|
||||||
"creationTimestamp": null,
|
"creationTimestamp": null,
|
||||||
"deletionGracePeriodSeconds": -1824067601569574665,
|
"deletionGracePeriodSeconds": 6041236524714316269,
|
||||||
"labels": {
|
"labels": {
|
||||||
"431": "432"
|
"431": "432"
|
||||||
},
|
},
|
||||||
@ -1397,8 +1398,8 @@
|
|||||||
"apiVersion": "435",
|
"apiVersion": "435",
|
||||||
"kind": "436",
|
"kind": "436",
|
||||||
"name": "437",
|
"name": "437",
|
||||||
"uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ",
|
"uid": "ƄZ",
|
||||||
"controller": true,
|
"controller": false,
|
||||||
"blockOwnerDeletion": false
|
"blockOwnerDeletion": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -1409,7 +1410,7 @@
|
|||||||
"managedFields": [
|
"managedFields": [
|
||||||
{
|
{
|
||||||
"manager": "440",
|
"manager": "440",
|
||||||
"operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā",
|
"operation": "ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄",
|
||||||
"apiVersion": "441",
|
"apiVersion": "441",
|
||||||
"fieldsType": "442"
|
"fieldsType": "442"
|
||||||
}
|
}
|
||||||
@ -1417,30 +1418,30 @@
|
|||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"accessModes": [
|
"accessModes": [
|
||||||
"銲tHǽ÷閂抰^窄CǙķȈĐI梞ū"
|
"Ƣǟ½灶du汎mō6µɑ`ȗ\u003c8^翜T"
|
||||||
],
|
],
|
||||||
"selector": {
|
"selector": {
|
||||||
"matchLabels": {
|
"matchLabels": {
|
||||||
"p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C": "a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r"
|
"d-m._fN._k8__._ep21": "6_A_090ERG2nV.__p_Y-.2__a_dWU_VF"
|
||||||
},
|
},
|
||||||
"matchExpressions": [
|
"matchExpressions": [
|
||||||
{
|
{
|
||||||
"key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv",
|
"key": "oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T",
|
||||||
"operator": "Exists"
|
"operator": "DoesNotExist"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
"limits": {
|
"limits": {
|
||||||
"O^:": "847"
|
"蒸CƅR8ɷ|恫f籽": "139"
|
||||||
},
|
},
|
||||||
"requests": {
|
"requests": {
|
||||||
"Ɍ蚊ơ鎊t潑": "199"
|
"": "380"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"volumeName": "449",
|
"volumeName": "449",
|
||||||
"storageClassName": "450",
|
"storageClassName": "450",
|
||||||
"volumeMode": "ȳT",
|
"volumeMode": "ì淵歔",
|
||||||
"dataSource": {
|
"dataSource": {
|
||||||
"apiGroup": "451",
|
"apiGroup": "451",
|
||||||
"kind": "452",
|
"kind": "452",
|
||||||
@ -1448,19 +1449,19 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"phase": "戱PRɄ",
|
"phase": "d,",
|
||||||
"accessModes": [
|
"accessModes": [
|
||||||
"熔ķ´ʑ潞Ĵ3Q蠯0"
|
";蛡媈U"
|
||||||
],
|
],
|
||||||
"capacity": {
|
"capacity": {
|
||||||
"\\溮Ŀ傜NZ!š": "952"
|
"n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:": "847"
|
||||||
},
|
},
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:",
|
"type": "Ɍ蚊ơ鎊t潑",
|
||||||
"status": "ƿOqõƨj2愴ňù廻@p",
|
"status": "惃ȳTʬ戱P",
|
||||||
"lastProbeTime": "2252-06-28T22:34:24Z",
|
"lastProbeTime": "2237-12-11T16:15:26Z",
|
||||||
"lastTransitionTime": "1974-04-29T05:51:38Z",
|
"lastTransitionTime": "2926-09-20T14:30:14Z",
|
||||||
"reason": "454",
|
"reason": "454",
|
||||||
"message": "455"
|
"message": "455"
|
||||||
}
|
}
|
||||||
@ -1469,29 +1470,29 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"serviceName": "456",
|
"serviceName": "456",
|
||||||
"podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣",
|
"podManagementPolicy": "冒ƖƦɼ橈\"Ĩ媻ʪdž澆",
|
||||||
"updateStrategy": {
|
"updateStrategy": {
|
||||||
"type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ",
|
"type": "ƍ\\溮Ŀ傜NZ!šZ_",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"partition": 86666826
|
"partition": -1774432721
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"revisionHistoryLimit": 69142596
|
"revisionHistoryLimit": 51542630
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 3474169154658456972,
|
"observedGeneration": 4970381117743528748,
|
||||||
"replicas": 1449104338,
|
"replicas": 1736529625,
|
||||||
"readyReplicas": 2037461401,
|
"readyReplicas": 1972352681,
|
||||||
"currentReplicas": -1847673756,
|
"currentReplicas": -727089824,
|
||||||
"updatedReplicas": 154782591,
|
"updatedReplicas": -2068243724,
|
||||||
"currentRevision": "457",
|
"currentRevision": "457",
|
||||||
"updateRevision": "458",
|
"updateRevision": "458",
|
||||||
"collisionCount": 341287797,
|
"collisionCount": -1807803289,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "ÆŁĪŀc=Ƨz鈡煰敹xŪO",
|
"type": "!轅諑",
|
||||||
"status": "ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+",
|
"status": "YĹ爩",
|
||||||
"lastTransitionTime": "2493-11-15T11:08:04Z",
|
"lastTransitionTime": "2544-05-05T21:53:33Z",
|
||||||
"reason": "459",
|
"reason": "459",
|
||||||
"message": "460"
|
"message": "460"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -30,9 +30,9 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣
|
podManagementPolicy: 冒ƖƦɼ橈"Ĩ媻ʪdž澆
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: 69142596
|
revisionHistoryLimit: 51542630
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -719,6 +719,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -941,84 +942,84 @@ spec:
|
|||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
partition: 86666826
|
partition: -1774432721
|
||||||
type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ
|
type: ƍ\溮Ŀ傜NZ!šZ_
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- metadata:
|
- metadata:
|
||||||
annotations:
|
annotations:
|
||||||
"433": "434"
|
"433": "434"
|
||||||
clusterName: "439"
|
clusterName: "439"
|
||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
deletionGracePeriodSeconds: -1824067601569574665
|
deletionGracePeriodSeconds: 6041236524714316269
|
||||||
finalizers:
|
finalizers:
|
||||||
- "438"
|
- "438"
|
||||||
generateName: "427"
|
generateName: "427"
|
||||||
generation: -8502907933203165744
|
generation: -4846338476256404591
|
||||||
labels:
|
labels:
|
||||||
"431": "432"
|
"431": "432"
|
||||||
managedFields:
|
managedFields:
|
||||||
- apiVersion: "441"
|
- apiVersion: "441"
|
||||||
fieldsType: "442"
|
fieldsType: "442"
|
||||||
manager: "440"
|
manager: "440"
|
||||||
operation: Bi攵&ý"ʀ废査Z綶Ā
|
operation: ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄
|
||||||
name: "426"
|
name: "426"
|
||||||
namespace: "428"
|
namespace: "428"
|
||||||
ownerReferences:
|
ownerReferences:
|
||||||
- apiVersion: "435"
|
- apiVersion: "435"
|
||||||
blockOwnerDeletion: false
|
blockOwnerDeletion: false
|
||||||
controller: true
|
controller: false
|
||||||
kind: "436"
|
kind: "436"
|
||||||
name: "437"
|
name: "437"
|
||||||
uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ
|
uid: ƄZ
|
||||||
resourceVersion: "6281861817195808867"
|
resourceVersion: "8774564298362452033"
|
||||||
selfLink: "429"
|
selfLink: "429"
|
||||||
uid: '`ȗ<8^翜T蘈'
|
uid: 瞯å檳ė>c緍
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū
|
- Ƣǟ½灶du汎mō6µɑ`ȗ<8^翜T
|
||||||
dataSource:
|
dataSource:
|
||||||
apiGroup: "451"
|
apiGroup: "451"
|
||||||
kind: "452"
|
kind: "452"
|
||||||
name: "453"
|
name: "453"
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
'O^:': "847"
|
蒸CƅR8ɷ|恫f籽: "139"
|
||||||
requests:
|
requests:
|
||||||
Ɍ蚊ơ鎊t潑: "199"
|
"": "380"
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv
|
- key: oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T
|
||||||
operator: Exists
|
operator: DoesNotExist
|
||||||
matchLabels:
|
matchLabels:
|
||||||
p2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C: a_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-r
|
d-m._fN._k8__._ep21: 6_A_090ERG2nV.__p_Y-.2__a_dWU_VF
|
||||||
storageClassName: "450"
|
storageClassName: "450"
|
||||||
volumeMode: ȳT
|
volumeMode: ì淵歔
|
||||||
volumeName: "449"
|
volumeName: "449"
|
||||||
status:
|
status:
|
||||||
accessModes:
|
accessModes:
|
||||||
- 熔ķ´ʑ潞Ĵ3Q蠯0
|
- ;蛡媈U
|
||||||
capacity:
|
capacity:
|
||||||
\溮Ŀ傜NZ!š: "952"
|
'n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:': "847"
|
||||||
conditions:
|
conditions:
|
||||||
- lastProbeTime: "2252-06-28T22:34:24Z"
|
- lastProbeTime: "2237-12-11T16:15:26Z"
|
||||||
lastTransitionTime: "1974-04-29T05:51:38Z"
|
lastTransitionTime: "2926-09-20T14:30:14Z"
|
||||||
message: "455"
|
message: "455"
|
||||||
reason: "454"
|
reason: "454"
|
||||||
status: ƿOqõƨj2愴ňù廻@p
|
status: 惃ȳTʬ戱P
|
||||||
type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:'
|
type: Ɍ蚊ơ鎊t潑
|
||||||
phase: 戱PRɄ
|
phase: d,
|
||||||
status:
|
status:
|
||||||
collisionCount: 341287797
|
collisionCount: -1807803289
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2493-11-15T11:08:04Z"
|
- lastTransitionTime: "2544-05-05T21:53:33Z"
|
||||||
message: "460"
|
message: "460"
|
||||||
reason: "459"
|
reason: "459"
|
||||||
status: ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+
|
status: YĹ爩
|
||||||
type: ÆŁĪŀc=Ƨz鈡煰敹xŪO
|
type: '!轅諑'
|
||||||
currentReplicas: -1847673756
|
currentReplicas: -727089824
|
||||||
currentRevision: "457"
|
currentRevision: "457"
|
||||||
observedGeneration: 3474169154658456972
|
observedGeneration: 4970381117743528748
|
||||||
readyReplicas: 2037461401
|
readyReplicas: 1972352681
|
||||||
replicas: 1449104338
|
replicas: 1736529625
|
||||||
updateRevision: "458"
|
updateRevision: "458"
|
||||||
updatedReplicas: 154782591
|
updatedReplicas: -2068243724
|
||||||
|
@ -1375,24 +1375,25 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ttlSecondsAfterFinished": -596285123
|
"ttlSecondsAfterFinished": -95236670
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "續-ÚŜĂwǐ擨^幸$Ż料",
|
"type": "-ÚŜĂwǐ擨^幸$Ż料ȭz",
|
||||||
"status": "色苆试揯遐e",
|
"status": "试揯遐e4'ď曕椐敛n",
|
||||||
"lastProbeTime": "2947-08-17T19:40:02Z",
|
"lastProbeTime": "2740-10-14T09:28:06Z",
|
||||||
"lastTransitionTime": "2374-06-16T11:34:18Z",
|
"lastTransitionTime": "2133-04-18T01:37:37Z",
|
||||||
"reason": "430",
|
"reason": "430",
|
||||||
"message": "431"
|
"message": "431"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"active": 1921346963,
|
"active": -68737405,
|
||||||
"succeeded": 135144999,
|
"succeeded": -150478704,
|
||||||
"failed": 1357487443
|
"failed": 315828133
|
||||||
}
|
}
|
||||||
}
|
}
|
BIN
staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb
vendored
BIN
staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb
vendored
Binary file not shown.
@ -722,6 +722,7 @@ spec:
|
|||||||
runAsUserName: "366"
|
runAsUserName: "366"
|
||||||
serviceAccount: "358"
|
serviceAccount: "358"
|
||||||
serviceAccountName: "357"
|
serviceAccountName: "357"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "371"
|
subdomain: "371"
|
||||||
terminationGracePeriodSeconds: -4333562938396485230
|
terminationGracePeriodSeconds: -4333562938396485230
|
||||||
@ -939,15 +940,15 @@ spec:
|
|||||||
storagePolicyID: "104"
|
storagePolicyID: "104"
|
||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
ttlSecondsAfterFinished: -596285123
|
ttlSecondsAfterFinished: -95236670
|
||||||
status:
|
status:
|
||||||
active: 1921346963
|
active: -68737405
|
||||||
conditions:
|
conditions:
|
||||||
- lastProbeTime: "2947-08-17T19:40:02Z"
|
- lastProbeTime: "2740-10-14T09:28:06Z"
|
||||||
lastTransitionTime: "2374-06-16T11:34:18Z"
|
lastTransitionTime: "2133-04-18T01:37:37Z"
|
||||||
message: "431"
|
message: "431"
|
||||||
reason: "430"
|
reason: "430"
|
||||||
status: 色苆试揯遐e
|
status: 试揯遐e4'ď曕椐敛n
|
||||||
type: 續-ÚŜĂwǐ擨^幸$Ż料
|
type: -ÚŜĂwǐ擨^幸$Ż料ȭz
|
||||||
failed: 1357487443
|
failed: 315828133
|
||||||
succeeded: 135144999
|
succeeded: -150478704
|
||||||
|
@ -1425,14 +1425,15 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ttlSecondsAfterFinished": -1754419098
|
"ttlSecondsAfterFinished": 1530007970
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"successfulJobsHistoryLimit": -2099726885,
|
"successfulJobsHistoryLimit": -928976522,
|
||||||
"failedJobsHistoryLimit": 163538560
|
"failedJobsHistoryLimit": 1092856739
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"active": [
|
"active": [
|
||||||
@ -1440,7 +1441,7 @@
|
|||||||
"kind": "447",
|
"kind": "447",
|
||||||
"namespace": "448",
|
"namespace": "448",
|
||||||
"name": "449",
|
"name": "449",
|
||||||
"uid": "ɦ?鮻ȧH僠 \u0026G",
|
"uid": "?鮻ȧH僠 \u0026G凒罹ń賎Ȍű孖站",
|
||||||
"apiVersion": "450",
|
"apiVersion": "450",
|
||||||
"resourceVersion": "451",
|
"resourceVersion": "451",
|
||||||
"fieldPath": "452"
|
"fieldPath": "452"
|
||||||
|
Binary file not shown.
@ -31,7 +31,7 @@ metadata:
|
|||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
|
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
|
||||||
failedJobsHistoryLimit: 163538560
|
failedJobsHistoryLimit: 1092856739
|
||||||
jobTemplate:
|
jobTemplate:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
@ -757,6 +757,7 @@ spec:
|
|||||||
runAsUserName: "383"
|
runAsUserName: "383"
|
||||||
serviceAccount: "375"
|
serviceAccount: "375"
|
||||||
serviceAccountName: "374"
|
serviceAccountName: "374"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "388"
|
subdomain: "388"
|
||||||
terminationGracePeriodSeconds: 2666412258966278206
|
terminationGracePeriodSeconds: 2666412258966278206
|
||||||
@ -976,10 +977,10 @@ spec:
|
|||||||
storagePolicyID: "122"
|
storagePolicyID: "122"
|
||||||
storagePolicyName: "121"
|
storagePolicyName: "121"
|
||||||
volumePath: "119"
|
volumePath: "119"
|
||||||
ttlSecondsAfterFinished: -1754419098
|
ttlSecondsAfterFinished: 1530007970
|
||||||
schedule: "19"
|
schedule: "19"
|
||||||
startingDeadlineSeconds: -2555947251840004808
|
startingDeadlineSeconds: -2555947251840004808
|
||||||
successfulJobsHistoryLimit: -2099726885
|
successfulJobsHistoryLimit: -928976522
|
||||||
suspend: true
|
suspend: true
|
||||||
status:
|
status:
|
||||||
active:
|
active:
|
||||||
@ -989,4 +990,4 @@ status:
|
|||||||
name: "449"
|
name: "449"
|
||||||
namespace: "448"
|
namespace: "448"
|
||||||
resourceVersion: "451"
|
resourceVersion: "451"
|
||||||
uid: ɦ?鮻ȧH僠 &G
|
uid: ?鮻ȧH僠 &G凒罹ń賎Ȍű孖站
|
||||||
|
@ -1423,10 +1423,11 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ttlSecondsAfterFinished": -1746367307
|
"ttlSecondsAfterFinished": -82488142
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -757,6 +757,7 @@ template:
|
|||||||
runAsUserName: "379"
|
runAsUserName: "379"
|
||||||
serviceAccount: "371"
|
serviceAccount: "371"
|
||||||
serviceAccountName: "370"
|
serviceAccountName: "370"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "384"
|
subdomain: "384"
|
||||||
terminationGracePeriodSeconds: -3123571459188372202
|
terminationGracePeriodSeconds: -3123571459188372202
|
||||||
@ -977,4 +978,4 @@ template:
|
|||||||
storagePolicyID: "121"
|
storagePolicyID: "121"
|
||||||
storagePolicyName: "120"
|
storagePolicyName: "120"
|
||||||
volumePath: "118"
|
volumePath: "118"
|
||||||
ttlSecondsAfterFinished: -1746367307
|
ttlSecondsAfterFinished: -82488142
|
||||||
|
@ -1425,14 +1425,15 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ttlSecondsAfterFinished": -1754419098
|
"ttlSecondsAfterFinished": 1530007970
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"successfulJobsHistoryLimit": -2099726885,
|
"successfulJobsHistoryLimit": -928976522,
|
||||||
"failedJobsHistoryLimit": 163538560
|
"failedJobsHistoryLimit": 1092856739
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"active": [
|
"active": [
|
||||||
@ -1440,7 +1441,7 @@
|
|||||||
"kind": "447",
|
"kind": "447",
|
||||||
"namespace": "448",
|
"namespace": "448",
|
||||||
"name": "449",
|
"name": "449",
|
||||||
"uid": "ɦ?鮻ȧH僠 \u0026G",
|
"uid": "?鮻ȧH僠 \u0026G凒罹ń賎Ȍű孖站",
|
||||||
"apiVersion": "450",
|
"apiVersion": "450",
|
||||||
"resourceVersion": "451",
|
"resourceVersion": "451",
|
||||||
"fieldPath": "452"
|
"fieldPath": "452"
|
||||||
|
Binary file not shown.
@ -31,7 +31,7 @@ metadata:
|
|||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
|
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
|
||||||
failedJobsHistoryLimit: 163538560
|
failedJobsHistoryLimit: 1092856739
|
||||||
jobTemplate:
|
jobTemplate:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
@ -757,6 +757,7 @@ spec:
|
|||||||
runAsUserName: "383"
|
runAsUserName: "383"
|
||||||
serviceAccount: "375"
|
serviceAccount: "375"
|
||||||
serviceAccountName: "374"
|
serviceAccountName: "374"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "388"
|
subdomain: "388"
|
||||||
terminationGracePeriodSeconds: 2666412258966278206
|
terminationGracePeriodSeconds: 2666412258966278206
|
||||||
@ -976,10 +977,10 @@ spec:
|
|||||||
storagePolicyID: "122"
|
storagePolicyID: "122"
|
||||||
storagePolicyName: "121"
|
storagePolicyName: "121"
|
||||||
volumePath: "119"
|
volumePath: "119"
|
||||||
ttlSecondsAfterFinished: -1754419098
|
ttlSecondsAfterFinished: 1530007970
|
||||||
schedule: "19"
|
schedule: "19"
|
||||||
startingDeadlineSeconds: -2555947251840004808
|
startingDeadlineSeconds: -2555947251840004808
|
||||||
successfulJobsHistoryLimit: -2099726885
|
successfulJobsHistoryLimit: -928976522
|
||||||
suspend: true
|
suspend: true
|
||||||
status:
|
status:
|
||||||
active:
|
active:
|
||||||
@ -989,4 +990,4 @@ status:
|
|||||||
name: "449"
|
name: "449"
|
||||||
namespace: "448"
|
namespace: "448"
|
||||||
resourceVersion: "451"
|
resourceVersion: "451"
|
||||||
uid: ɦ?鮻ȧH僠 &G
|
uid: ?鮻ȧH僠 &G凒罹ń賎Ȍű孖站
|
||||||
|
@ -1423,10 +1423,11 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ttlSecondsAfterFinished": -1746367307
|
"ttlSecondsAfterFinished": -82488142
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -757,6 +757,7 @@ template:
|
|||||||
runAsUserName: "379"
|
runAsUserName: "379"
|
||||||
serviceAccount: "371"
|
serviceAccount: "371"
|
||||||
serviceAccountName: "370"
|
serviceAccountName: "370"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "384"
|
subdomain: "384"
|
||||||
terminationGracePeriodSeconds: -3123571459188372202
|
terminationGracePeriodSeconds: -3123571459188372202
|
||||||
@ -977,4 +978,4 @@ template:
|
|||||||
storagePolicyID: "121"
|
storagePolicyID: "121"
|
||||||
storagePolicyName: "120"
|
storagePolicyName: "120"
|
||||||
volumePath: "118"
|
volumePath: "118"
|
||||||
ttlSecondsAfterFinished: -1746367307
|
ttlSecondsAfterFinished: -82488142
|
||||||
|
@ -1316,16 +1316,17 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"phase": "ș",
|
"phase": "l",
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "ļė[BN柌ë娒汙查o*Ĵ麻齔試",
|
"type": "ė[BN柌ë娒汙查o",
|
||||||
"status": "昒",
|
"status": "pɉ驻(+",
|
||||||
"lastProbeTime": "2756-02-27T11:08:58Z",
|
"lastProbeTime": "2645-05-22T09:25:47Z",
|
||||||
"lastTransitionTime": "2296-12-01T04:10:44Z",
|
"lastTransitionTime": "2090-10-18T11:24:27Z",
|
||||||
"reason": "408",
|
"reason": "408",
|
||||||
"message": "409"
|
"message": "409"
|
||||||
}
|
}
|
||||||
@ -1349,15 +1350,15 @@
|
|||||||
"message": "418"
|
"message": "418"
|
||||||
},
|
},
|
||||||
"running": {
|
"running": {
|
||||||
"startedAt": "1972-12-08T08:30:11Z"
|
"startedAt": "2048-05-20T12:15:51Z"
|
||||||
},
|
},
|
||||||
"terminated": {
|
"terminated": {
|
||||||
"exitCode": -1817503524,
|
"exitCode": 115522160,
|
||||||
"signal": 1558801645,
|
"signal": -1817503524,
|
||||||
"reason": "419",
|
"reason": "419",
|
||||||
"message": "420",
|
"message": "420",
|
||||||
"startedAt": "2746-03-08T01:39:40Z",
|
"startedAt": "2219-02-28T09:09:45Z",
|
||||||
"finishedAt": "2341-12-07T04:14:17Z",
|
"finishedAt": "2741-03-13T06:24:49Z",
|
||||||
"containerID": "421"
|
"containerID": "421"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1367,20 +1368,20 @@
|
|||||||
"message": "423"
|
"message": "423"
|
||||||
},
|
},
|
||||||
"running": {
|
"running": {
|
||||||
"startedAt": "2329-01-28T22:43:42Z"
|
"startedAt": "2162-06-26T19:07:06Z"
|
||||||
},
|
},
|
||||||
"terminated": {
|
"terminated": {
|
||||||
"exitCode": -545370104,
|
"exitCode": -710202728,
|
||||||
"signal": 1235883803,
|
"signal": -545370104,
|
||||||
"reason": "424",
|
"reason": "424",
|
||||||
"message": "425",
|
"message": "425",
|
||||||
"startedAt": "2419-03-20T05:43:22Z",
|
"startedAt": "2714-05-29T12:47:22Z",
|
||||||
"finishedAt": "2821-07-19T11:49:26Z",
|
"finishedAt": "2507-11-24T14:34:53Z",
|
||||||
"containerID": "426"
|
"containerID": "426"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ready": true,
|
"ready": false,
|
||||||
"restartCount": -810338968,
|
"restartCount": -802664960,
|
||||||
"image": "427",
|
"image": "427",
|
||||||
"imageID": "428",
|
"imageID": "428",
|
||||||
"containerID": "429",
|
"containerID": "429",
|
||||||
@ -1396,15 +1397,15 @@
|
|||||||
"message": "432"
|
"message": "432"
|
||||||
},
|
},
|
||||||
"running": {
|
"running": {
|
||||||
"startedAt": "2403-04-11T00:06:43Z"
|
"startedAt": "2947-07-29T10:08:50Z"
|
||||||
},
|
},
|
||||||
"terminated": {
|
"terminated": {
|
||||||
"exitCode": -173761204,
|
"exitCode": 1783825641,
|
||||||
"signal": 332998836,
|
"signal": -173761204,
|
||||||
"reason": "433",
|
"reason": "433",
|
||||||
"message": "434",
|
"message": "434",
|
||||||
"startedAt": "2196-05-31T08:51:58Z",
|
"startedAt": "2522-07-19T12:32:16Z",
|
||||||
"finishedAt": "2580-08-27T04:54:10Z",
|
"finishedAt": "2270-12-17T08:26:56Z",
|
||||||
"containerID": "435"
|
"containerID": "435"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1414,27 +1415,26 @@
|
|||||||
"message": "437"
|
"message": "437"
|
||||||
},
|
},
|
||||||
"running": {
|
"running": {
|
||||||
"startedAt": "2878-09-11T10:26:17Z"
|
"startedAt": "2553-08-13T19:38:34Z"
|
||||||
},
|
},
|
||||||
"terminated": {
|
"terminated": {
|
||||||
"exitCode": -1569123121,
|
"exitCode": 1702640464,
|
||||||
"signal": 199195373,
|
"signal": -1569123121,
|
||||||
"reason": "438",
|
"reason": "438",
|
||||||
"message": "439",
|
"message": "439",
|
||||||
"startedAt": "2873-01-20T06:54:43Z",
|
"startedAt": "2208-06-28T06:16:27Z",
|
||||||
"finishedAt": "2454-07-07T22:08:36Z",
|
"finishedAt": "2837-10-14T23:23:27Z",
|
||||||
"containerID": "440"
|
"containerID": "440"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ready": false,
|
"ready": true,
|
||||||
"restartCount": 568619460,
|
"restartCount": 718205480,
|
||||||
"image": "441",
|
"image": "441",
|
||||||
"imageID": "442",
|
"imageID": "442",
|
||||||
"containerID": "443",
|
"containerID": "443",
|
||||||
"started": false
|
"started": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"qosClass": "刣ȱǍ;ġ縊CkǚŨ",
|
|
||||||
"ephemeralContainerStatuses": [
|
"ephemeralContainerStatuses": [
|
||||||
{
|
{
|
||||||
"name": "444",
|
"name": "444",
|
||||||
@ -1444,15 +1444,15 @@
|
|||||||
"message": "446"
|
"message": "446"
|
||||||
},
|
},
|
||||||
"running": {
|
"running": {
|
||||||
"startedAt": "2807-07-11T05:23:59Z"
|
"startedAt": "2046-11-30T08:06:33Z"
|
||||||
},
|
},
|
||||||
"terminated": {
|
"terminated": {
|
||||||
"exitCode": -496491540,
|
"exitCode": -1784164316,
|
||||||
"signal": -1067633812,
|
"signal": -732390892,
|
||||||
"reason": "447",
|
"reason": "447",
|
||||||
"message": "448",
|
"message": "448",
|
||||||
"startedAt": "2536-08-25T03:52:32Z",
|
"startedAt": "2406-01-16T02:14:15Z",
|
||||||
"finishedAt": "2142-06-11T22:09:32Z",
|
"finishedAt": "2231-01-26T17:02:10Z",
|
||||||
"containerID": "449"
|
"containerID": "449"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1462,20 +1462,20 @@
|
|||||||
"message": "451"
|
"message": "451"
|
||||||
},
|
},
|
||||||
"running": {
|
"running": {
|
||||||
"startedAt": "2890-09-01T10:48:08Z"
|
"startedAt": "2911-12-04T12:23:46Z"
|
||||||
},
|
},
|
||||||
"terminated": {
|
"terminated": {
|
||||||
"exitCode": 233999136,
|
"exitCode": 1555151820,
|
||||||
"signal": 1701016188,
|
"signal": -1757808404,
|
||||||
"reason": "452",
|
"reason": "452",
|
||||||
"message": "453",
|
"message": "453",
|
||||||
"startedAt": "2420-06-19T09:33:57Z",
|
"startedAt": "2599-12-06T02:53:25Z",
|
||||||
"finishedAt": "2387-07-09T16:21:33Z",
|
"finishedAt": "2412-02-08T17:08:41Z",
|
||||||
"containerID": "454"
|
"containerID": "454"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ready": false,
|
"ready": true,
|
||||||
"restartCount": 1730285145,
|
"restartCount": 1615460891,
|
||||||
"image": "455",
|
"image": "455",
|
||||||
"imageID": "456",
|
"imageID": "456",
|
||||||
"containerID": "457",
|
"containerID": "457",
|
||||||
|
BIN
staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb
vendored
BIN
staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb
vendored
Binary file not shown.
@ -680,6 +680,7 @@ spec:
|
|||||||
runAsUserName: "344"
|
runAsUserName: "344"
|
||||||
serviceAccount: "336"
|
serviceAccount: "336"
|
||||||
serviceAccountName: "335"
|
serviceAccountName: "335"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "349"
|
subdomain: "349"
|
||||||
terminationGracePeriodSeconds: -1689173322096612726
|
terminationGracePeriodSeconds: -1689173322096612726
|
||||||
@ -898,45 +899,45 @@ spec:
|
|||||||
volumePath: "78"
|
volumePath: "78"
|
||||||
status:
|
status:
|
||||||
conditions:
|
conditions:
|
||||||
- lastProbeTime: "2756-02-27T11:08:58Z"
|
- lastProbeTime: "2645-05-22T09:25:47Z"
|
||||||
lastTransitionTime: "2296-12-01T04:10:44Z"
|
lastTransitionTime: "2090-10-18T11:24:27Z"
|
||||||
message: "409"
|
message: "409"
|
||||||
reason: "408"
|
reason: "408"
|
||||||
status: 昒
|
status: pɉ驻(+
|
||||||
type: ļė[BN柌ë娒汙查o*Ĵ麻齔試
|
type: ė[BN柌ë娒汙查o
|
||||||
containerStatuses:
|
containerStatuses:
|
||||||
- containerID: "443"
|
- containerID: "443"
|
||||||
image: "441"
|
image: "441"
|
||||||
imageID: "442"
|
imageID: "442"
|
||||||
lastState:
|
lastState:
|
||||||
running:
|
running:
|
||||||
startedAt: "2878-09-11T10:26:17Z"
|
startedAt: "2553-08-13T19:38:34Z"
|
||||||
terminated:
|
terminated:
|
||||||
containerID: "440"
|
containerID: "440"
|
||||||
exitCode: -1569123121
|
exitCode: 1702640464
|
||||||
finishedAt: "2454-07-07T22:08:36Z"
|
finishedAt: "2837-10-14T23:23:27Z"
|
||||||
message: "439"
|
message: "439"
|
||||||
reason: "438"
|
reason: "438"
|
||||||
signal: 199195373
|
signal: -1569123121
|
||||||
startedAt: "2873-01-20T06:54:43Z"
|
startedAt: "2208-06-28T06:16:27Z"
|
||||||
waiting:
|
waiting:
|
||||||
message: "437"
|
message: "437"
|
||||||
reason: "436"
|
reason: "436"
|
||||||
name: "430"
|
name: "430"
|
||||||
ready: false
|
ready: true
|
||||||
restartCount: 568619460
|
restartCount: 718205480
|
||||||
started: false
|
started: true
|
||||||
state:
|
state:
|
||||||
running:
|
running:
|
||||||
startedAt: "2403-04-11T00:06:43Z"
|
startedAt: "2947-07-29T10:08:50Z"
|
||||||
terminated:
|
terminated:
|
||||||
containerID: "435"
|
containerID: "435"
|
||||||
exitCode: -173761204
|
exitCode: 1783825641
|
||||||
finishedAt: "2580-08-27T04:54:10Z"
|
finishedAt: "2270-12-17T08:26:56Z"
|
||||||
message: "434"
|
message: "434"
|
||||||
reason: "433"
|
reason: "433"
|
||||||
signal: 332998836
|
signal: -173761204
|
||||||
startedAt: "2196-05-31T08:51:58Z"
|
startedAt: "2522-07-19T12:32:16Z"
|
||||||
waiting:
|
waiting:
|
||||||
message: "432"
|
message: "432"
|
||||||
reason: "431"
|
reason: "431"
|
||||||
@ -946,33 +947,33 @@ status:
|
|||||||
imageID: "456"
|
imageID: "456"
|
||||||
lastState:
|
lastState:
|
||||||
running:
|
running:
|
||||||
startedAt: "2890-09-01T10:48:08Z"
|
startedAt: "2911-12-04T12:23:46Z"
|
||||||
terminated:
|
terminated:
|
||||||
containerID: "454"
|
containerID: "454"
|
||||||
exitCode: 233999136
|
exitCode: 1555151820
|
||||||
finishedAt: "2387-07-09T16:21:33Z"
|
finishedAt: "2412-02-08T17:08:41Z"
|
||||||
message: "453"
|
message: "453"
|
||||||
reason: "452"
|
reason: "452"
|
||||||
signal: 1701016188
|
signal: -1757808404
|
||||||
startedAt: "2420-06-19T09:33:57Z"
|
startedAt: "2599-12-06T02:53:25Z"
|
||||||
waiting:
|
waiting:
|
||||||
message: "451"
|
message: "451"
|
||||||
reason: "450"
|
reason: "450"
|
||||||
name: "444"
|
name: "444"
|
||||||
ready: false
|
ready: true
|
||||||
restartCount: 1730285145
|
restartCount: 1615460891
|
||||||
started: true
|
started: true
|
||||||
state:
|
state:
|
||||||
running:
|
running:
|
||||||
startedAt: "2807-07-11T05:23:59Z"
|
startedAt: "2046-11-30T08:06:33Z"
|
||||||
terminated:
|
terminated:
|
||||||
containerID: "449"
|
containerID: "449"
|
||||||
exitCode: -496491540
|
exitCode: -1784164316
|
||||||
finishedAt: "2142-06-11T22:09:32Z"
|
finishedAt: "2231-01-26T17:02:10Z"
|
||||||
message: "448"
|
message: "448"
|
||||||
reason: "447"
|
reason: "447"
|
||||||
signal: -1067633812
|
signal: -732390892
|
||||||
startedAt: "2536-08-25T03:52:32Z"
|
startedAt: "2406-01-16T02:14:15Z"
|
||||||
waiting:
|
waiting:
|
||||||
message: "446"
|
message: "446"
|
||||||
reason: "445"
|
reason: "445"
|
||||||
@ -983,41 +984,40 @@ status:
|
|||||||
imageID: "428"
|
imageID: "428"
|
||||||
lastState:
|
lastState:
|
||||||
running:
|
running:
|
||||||
startedAt: "2329-01-28T22:43:42Z"
|
startedAt: "2162-06-26T19:07:06Z"
|
||||||
terminated:
|
terminated:
|
||||||
containerID: "426"
|
containerID: "426"
|
||||||
exitCode: -545370104
|
exitCode: -710202728
|
||||||
finishedAt: "2821-07-19T11:49:26Z"
|
finishedAt: "2507-11-24T14:34:53Z"
|
||||||
message: "425"
|
message: "425"
|
||||||
reason: "424"
|
reason: "424"
|
||||||
signal: 1235883803
|
signal: -545370104
|
||||||
startedAt: "2419-03-20T05:43:22Z"
|
startedAt: "2714-05-29T12:47:22Z"
|
||||||
waiting:
|
waiting:
|
||||||
message: "423"
|
message: "423"
|
||||||
reason: "422"
|
reason: "422"
|
||||||
name: "416"
|
name: "416"
|
||||||
ready: true
|
ready: false
|
||||||
restartCount: -810338968
|
restartCount: -802664960
|
||||||
started: false
|
started: false
|
||||||
state:
|
state:
|
||||||
running:
|
running:
|
||||||
startedAt: "1972-12-08T08:30:11Z"
|
startedAt: "2048-05-20T12:15:51Z"
|
||||||
terminated:
|
terminated:
|
||||||
containerID: "421"
|
containerID: "421"
|
||||||
exitCode: -1817503524
|
exitCode: 115522160
|
||||||
finishedAt: "2341-12-07T04:14:17Z"
|
finishedAt: "2741-03-13T06:24:49Z"
|
||||||
message: "420"
|
message: "420"
|
||||||
reason: "419"
|
reason: "419"
|
||||||
signal: 1558801645
|
signal: -1817503524
|
||||||
startedAt: "2746-03-08T01:39:40Z"
|
startedAt: "2219-02-28T09:09:45Z"
|
||||||
waiting:
|
waiting:
|
||||||
message: "418"
|
message: "418"
|
||||||
reason: "417"
|
reason: "417"
|
||||||
message: "410"
|
message: "410"
|
||||||
nominatedNodeName: "412"
|
nominatedNodeName: "412"
|
||||||
phase: ș
|
phase: l
|
||||||
podIP: "414"
|
podIP: "414"
|
||||||
podIPs:
|
podIPs:
|
||||||
- ip: "415"
|
- ip: "415"
|
||||||
qosClass: 刣ȱǍ;ġ縊CkǚŨ
|
|
||||||
reason: "411"
|
reason: "411"
|
||||||
|
@ -1361,7 +1361,8 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -713,6 +713,7 @@ template:
|
|||||||
runAsUserName: "357"
|
runAsUserName: "357"
|
||||||
serviceAccount: "349"
|
serviceAccount: "349"
|
||||||
serviceAccountName: "348"
|
serviceAccountName: "348"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "362"
|
subdomain: "362"
|
||||||
terminationGracePeriodSeconds: -1689173322096612726
|
terminationGracePeriodSeconds: -1689173322096612726
|
||||||
|
@ -1362,19 +1362,20 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"replicas": -580887468,
|
"replicas": 189301373,
|
||||||
"fullyLabeledReplicas": 189301373,
|
"fullyLabeledReplicas": -1235733921,
|
||||||
"readyReplicas": -1235733921,
|
"readyReplicas": -1438616392,
|
||||||
"availableReplicas": -1438616392,
|
"availableReplicas": -1126236716,
|
||||||
"observedGeneration": 7696803627798560212,
|
"observedGeneration": -817442683106980570,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "獰Ĉ癯頯aɴí(Ȟ9\"",
|
"type": "Ĉ癯頯aɴí(Ȟ9\"",
|
||||||
"status": "oǰ'źĄ栧焷蜪sÛ°",
|
"status": "oǰ'źĄ栧焷蜪sÛ°",
|
||||||
"lastTransitionTime": "2129-09-06T04:28:43Z",
|
"lastTransitionTime": "2129-09-06T04:28:43Z",
|
||||||
"reason": "429",
|
"reason": "429",
|
||||||
|
Binary file not shown.
@ -714,6 +714,7 @@ spec:
|
|||||||
runAsUserName: "365"
|
runAsUserName: "365"
|
||||||
serviceAccount: "357"
|
serviceAccount: "357"
|
||||||
serviceAccountName: "356"
|
serviceAccountName: "356"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "370"
|
subdomain: "370"
|
||||||
terminationGracePeriodSeconds: -860974700141841896
|
terminationGracePeriodSeconds: -860974700141841896
|
||||||
@ -933,14 +934,14 @@ spec:
|
|||||||
storagePolicyName: "99"
|
storagePolicyName: "99"
|
||||||
volumePath: "97"
|
volumePath: "97"
|
||||||
status:
|
status:
|
||||||
availableReplicas: -1438616392
|
availableReplicas: -1126236716
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2129-09-06T04:28:43Z"
|
- lastTransitionTime: "2129-09-06T04:28:43Z"
|
||||||
message: "430"
|
message: "430"
|
||||||
reason: "429"
|
reason: "429"
|
||||||
status: oǰ'źĄ栧焷蜪sÛ°
|
status: oǰ'źĄ栧焷蜪sÛ°
|
||||||
type: 獰Ĉ癯頯aɴí(Ȟ9"
|
type: Ĉ癯頯aɴí(Ȟ9"
|
||||||
fullyLabeledReplicas: 189301373
|
fullyLabeledReplicas: -1235733921
|
||||||
observedGeneration: 7696803627798560212
|
observedGeneration: -817442683106980570
|
||||||
readyReplicas: -1235733921
|
readyReplicas: -1438616392
|
||||||
replicas: -580887468
|
replicas: 189301373
|
||||||
|
@ -1378,33 +1378,35 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"updateStrategy": {
|
"updateStrategy": {
|
||||||
|
"type": "))e×鄞閆N钮Ǒ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2
|
"maxUnavailable": 2
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 997447044,
|
"minReadySeconds": -1521312599,
|
||||||
"templateGeneration": 117144906028254972,
|
"templateGeneration": -4945204664217632710,
|
||||||
"revisionHistoryLimit": 1606858231
|
"revisionHistoryLimit": 687719923
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"currentNumberScheduled": 1791868025,
|
"currentNumberScheduled": -1777921334,
|
||||||
"numberMisscheduled": -793692762,
|
"numberMisscheduled": -2022058870,
|
||||||
"desiredNumberScheduled": -1152625369,
|
"desiredNumberScheduled": 283054026,
|
||||||
"numberReady": -1832836223,
|
"numberReady": -1539366293,
|
||||||
"observedGeneration": 289178836781711257,
|
"observedGeneration": 5773395124214737719,
|
||||||
"updatedNumberScheduled": -1734448297,
|
"updatedNumberScheduled": 1090884237,
|
||||||
"numberAvailable": -1757575936,
|
"numberAvailable": -1303432952,
|
||||||
"numberUnavailable": -1151395185,
|
"numberUnavailable": -1708016772,
|
||||||
"collisionCount": 2022921268,
|
"collisionCount": -1494643176,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "ɦ!",
|
"type": "ŧĞöZÕW肤 遞Ȼ棉",
|
||||||
"status": "(XEfê澙凋B/ü橚2ț",
|
"status": "浤ɖ緖焿熣$ɒ割婻漛Ǒ僕ʨƌɦ",
|
||||||
"lastTransitionTime": "2733-02-09T15:36:31Z",
|
"lastTransitionTime": "2770-06-01T22:44:21Z",
|
||||||
"reason": "433",
|
"reason": "433",
|
||||||
"message": "434"
|
"message": "434"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -30,8 +30,8 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 997447044
|
minReadySeconds: -1521312599
|
||||||
revisionHistoryLimit: 1606858231
|
revisionHistoryLimit: 687719923
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
|
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
|
||||||
@ -725,6 +725,7 @@ spec:
|
|||||||
runAsUserName: "369"
|
runAsUserName: "369"
|
||||||
serviceAccount: "361"
|
serviceAccount: "361"
|
||||||
serviceAccountName: "360"
|
serviceAccountName: "360"
|
||||||
|
setHostnameAsFQDN: true
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "374"
|
subdomain: "374"
|
||||||
terminationGracePeriodSeconds: -3039830979334099524
|
terminationGracePeriodSeconds: -3039830979334099524
|
||||||
@ -944,23 +945,24 @@ spec:
|
|||||||
storagePolicyID: "104"
|
storagePolicyID: "104"
|
||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
templateGeneration: 117144906028254972
|
templateGeneration: -4945204664217632710
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
|
type: ))e×鄞閆N钮Ǒ
|
||||||
status:
|
status:
|
||||||
collisionCount: 2022921268
|
collisionCount: -1494643176
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2733-02-09T15:36:31Z"
|
- lastTransitionTime: "2770-06-01T22:44:21Z"
|
||||||
message: "434"
|
message: "434"
|
||||||
reason: "433"
|
reason: "433"
|
||||||
status: (XEfê澙凋B/ü橚2ț
|
status: 浤ɖ緖焿熣$ɒ割婻漛Ǒ僕ʨƌɦ
|
||||||
type: ɦ!
|
type: ŧĞöZÕW肤 遞Ȼ棉
|
||||||
currentNumberScheduled: 1791868025
|
currentNumberScheduled: -1777921334
|
||||||
desiredNumberScheduled: -1152625369
|
desiredNumberScheduled: 283054026
|
||||||
numberAvailable: -1757575936
|
numberAvailable: -1303432952
|
||||||
numberMisscheduled: -793692762
|
numberMisscheduled: -2022058870
|
||||||
numberReady: -1832836223
|
numberReady: -1539366293
|
||||||
numberUnavailable: -1151395185
|
numberUnavailable: -1708016772
|
||||||
observedGeneration: 289178836781711257
|
observedGeneration: 5773395124214737719
|
||||||
updatedNumberScheduled: -1734448297
|
updatedNumberScheduled: 1090884237
|
||||||
|
@ -1371,40 +1371,41 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"strategy": {
|
"strategy": {
|
||||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||||
"rollingUpdate": {
|
"rollingUpdate": {
|
||||||
"maxUnavailable": 2,
|
"maxUnavailable": 2,
|
||||||
"maxSurge": 3
|
"maxSurge": 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minReadySeconds": 212061711,
|
"minReadySeconds": 696654600,
|
||||||
"revisionHistoryLimit": -1092090658,
|
"revisionHistoryLimit": 407742062,
|
||||||
"rollbackTo": {
|
"rollbackTo": {
|
||||||
"revision": -318895959020904110
|
"revision": -455484136992029462
|
||||||
},
|
},
|
||||||
"progressDeadlineSeconds": 1109758199
|
"progressDeadlineSeconds": -1450995995
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"observedGeneration": 1751238822830387407,
|
"observedGeneration": 3883700826410970519,
|
||||||
"replicas": -106050665,
|
"replicas": -449319810,
|
||||||
"updatedReplicas": -929473748,
|
"updatedReplicas": 2063260600,
|
||||||
"readyReplicas": -1450995995,
|
"readyReplicas": -729742317,
|
||||||
"availableReplicas": 740158871,
|
"availableReplicas": 294718341,
|
||||||
"unavailableReplicas": -449319810,
|
"unavailableReplicas": 867742020,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "",
|
"type": "昞财Î嘝zʄ!ć惍Bi攵\u0026ý\"ʀ",
|
||||||
"status": "'ƈoIǢ龞瞯å",
|
"status": "",
|
||||||
"lastUpdateTime": "2469-07-10T03:20:34Z",
|
"lastUpdateTime": "2042-08-25T05:10:04Z",
|
||||||
"lastTransitionTime": "1970-05-16T01:44:00Z",
|
"lastTransitionTime": "2097-04-15T07:29:40Z",
|
||||||
"reason": "426",
|
"reason": "426",
|
||||||
"message": "427"
|
"message": "427"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"collisionCount": 571778293
|
"collisionCount": -2071091268
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
@ -30,12 +30,12 @@ metadata:
|
|||||||
selfLink: "5"
|
selfLink: "5"
|
||||||
uid: "7"
|
uid: "7"
|
||||||
spec:
|
spec:
|
||||||
minReadySeconds: 212061711
|
minReadySeconds: 696654600
|
||||||
progressDeadlineSeconds: 1109758199
|
progressDeadlineSeconds: -1450995995
|
||||||
replicas: 896585016
|
replicas: 896585016
|
||||||
revisionHistoryLimit: -1092090658
|
revisionHistoryLimit: 407742062
|
||||||
rollbackTo:
|
rollbackTo:
|
||||||
revision: -318895959020904110
|
revision: -455484136992029462
|
||||||
selector:
|
selector:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
|
||||||
@ -46,7 +46,7 @@ spec:
|
|||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
maxSurge: 3
|
maxSurge: 3
|
||||||
maxUnavailable: 2
|
maxUnavailable: 2
|
||||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
@ -726,6 +726,7 @@ spec:
|
|||||||
runAsUserName: "362"
|
runAsUserName: "362"
|
||||||
serviceAccount: "354"
|
serviceAccount: "354"
|
||||||
serviceAccountName: "353"
|
serviceAccountName: "353"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: false
|
shareProcessNamespace: false
|
||||||
subdomain: "367"
|
subdomain: "367"
|
||||||
terminationGracePeriodSeconds: -2738603156841903595
|
terminationGracePeriodSeconds: -2738603156841903595
|
||||||
@ -947,17 +948,17 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: 740158871
|
availableReplicas: 294718341
|
||||||
collisionCount: 571778293
|
collisionCount: -2071091268
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "1970-05-16T01:44:00Z"
|
- lastTransitionTime: "2097-04-15T07:29:40Z"
|
||||||
lastUpdateTime: "2469-07-10T03:20:34Z"
|
lastUpdateTime: "2042-08-25T05:10:04Z"
|
||||||
message: "427"
|
message: "427"
|
||||||
reason: "426"
|
reason: "426"
|
||||||
status: '''ƈoIǢ龞瞯å'
|
status: ""
|
||||||
type: ""
|
type: 昞财Î嘝zʄ!ć惍Bi攵&ý"ʀ
|
||||||
observedGeneration: 1751238822830387407
|
observedGeneration: 3883700826410970519
|
||||||
readyReplicas: -1450995995
|
readyReplicas: -729742317
|
||||||
replicas: -106050665
|
replicas: -449319810
|
||||||
unavailableReplicas: -449319810
|
unavailableReplicas: 867742020
|
||||||
updatedReplicas: -929473748
|
updatedReplicas: 2063260600
|
||||||
|
@ -1378,21 +1378,22 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"setHostnameAsFQDN": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"replicas": -1165029050,
|
"replicas": 1893057016,
|
||||||
"fullyLabeledReplicas": 1893057016,
|
"fullyLabeledReplicas": -2099726885,
|
||||||
"readyReplicas": -2099726885,
|
"readyReplicas": -928976522,
|
||||||
"availableReplicas": -928976522,
|
"availableReplicas": -983106472,
|
||||||
"observedGeneration": 702392770146794584,
|
"observedGeneration": 4693783954739913971,
|
||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"type": "暁×軓鼐嵱宯ÙQ阉(闒ƈƳ",
|
"type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ",
|
||||||
"status": "ű孖站畦f黹ʩ鹸ɷ",
|
"status": "站畦f黹ʩ鹸ɷLȋ",
|
||||||
"lastTransitionTime": "2233-10-15T01:58:37Z",
|
"lastTransitionTime": "2376-03-18T02:40:44Z",
|
||||||
"reason": "434",
|
"reason": "434",
|
||||||
"message": "435"
|
"message": "435"
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -721,6 +721,7 @@ spec:
|
|||||||
runAsUserName: "370"
|
runAsUserName: "370"
|
||||||
serviceAccount: "362"
|
serviceAccount: "362"
|
||||||
serviceAccountName: "361"
|
serviceAccountName: "361"
|
||||||
|
setHostnameAsFQDN: false
|
||||||
shareProcessNamespace: true
|
shareProcessNamespace: true
|
||||||
subdomain: "375"
|
subdomain: "375"
|
||||||
terminationGracePeriodSeconds: 2666412258966278206
|
terminationGracePeriodSeconds: 2666412258966278206
|
||||||
@ -941,14 +942,14 @@ spec:
|
|||||||
storagePolicyName: "103"
|
storagePolicyName: "103"
|
||||||
volumePath: "101"
|
volumePath: "101"
|
||||||
status:
|
status:
|
||||||
availableReplicas: -928976522
|
availableReplicas: -983106472
|
||||||
conditions:
|
conditions:
|
||||||
- lastTransitionTime: "2233-10-15T01:58:37Z"
|
- lastTransitionTime: "2376-03-18T02:40:44Z"
|
||||||
message: "435"
|
message: "435"
|
||||||
reason: "434"
|
reason: "434"
|
||||||
status: ű孖站畦f黹ʩ鹸ɷ
|
status: 站畦f黹ʩ鹸ɷLȋ
|
||||||
type: 暁×軓鼐嵱宯ÙQ阉(闒ƈƳ
|
type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ
|
||||||
fullyLabeledReplicas: 1893057016
|
fullyLabeledReplicas: -2099726885
|
||||||
observedGeneration: 702392770146794584
|
observedGeneration: 4693783954739913971
|
||||||
readyReplicas: -2099726885
|
readyReplicas: -928976522
|
||||||
replicas: -1165029050
|
replicas: 1893057016
|
||||||
|
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.StatefulSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1.StatefulSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta1.StatefulSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta1.StatefulSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.StatefulSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/apps.v1beta2.StatefulSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v1.Job.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v1.Job.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v1beta1.CronJob.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v1beta1.CronJob.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v1beta1.JobTemplate.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v1beta1.JobTemplate.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v2alpha1.CronJob.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v2alpha1.CronJob.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/batch.v2alpha1.JobTemplate.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/core.v1.Pod.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/core.v1.Pod.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/core.v1.PodTemplate.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/core.v1.PodTemplate.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/core.v1.ReplicationController.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/core.v1.ReplicationController.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/extensions.v1beta1.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/extensions.v1beta1.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/extensions.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/extensions.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.17.0/extensions.v1beta1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.17.0/extensions.v1beta1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.StatefulSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1.StatefulSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta1.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta1.StatefulSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta1.StatefulSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta2.DaemonSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta2.DaemonSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta2.Deployment.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta2.Deployment.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb
vendored
Normal file
BIN
staging/src/k8s.io/api/testdata/v1.18.0/apps.v1beta2.ReplicaSet.after_roundtrip.pb
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user