Merge pull request #91699 from twosigma/hostnamefqdn_kubelet
Allow setting FQDN in hostname
This commit is contained in:
commit
907a526919
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/",
|
||||
"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": {
|
||||
"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"
|
||||
|
@ -438,6 +438,12 @@ func dropDisabledFields(
|
||||
// does not specify any values for these fields.
|
||||
podSpec.PreemptionPolicy = nil
|
||||
}
|
||||
|
||||
if !utilfeature.DefaultFeatureGate.Enabled(features.SetHostnameAsFQDN) && !setHostnameAsFQDNInUse(oldPodSpec) {
|
||||
// Set SetHostnameAsFQDN to nil only if feature is disabled and it is not used
|
||||
podSpec.SetHostnameAsFQDN = nil
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// dropDisabledRunAsGroupField removes disabled fields from PodSpec related
|
||||
@ -720,3 +726,11 @@ func multiplePodIPsInUse(podStatus *api.PodStatus) bool {
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// setHostnameAsFQDNInUse returns true if any pod's spec defines setHostnameAsFQDN field.
|
||||
func setHostnameAsFQDNInUse(podSpec *api.PodSpec) bool {
|
||||
if podSpec == nil || podSpec.SetHostnameAsFQDN == nil {
|
||||
return false
|
||||
}
|
||||
return *podSpec.SetHostnameAsFQDN
|
||||
}
|
||||
|
@ -2693,6 +2693,12 @@ type PodSpec struct {
|
||||
// If not specified, the pod will not have a domainname at all.
|
||||
// +optional
|
||||
Subdomain string
|
||||
// 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.
|
||||
// +optional
|
||||
SetHostnameAsFQDN *bool
|
||||
// If specified, the pod's scheduling constraints
|
||||
// +optional
|
||||
Affinity *Affinity
|
||||
|
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.Overhead = *(*core.ResourceList)(unsafe.Pointer(&in.Overhead))
|
||||
out.TopologySpreadConstraints = *(*[]core.TopologySpreadConstraint)(unsafe.Pointer(&in.TopologySpreadConstraints))
|
||||
out.SetHostnameAsFQDN = (*bool)(unsafe.Pointer(in.SetHostnameAsFQDN))
|
||||
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.Hostname = in.Hostname
|
||||
out.Subdomain = in.Subdomain
|
||||
out.SetHostnameAsFQDN = (*bool)(unsafe.Pointer(in.SetHostnameAsFQDN))
|
||||
out.Affinity = (*v1.Affinity)(unsafe.Pointer(in.Affinity))
|
||||
out.SchedulerName = in.SchedulerName
|
||||
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))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.SetHostnameAsFQDN != nil {
|
||||
in, out := &in.SetHostnameAsFQDN, &out.SetHostnameAsFQDN
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
if in.Affinity != nil {
|
||||
in, out := &in.Affinity, &out.Affinity
|
||||
*out = new(Affinity)
|
||||
|
@ -593,6 +593,13 @@ const (
|
||||
//
|
||||
// Enables usage of any object for volume data source in PVCs
|
||||
AnyVolumeDataSource featuregate.Feature = "AnyVolumeDataSource"
|
||||
|
||||
// owner: @javidiaz
|
||||
// alpha: v1.19
|
||||
//
|
||||
// Allow setting the Fully Qualified Domain Name (FQDN) in the hostname of a Pod. If a Pod does not
|
||||
// have FQDN, this feature has no effect.
|
||||
SetHostnameAsFQDN featuregate.Feature = "SetHostnameAsFQDN"
|
||||
)
|
||||
|
||||
func init() {
|
||||
@ -684,6 +691,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
||||
ExternalPolicyForExternalIP: {Default: true, PreRelease: featuregate.GA}, // remove in 1.20
|
||||
AnyVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha},
|
||||
DefaultPodTopologySpread: {Default: false, PreRelease: featuregate.Alpha},
|
||||
SetHostnameAsFQDN: {Default: false, PreRelease: featuregate.Alpha},
|
||||
|
||||
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
|
||||
// unintentionally on either side:
|
||||
|
@ -58,6 +58,7 @@ import (
|
||||
"k8s.io/kubernetes/pkg/kubelet/images"
|
||||
"k8s.io/kubernetes/pkg/kubelet/status"
|
||||
kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
|
||||
"k8s.io/kubernetes/pkg/kubelet/util"
|
||||
"k8s.io/kubernetes/pkg/kubelet/util/format"
|
||||
volumeutil "k8s.io/kubernetes/pkg/volume/util"
|
||||
"k8s.io/kubernetes/pkg/volume/util/hostutil"
|
||||
@ -442,12 +443,18 @@ func (kl *Kubelet) GenerateRunContainerOptions(pod *v1.Pod, container *v1.Contai
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
// The value of hostname is the short host name and it is sent to makeMounts to create /etc/hosts file.
|
||||
hostname, hostDomainName, err := kl.GeneratePodHostNameAndDomain(pod)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
opts.Hostname = hostname
|
||||
// nodename will be equals to hostname if SetHostnameAsFQDN is nil or false. If SetHostnameFQDN
|
||||
// is true and hostDomainName is defined, nodename will be the FQDN (hostname.hostDomainName)
|
||||
nodename, err := util.GetNodenameForKernel(hostname, hostDomainName, pod.Spec.SetHostnameAsFQDN)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
opts.Hostname = nodename
|
||||
podName := volumeutil.GetUniquePodName(pod)
|
||||
volumes := kl.volumeManager.GetMountedVolumesForPod(podName)
|
||||
|
||||
|
@ -45,6 +45,7 @@ go_library(
|
||||
"//pkg/kubelet/prober/results:go_default_library",
|
||||
"//pkg/kubelet/runtimeclass:go_default_library",
|
||||
"//pkg/kubelet/types:go_default_library",
|
||||
"//pkg/kubelet/util:go_default_library",
|
||||
"//pkg/kubelet/util/cache:go_default_library",
|
||||
"//pkg/kubelet/util/format:go_default_library",
|
||||
"//pkg/security/apparmor:go_default_library",
|
||||
|
@ -30,6 +30,7 @@ import (
|
||||
"k8s.io/kubernetes/pkg/features"
|
||||
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
|
||||
"k8s.io/kubernetes/pkg/kubelet/types"
|
||||
"k8s.io/kubernetes/pkg/kubelet/util"
|
||||
"k8s.io/kubernetes/pkg/kubelet/util/format"
|
||||
)
|
||||
|
||||
@ -96,11 +97,15 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *v1.Pod, attemp
|
||||
|
||||
if !kubecontainer.IsHostNetworkPod(pod) {
|
||||
// TODO: Add domain support in new runtime interface
|
||||
hostname, _, err := m.runtimeHelper.GeneratePodHostNameAndDomain(pod)
|
||||
podHostname, podDomain, err := m.runtimeHelper.GeneratePodHostNameAndDomain(pod)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
podSandboxConfig.Hostname = hostname
|
||||
podHostname, err = util.GetNodenameForKernel(podHostname, podDomain, pod.Spec.SetHostnameAsFQDN)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
podSandboxConfig.Hostname = podHostname
|
||||
}
|
||||
|
||||
logDir := BuildPodLogsDirectory(pod.Namespace, pod.Name, pod.UID)
|
||||
|
@ -9,34 +9,31 @@ load(
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = [
|
||||
"util_test.go",
|
||||
"util_unix_test.go",
|
||||
"util_windows_test.go",
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = select({
|
||||
deps = [
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
] + select({
|
||||
"@io_bazel_rules_go//go/platform:android": [
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/require:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:darwin": [
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/require:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:freebsd": [
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/require:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:ios": [
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/require:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:linux": [
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/require:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:windows": [
|
||||
"//vendor/github.com/Microsoft/go-winio:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/require:go_default_library",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
|
@ -17,6 +17,8 @@ limitations under the License.
|
||||
package util
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
)
|
||||
|
||||
@ -25,3 +27,19 @@ import (
|
||||
func FromApiserverCache(opts *metav1.GetOptions) {
|
||||
opts.ResourceVersion = "0"
|
||||
}
|
||||
|
||||
// GetNodenameForKernel gets hostname value to set in the hostname field (the nodename field of struct utsname) of the pod.
|
||||
func GetNodenameForKernel(hostname string, hostDomainName string, setHostnameAsFQDN *bool) (string, error) {
|
||||
kernelHostname := hostname
|
||||
// FQDN has to be 64 chars to fit in the Linux nodename kernel field (specification 64 chars and the null terminating char).
|
||||
const fqdnMaxLen = 64
|
||||
if len(hostDomainName) > 0 && setHostnameAsFQDN != nil && *setHostnameAsFQDN == true {
|
||||
fqdn := fmt.Sprintf("%s.%s", hostname, hostDomainName)
|
||||
// FQDN has to be shorter than hostnameMaxLen characters.
|
||||
if len(fqdn) > fqdnMaxLen {
|
||||
return "", fmt.Errorf("Failed to construct FQDN from pod hostname and cluster domain, FQDN %s is too long (%d characters is the max, %d characters requested)", fqdn, fqdnMaxLen, len(fqdn))
|
||||
}
|
||||
kernelHostname = fqdn
|
||||
}
|
||||
return kernelHostname, nil
|
||||
}
|
||||
|
88
pkg/kubelet/util/util_test.go
Normal file
88
pkg/kubelet/util/util_test.go
Normal file
@ -0,0 +1,88 @@
|
||||
/*
|
||||
Copyright 2020 The Kubernetes Authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package util
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestGetNodenameForKernel(t *testing.T) {
|
||||
testcases := []struct {
|
||||
description string
|
||||
hostname string
|
||||
hostDomain string
|
||||
setHostnameAsFQDN bool
|
||||
expectedHostname string
|
||||
expectError bool
|
||||
}{{
|
||||
description: "no hostDomain, setHostnameAsFQDN false",
|
||||
hostname: "test.pod.hostname",
|
||||
hostDomain: "",
|
||||
setHostnameAsFQDN: false,
|
||||
expectedHostname: "test.pod.hostname",
|
||||
expectError: false,
|
||||
}, {
|
||||
description: "no hostDomain, setHostnameAsFQDN true",
|
||||
hostname: "test.pod.hostname",
|
||||
hostDomain: "",
|
||||
setHostnameAsFQDN: true,
|
||||
expectedHostname: "test.pod.hostname",
|
||||
expectError: false,
|
||||
}, {
|
||||
description: "valid hostDomain, setHostnameAsFQDN false",
|
||||
hostname: "test.pod.hostname",
|
||||
hostDomain: "svc.subdomain.local",
|
||||
setHostnameAsFQDN: false,
|
||||
expectedHostname: "test.pod.hostname",
|
||||
expectError: false,
|
||||
}, {
|
||||
description: "valid hostDomain, setHostnameAsFQDN true",
|
||||
hostname: "test.pod.hostname",
|
||||
hostDomain: "svc.subdomain.local",
|
||||
setHostnameAsFQDN: true,
|
||||
expectedHostname: "test.pod.hostname.svc.subdomain.local",
|
||||
expectError: false,
|
||||
}, {
|
||||
description: "FQDN is too long, setHostnameAsFQDN false",
|
||||
hostname: "1234567.1234567", //8*2-1=15 chars
|
||||
hostDomain: "1234567.1234567.1234567.1234567.1234567.1234567.1234567", //8*7-1=55 chars
|
||||
setHostnameAsFQDN: false, //FQDN=15 + 1(dot) + 55 = 71 chars
|
||||
expectedHostname: "1234567.1234567",
|
||||
expectError: false,
|
||||
}, {
|
||||
description: "FQDN is too long, setHostnameAsFQDN true",
|
||||
hostname: "1234567.1234567", //8*2-1=15 chars
|
||||
hostDomain: "1234567.1234567.1234567.1234567.1234567.1234567.1234567", //8*7-1=55 chars
|
||||
setHostnameAsFQDN: true, //FQDN=15 + 1(dot) + 55 = 71 chars
|
||||
expectedHostname: "",
|
||||
expectError: true,
|
||||
}}
|
||||
|
||||
for _, tc := range testcases {
|
||||
t.Logf("TestCase: %q", tc.description)
|
||||
outputHostname, err := GetNodenameForKernel(tc.hostname, tc.hostDomain, &tc.setHostnameAsFQDN)
|
||||
if tc.expectError {
|
||||
assert.Error(t, err)
|
||||
} else {
|
||||
assert.NoError(t, err)
|
||||
}
|
||||
assert.Equal(t, tc.expectedHostname, outputHostname)
|
||||
}
|
||||
|
||||
}
|
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=whenUnsatisfiable
|
||||
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
|
||||
|
@ -3055,6 +3055,13 @@ type PodSpec struct {
|
||||
// +listMapKey=topologyKey
|
||||
// +listMapKey=whenUnsatisfiable
|
||||
TopologySpreadConstraints []TopologySpreadConstraint `json:"topologySpreadConstraints,omitempty" patchStrategy:"merge" patchMergeKey:"topologyKey" protobuf:"bytes,33,opt,name=topologySpreadConstraints"`
|
||||
// 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
|
||||
SetHostnameAsFQDN *bool `json:"setHostnameAsFQDN,omitempty" protobuf:"varint,35,opt,name=setHostnameAsFQDN"`
|
||||
}
|
||||
|
||||
type UnsatisfiableConstraintAction string
|
||||
|
@ -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.",
|
||||
"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.",
|
||||
"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 {
|
||||
|
@ -3859,6 +3859,11 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
if in.SetHostnameAsFQDN != nil {
|
||||
in, out := &in.SetHostnameAsFQDN, &out.SetHostnameAsFQDN
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -1378,32 +1378,34 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": true
|
||||
}
|
||||
},
|
||||
"updateStrategy": {
|
||||
"type": "))e×鄞閆N钮Ǒ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 997447044,
|
||||
"revisionHistoryLimit": 989524452
|
||||
"minReadySeconds": -1521312599,
|
||||
"revisionHistoryLimit": 554881301
|
||||
},
|
||||
"status": {
|
||||
"currentNumberScheduled": 1606858231,
|
||||
"numberMisscheduled": 1791868025,
|
||||
"desiredNumberScheduled": -793692762,
|
||||
"numberReady": -1152625369,
|
||||
"observedGeneration": 3839991706170762113,
|
||||
"updatedNumberScheduled": -1292943463,
|
||||
"numberAvailable": -1734448297,
|
||||
"numberUnavailable": -1757575936,
|
||||
"collisionCount": 129237050,
|
||||
"currentNumberScheduled": 687719923,
|
||||
"numberMisscheduled": -1777921334,
|
||||
"desiredNumberScheduled": -2022058870,
|
||||
"numberReady": 283054026,
|
||||
"observedGeneration": 9202522069332337259,
|
||||
"updatedNumberScheduled": -691360969,
|
||||
"numberAvailable": 1090884237,
|
||||
"numberUnavailable": -1303432952,
|
||||
"collisionCount": -434531243,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö",
|
||||
"status": "2ț",
|
||||
"lastTransitionTime": "2733-02-09T15:36:31Z",
|
||||
"type": "",
|
||||
"status": "B/ü橚2ț}¹旛坷硂",
|
||||
"lastTransitionTime": "2776-12-09T00:48:05Z",
|
||||
"reason": "433",
|
||||
"message": "434"
|
||||
}
|
||||
|
Binary file not shown.
@ -30,8 +30,8 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 997447044
|
||||
revisionHistoryLimit: 989524452
|
||||
minReadySeconds: -1521312599
|
||||
revisionHistoryLimit: 554881301
|
||||
selector:
|
||||
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
|
||||
@ -725,6 +725,7 @@ spec:
|
||||
runAsUserName: "369"
|
||||
serviceAccount: "361"
|
||||
serviceAccountName: "360"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: true
|
||||
subdomain: "374"
|
||||
terminationGracePeriodSeconds: -3039830979334099524
|
||||
@ -947,19 +948,20 @@ spec:
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 2
|
||||
type: ))e×鄞閆N钮Ǒ
|
||||
status:
|
||||
collisionCount: 129237050
|
||||
collisionCount: -434531243
|
||||
conditions:
|
||||
- lastTransitionTime: "2733-02-09T15:36:31Z"
|
||||
- lastTransitionTime: "2776-12-09T00:48:05Z"
|
||||
message: "434"
|
||||
reason: "433"
|
||||
status: 2ț
|
||||
type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö'
|
||||
currentNumberScheduled: 1606858231
|
||||
desiredNumberScheduled: -793692762
|
||||
numberAvailable: -1734448297
|
||||
numberMisscheduled: 1791868025
|
||||
numberReady: -1152625369
|
||||
numberUnavailable: -1757575936
|
||||
observedGeneration: 3839991706170762113
|
||||
updatedNumberScheduled: -1292943463
|
||||
status: B/ü橚2ț}¹旛坷硂
|
||||
type: ""
|
||||
currentNumberScheduled: 687719923
|
||||
desiredNumberScheduled: -2022058870
|
||||
numberAvailable: 1090884237
|
||||
numberMisscheduled: -1777921334
|
||||
numberReady: 283054026
|
||||
numberUnavailable: -1303432952
|
||||
observedGeneration: 9202522069332337259
|
||||
updatedNumberScheduled: -691360969
|
||||
|
@ -1371,37 +1371,38 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"strategy": {
|
||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
||||
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2,
|
||||
"maxSurge": 3
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 212061711,
|
||||
"revisionHistoryLimit": -1092090658,
|
||||
"progressDeadlineSeconds": -1707056814
|
||||
"minReadySeconds": 696654600,
|
||||
"revisionHistoryLimit": 407742062,
|
||||
"progressDeadlineSeconds": 902022378
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 2992108727478230062,
|
||||
"replicas": 407742062,
|
||||
"updatedReplicas": 2115789304,
|
||||
"readyReplicas": 902022378,
|
||||
"availableReplicas": 1660081568,
|
||||
"unavailableReplicas": 904244563,
|
||||
"observedGeneration": -3992059348490463840,
|
||||
"replicas": 904244563,
|
||||
"updatedReplicas": -1245696932,
|
||||
"readyReplicas": -1512660030,
|
||||
"availableReplicas": -655315199,
|
||||
"unavailableReplicas": -918184784,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "洅啶",
|
||||
"status": "Ƅ抄3昞财Î嘝zʄ",
|
||||
"lastUpdateTime": "2524-02-08T04:27:05Z",
|
||||
"lastTransitionTime": "2146-08-16T07:05:27Z",
|
||||
"type": "oIǢ龞瞯å檳ė\u003ec緍k¢茤Ƣǟ½灶",
|
||||
"status": "査Z綶ĀRġ磸",
|
||||
"lastUpdateTime": "2631-04-27T22:00:28Z",
|
||||
"lastTransitionTime": "2196-03-13T21:02:11Z",
|
||||
"reason": "426",
|
||||
"message": "427"
|
||||
}
|
||||
],
|
||||
"collisionCount": -1977467928
|
||||
"collisionCount": -1914221188
|
||||
}
|
||||
}
|
Binary file not shown.
@ -30,10 +30,10 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 212061711
|
||||
progressDeadlineSeconds: -1707056814
|
||||
minReadySeconds: 696654600
|
||||
progressDeadlineSeconds: 902022378
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: -1092090658
|
||||
revisionHistoryLimit: 407742062
|
||||
selector:
|
||||
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
|
||||
@ -44,7 +44,7 @@ spec:
|
||||
rollingUpdate:
|
||||
maxSurge: 3
|
||||
maxUnavailable: 2
|
||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
||||
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
@ -724,6 +724,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -945,17 +946,17 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: 1660081568
|
||||
collisionCount: -1977467928
|
||||
availableReplicas: -655315199
|
||||
collisionCount: -1914221188
|
||||
conditions:
|
||||
- lastTransitionTime: "2146-08-16T07:05:27Z"
|
||||
lastUpdateTime: "2524-02-08T04:27:05Z"
|
||||
- lastTransitionTime: "2196-03-13T21:02:11Z"
|
||||
lastUpdateTime: "2631-04-27T22:00:28Z"
|
||||
message: "427"
|
||||
reason: "426"
|
||||
status: Ƅ抄3昞财Î嘝zʄ
|
||||
type: 洅啶
|
||||
observedGeneration: 2992108727478230062
|
||||
readyReplicas: 902022378
|
||||
replicas: 407742062
|
||||
unavailableReplicas: 904244563
|
||||
updatedReplicas: 2115789304
|
||||
status: 査Z綶ĀRġ磸
|
||||
type: oIǢ龞瞯å檳ė>c緍k¢茤Ƣǟ½灶
|
||||
observedGeneration: -3992059348490463840
|
||||
readyReplicas: -1512660030
|
||||
replicas: 904244563
|
||||
unavailableReplicas: -918184784
|
||||
updatedReplicas: -1245696932
|
||||
|
@ -1378,21 +1378,22 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"replicas": -1165029050,
|
||||
"fullyLabeledReplicas": 1893057016,
|
||||
"readyReplicas": -2099726885,
|
||||
"availableReplicas": -928976522,
|
||||
"observedGeneration": 702392770146794584,
|
||||
"replicas": 1893057016,
|
||||
"fullyLabeledReplicas": -2099726885,
|
||||
"readyReplicas": -928976522,
|
||||
"availableReplicas": -983106472,
|
||||
"observedGeneration": 4693783954739913971,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "暁×軓鼐嵱宯ÙQ阉(闒ƈƳ",
|
||||
"status": "ű孖站畦f黹ʩ鹸ɷ",
|
||||
"lastTransitionTime": "2233-10-15T01:58:37Z",
|
||||
"type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ",
|
||||
"status": "站畦f黹ʩ鹸ɷLȋ",
|
||||
"lastTransitionTime": "2376-03-18T02:40:44Z",
|
||||
"reason": "434",
|
||||
"message": "435"
|
||||
}
|
||||
|
Binary file not shown.
@ -721,6 +721,7 @@ spec:
|
||||
runAsUserName: "370"
|
||||
serviceAccount: "362"
|
||||
serviceAccountName: "361"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: true
|
||||
subdomain: "375"
|
||||
terminationGracePeriodSeconds: 2666412258966278206
|
||||
@ -941,14 +942,14 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: -928976522
|
||||
availableReplicas: -983106472
|
||||
conditions:
|
||||
- lastTransitionTime: "2233-10-15T01:58:37Z"
|
||||
- lastTransitionTime: "2376-03-18T02:40:44Z"
|
||||
message: "435"
|
||||
reason: "434"
|
||||
status: ű孖站畦f黹ʩ鹸ɷ
|
||||
type: 暁×軓鼐嵱宯ÙQ阉(闒ƈƳ
|
||||
fullyLabeledReplicas: 1893057016
|
||||
observedGeneration: 702392770146794584
|
||||
readyReplicas: -2099726885
|
||||
replicas: -1165029050
|
||||
status: 站畦f黹ʩ鹸ɷLȋ
|
||||
type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ
|
||||
fullyLabeledReplicas: -2099726885
|
||||
observedGeneration: 4693783954739913971
|
||||
readyReplicas: -928976522
|
||||
replicas: 1893057016
|
||||
|
@ -1371,7 +1371,8 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"volumeClaimTemplates": [
|
||||
@ -1381,11 +1382,11 @@
|
||||
"generateName": "427",
|
||||
"namespace": "428",
|
||||
"selfLink": "429",
|
||||
"uid": "`ȗ\u003c8^翜T蘈",
|
||||
"resourceVersion": "6281861817195808867",
|
||||
"generation": -8502907933203165744,
|
||||
"uid": "瞯å檳ė\u003ec緍",
|
||||
"resourceVersion": "8774564298362452033",
|
||||
"generation": -4846338476256404591,
|
||||
"creationTimestamp": null,
|
||||
"deletionGracePeriodSeconds": -1824067601569574665,
|
||||
"deletionGracePeriodSeconds": 6041236524714316269,
|
||||
"labels": {
|
||||
"431": "432"
|
||||
},
|
||||
@ -1397,8 +1398,8 @@
|
||||
"apiVersion": "435",
|
||||
"kind": "436",
|
||||
"name": "437",
|
||||
"uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ",
|
||||
"controller": true,
|
||||
"uid": "ƄZ",
|
||||
"controller": false,
|
||||
"blockOwnerDeletion": false
|
||||
}
|
||||
],
|
||||
@ -1409,7 +1410,7 @@
|
||||
"managedFields": [
|
||||
{
|
||||
"manager": "440",
|
||||
"operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā",
|
||||
"operation": "ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄",
|
||||
"apiVersion": "441",
|
||||
"fieldsType": "442"
|
||||
}
|
||||
@ -1417,30 +1418,30 @@
|
||||
},
|
||||
"spec": {
|
||||
"accessModes": [
|
||||
"銲tHǽ÷閂抰^窄CǙķȈĐI梞ū"
|
||||
"Ƣǟ½灶du汎mō6µɑ`ȗ\u003c8^翜T"
|
||||
],
|
||||
"selector": {
|
||||
"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": [
|
||||
{
|
||||
"key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv",
|
||||
"operator": "Exists"
|
||||
"key": "oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T",
|
||||
"operator": "DoesNotExist"
|
||||
}
|
||||
]
|
||||
},
|
||||
"resources": {
|
||||
"limits": {
|
||||
"O^:": "847"
|
||||
"蒸CƅR8ɷ|恫f籽": "139"
|
||||
},
|
||||
"requests": {
|
||||
"Ɍ蚊ơ鎊t潑": "199"
|
||||
"": "380"
|
||||
}
|
||||
},
|
||||
"volumeName": "449",
|
||||
"storageClassName": "450",
|
||||
"volumeMode": "ȳT",
|
||||
"volumeMode": "ì淵歔",
|
||||
"dataSource": {
|
||||
"apiGroup": "451",
|
||||
"kind": "452",
|
||||
@ -1448,19 +1449,19 @@
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"phase": "戱PRɄ",
|
||||
"phase": "d,",
|
||||
"accessModes": [
|
||||
"熔ķ´ʑ潞Ĵ3Q蠯0"
|
||||
";蛡媈U"
|
||||
],
|
||||
"capacity": {
|
||||
"\\溮Ŀ傜NZ!š": "952"
|
||||
"n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:": "847"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:",
|
||||
"status": "ƿOqõƨj2愴ňù廻@p",
|
||||
"lastProbeTime": "2252-06-28T22:34:24Z",
|
||||
"lastTransitionTime": "1974-04-29T05:51:38Z",
|
||||
"type": "Ɍ蚊ơ鎊t潑",
|
||||
"status": "惃ȳTʬ戱P",
|
||||
"lastProbeTime": "2237-12-11T16:15:26Z",
|
||||
"lastTransitionTime": "2926-09-20T14:30:14Z",
|
||||
"reason": "454",
|
||||
"message": "455"
|
||||
}
|
||||
@ -1469,29 +1470,29 @@
|
||||
}
|
||||
],
|
||||
"serviceName": "456",
|
||||
"podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣",
|
||||
"podManagementPolicy": "冒ƖƦɼ橈\"Ĩ媻ʪdž澆",
|
||||
"updateStrategy": {
|
||||
"type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ",
|
||||
"type": "ƍ\\溮Ŀ傜NZ!šZ_",
|
||||
"rollingUpdate": {
|
||||
"partition": 86666826
|
||||
"partition": -1774432721
|
||||
}
|
||||
},
|
||||
"revisionHistoryLimit": 69142596
|
||||
"revisionHistoryLimit": 51542630
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 3474169154658456972,
|
||||
"replicas": 1449104338,
|
||||
"readyReplicas": 2037461401,
|
||||
"currentReplicas": -1847673756,
|
||||
"updatedReplicas": 154782591,
|
||||
"observedGeneration": 4970381117743528748,
|
||||
"replicas": 1736529625,
|
||||
"readyReplicas": 1972352681,
|
||||
"currentReplicas": -727089824,
|
||||
"updatedReplicas": -2068243724,
|
||||
"currentRevision": "457",
|
||||
"updateRevision": "458",
|
||||
"collisionCount": 341287797,
|
||||
"collisionCount": -1807803289,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "ÆŁĪŀc=Ƨz鈡煰敹xŪO",
|
||||
"status": "ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+",
|
||||
"lastTransitionTime": "2493-11-15T11:08:04Z",
|
||||
"type": "!轅諑",
|
||||
"status": "YĹ爩",
|
||||
"lastTransitionTime": "2544-05-05T21:53:33Z",
|
||||
"reason": "459",
|
||||
"message": "460"
|
||||
}
|
||||
|
Binary file not shown.
@ -30,9 +30,9 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣
|
||||
podManagementPolicy: 冒ƖƦɼ橈"Ĩ媻ʪdž澆
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: 69142596
|
||||
revisionHistoryLimit: 51542630
|
||||
selector:
|
||||
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
|
||||
@ -719,6 +719,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -941,84 +942,84 @@ spec:
|
||||
volumePath: "101"
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
partition: 86666826
|
||||
type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ
|
||||
partition: -1774432721
|
||||
type: ƍ\溮Ŀ傜NZ!šZ_
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
annotations:
|
||||
"433": "434"
|
||||
clusterName: "439"
|
||||
creationTimestamp: null
|
||||
deletionGracePeriodSeconds: -1824067601569574665
|
||||
deletionGracePeriodSeconds: 6041236524714316269
|
||||
finalizers:
|
||||
- "438"
|
||||
generateName: "427"
|
||||
generation: -8502907933203165744
|
||||
generation: -4846338476256404591
|
||||
labels:
|
||||
"431": "432"
|
||||
managedFields:
|
||||
- apiVersion: "441"
|
||||
fieldsType: "442"
|
||||
manager: "440"
|
||||
operation: Bi攵&ý"ʀ废査Z綶Ā
|
||||
operation: ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄
|
||||
name: "426"
|
||||
namespace: "428"
|
||||
ownerReferences:
|
||||
- apiVersion: "435"
|
||||
blockOwnerDeletion: false
|
||||
controller: true
|
||||
controller: false
|
||||
kind: "436"
|
||||
name: "437"
|
||||
uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ
|
||||
resourceVersion: "6281861817195808867"
|
||||
uid: ƄZ
|
||||
resourceVersion: "8774564298362452033"
|
||||
selfLink: "429"
|
||||
uid: '`ȗ<8^翜T蘈'
|
||||
uid: 瞯å檳ė>c緍
|
||||
spec:
|
||||
accessModes:
|
||||
- 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū
|
||||
- Ƣǟ½灶du汎mō6µɑ`ȗ<8^翜T
|
||||
dataSource:
|
||||
apiGroup: "451"
|
||||
kind: "452"
|
||||
name: "453"
|
||||
resources:
|
||||
limits:
|
||||
'O^:': "847"
|
||||
蒸CƅR8ɷ|恫f籽: "139"
|
||||
requests:
|
||||
Ɍ蚊ơ鎊t潑: "199"
|
||||
"": "380"
|
||||
selector:
|
||||
matchExpressions:
|
||||
- key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv
|
||||
operator: Exists
|
||||
- key: oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T
|
||||
operator: DoesNotExist
|
||||
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"
|
||||
volumeMode: ȳT
|
||||
volumeMode: ì淵歔
|
||||
volumeName: "449"
|
||||
status:
|
||||
accessModes:
|
||||
- 熔ķ´ʑ潞Ĵ3Q蠯0
|
||||
- ;蛡媈U
|
||||
capacity:
|
||||
\溮Ŀ傜NZ!š: "952"
|
||||
'n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:': "847"
|
||||
conditions:
|
||||
- lastProbeTime: "2252-06-28T22:34:24Z"
|
||||
lastTransitionTime: "1974-04-29T05:51:38Z"
|
||||
- lastProbeTime: "2237-12-11T16:15:26Z"
|
||||
lastTransitionTime: "2926-09-20T14:30:14Z"
|
||||
message: "455"
|
||||
reason: "454"
|
||||
status: ƿOqõƨj2愴ňù廻@p
|
||||
type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:'
|
||||
phase: 戱PRɄ
|
||||
status: 惃ȳTʬ戱P
|
||||
type: Ɍ蚊ơ鎊t潑
|
||||
phase: d,
|
||||
status:
|
||||
collisionCount: 341287797
|
||||
collisionCount: -1807803289
|
||||
conditions:
|
||||
- lastTransitionTime: "2493-11-15T11:08:04Z"
|
||||
- lastTransitionTime: "2544-05-05T21:53:33Z"
|
||||
message: "460"
|
||||
reason: "459"
|
||||
status: ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+
|
||||
type: ÆŁĪŀc=Ƨz鈡煰敹xŪO
|
||||
currentReplicas: -1847673756
|
||||
status: YĹ爩
|
||||
type: '!轅諑'
|
||||
currentReplicas: -727089824
|
||||
currentRevision: "457"
|
||||
observedGeneration: 3474169154658456972
|
||||
readyReplicas: 2037461401
|
||||
replicas: 1449104338
|
||||
observedGeneration: 4970381117743528748
|
||||
readyReplicas: 1972352681
|
||||
replicas: 1736529625
|
||||
updateRevision: "458"
|
||||
updatedReplicas: 154782591
|
||||
updatedReplicas: -2068243724
|
||||
|
@ -1371,40 +1371,41 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"strategy": {
|
||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
||||
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2,
|
||||
"maxSurge": 3
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 212061711,
|
||||
"revisionHistoryLimit": -1092090658,
|
||||
"minReadySeconds": 696654600,
|
||||
"revisionHistoryLimit": 407742062,
|
||||
"rollbackTo": {
|
||||
"revision": -318895959020904110
|
||||
"revision": -455484136992029462
|
||||
},
|
||||
"progressDeadlineSeconds": 1109758199
|
||||
"progressDeadlineSeconds": -1450995995
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 1751238822830387407,
|
||||
"replicas": -106050665,
|
||||
"updatedReplicas": -929473748,
|
||||
"readyReplicas": -1450995995,
|
||||
"availableReplicas": 740158871,
|
||||
"unavailableReplicas": -449319810,
|
||||
"observedGeneration": 3883700826410970519,
|
||||
"replicas": -449319810,
|
||||
"updatedReplicas": 2063260600,
|
||||
"readyReplicas": -729742317,
|
||||
"availableReplicas": 294718341,
|
||||
"unavailableReplicas": 867742020,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "",
|
||||
"status": "'ƈoIǢ龞瞯å",
|
||||
"lastUpdateTime": "2469-07-10T03:20:34Z",
|
||||
"lastTransitionTime": "1970-05-16T01:44:00Z",
|
||||
"type": "昞财Î嘝zʄ!ć惍Bi攵\u0026ý\"ʀ",
|
||||
"status": "",
|
||||
"lastUpdateTime": "2042-08-25T05:10:04Z",
|
||||
"lastTransitionTime": "2097-04-15T07:29:40Z",
|
||||
"reason": "426",
|
||||
"message": "427"
|
||||
}
|
||||
],
|
||||
"collisionCount": 571778293
|
||||
"collisionCount": -2071091268
|
||||
}
|
||||
}
|
Binary file not shown.
@ -30,12 +30,12 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 212061711
|
||||
progressDeadlineSeconds: 1109758199
|
||||
minReadySeconds: 696654600
|
||||
progressDeadlineSeconds: -1450995995
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: -1092090658
|
||||
revisionHistoryLimit: 407742062
|
||||
rollbackTo:
|
||||
revision: -318895959020904110
|
||||
revision: -455484136992029462
|
||||
selector:
|
||||
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
|
||||
@ -46,7 +46,7 @@ spec:
|
||||
rollingUpdate:
|
||||
maxSurge: 3
|
||||
maxUnavailable: 2
|
||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
||||
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
@ -726,6 +726,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -947,17 +948,17 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: 740158871
|
||||
collisionCount: 571778293
|
||||
availableReplicas: 294718341
|
||||
collisionCount: -2071091268
|
||||
conditions:
|
||||
- lastTransitionTime: "1970-05-16T01:44:00Z"
|
||||
lastUpdateTime: "2469-07-10T03:20:34Z"
|
||||
- lastTransitionTime: "2097-04-15T07:29:40Z"
|
||||
lastUpdateTime: "2042-08-25T05:10:04Z"
|
||||
message: "427"
|
||||
reason: "426"
|
||||
status: '''ƈoIǢ龞瞯å'
|
||||
type: ""
|
||||
observedGeneration: 1751238822830387407
|
||||
readyReplicas: -1450995995
|
||||
replicas: -106050665
|
||||
unavailableReplicas: -449319810
|
||||
updatedReplicas: -929473748
|
||||
status: ""
|
||||
type: 昞财Î嘝zʄ!ć惍Bi攵&ý"ʀ
|
||||
observedGeneration: 3883700826410970519
|
||||
readyReplicas: -729742317
|
||||
replicas: -449319810
|
||||
unavailableReplicas: 867742020
|
||||
updatedReplicas: 2063260600
|
||||
|
@ -1371,7 +1371,8 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"volumeClaimTemplates": [
|
||||
@ -1381,11 +1382,11 @@
|
||||
"generateName": "427",
|
||||
"namespace": "428",
|
||||
"selfLink": "429",
|
||||
"uid": "`ȗ\u003c8^翜T蘈",
|
||||
"resourceVersion": "6281861817195808867",
|
||||
"generation": -8502907933203165744,
|
||||
"uid": "瞯å檳ė\u003ec緍",
|
||||
"resourceVersion": "8774564298362452033",
|
||||
"generation": -4846338476256404591,
|
||||
"creationTimestamp": null,
|
||||
"deletionGracePeriodSeconds": -1824067601569574665,
|
||||
"deletionGracePeriodSeconds": 6041236524714316269,
|
||||
"labels": {
|
||||
"431": "432"
|
||||
},
|
||||
@ -1397,8 +1398,8 @@
|
||||
"apiVersion": "435",
|
||||
"kind": "436",
|
||||
"name": "437",
|
||||
"uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ",
|
||||
"controller": true,
|
||||
"uid": "ƄZ",
|
||||
"controller": false,
|
||||
"blockOwnerDeletion": false
|
||||
}
|
||||
],
|
||||
@ -1409,7 +1410,7 @@
|
||||
"managedFields": [
|
||||
{
|
||||
"manager": "440",
|
||||
"operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā",
|
||||
"operation": "ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄",
|
||||
"apiVersion": "441",
|
||||
"fieldsType": "442"
|
||||
}
|
||||
@ -1417,30 +1418,30 @@
|
||||
},
|
||||
"spec": {
|
||||
"accessModes": [
|
||||
"銲tHǽ÷閂抰^窄CǙķȈĐI梞ū"
|
||||
"Ƣǟ½灶du汎mō6µɑ`ȗ\u003c8^翜T"
|
||||
],
|
||||
"selector": {
|
||||
"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": [
|
||||
{
|
||||
"key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv",
|
||||
"operator": "Exists"
|
||||
"key": "oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T",
|
||||
"operator": "DoesNotExist"
|
||||
}
|
||||
]
|
||||
},
|
||||
"resources": {
|
||||
"limits": {
|
||||
"O^:": "847"
|
||||
"蒸CƅR8ɷ|恫f籽": "139"
|
||||
},
|
||||
"requests": {
|
||||
"Ɍ蚊ơ鎊t潑": "199"
|
||||
"": "380"
|
||||
}
|
||||
},
|
||||
"volumeName": "449",
|
||||
"storageClassName": "450",
|
||||
"volumeMode": "ȳT",
|
||||
"volumeMode": "ì淵歔",
|
||||
"dataSource": {
|
||||
"apiGroup": "451",
|
||||
"kind": "452",
|
||||
@ -1448,19 +1449,19 @@
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"phase": "戱PRɄ",
|
||||
"phase": "d,",
|
||||
"accessModes": [
|
||||
"熔ķ´ʑ潞Ĵ3Q蠯0"
|
||||
";蛡媈U"
|
||||
],
|
||||
"capacity": {
|
||||
"\\溮Ŀ傜NZ!š": "952"
|
||||
"n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:": "847"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:",
|
||||
"status": "ƿOqõƨj2愴ňù廻@p",
|
||||
"lastProbeTime": "2252-06-28T22:34:24Z",
|
||||
"lastTransitionTime": "1974-04-29T05:51:38Z",
|
||||
"type": "Ɍ蚊ơ鎊t潑",
|
||||
"status": "惃ȳTʬ戱P",
|
||||
"lastProbeTime": "2237-12-11T16:15:26Z",
|
||||
"lastTransitionTime": "2926-09-20T14:30:14Z",
|
||||
"reason": "454",
|
||||
"message": "455"
|
||||
}
|
||||
@ -1469,29 +1470,29 @@
|
||||
}
|
||||
],
|
||||
"serviceName": "456",
|
||||
"podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣",
|
||||
"podManagementPolicy": "冒ƖƦɼ橈\"Ĩ媻ʪdž澆",
|
||||
"updateStrategy": {
|
||||
"type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ",
|
||||
"type": "ƍ\\溮Ŀ傜NZ!šZ_",
|
||||
"rollingUpdate": {
|
||||
"partition": 86666826
|
||||
"partition": -1774432721
|
||||
}
|
||||
},
|
||||
"revisionHistoryLimit": 69142596
|
||||
"revisionHistoryLimit": 51542630
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 8145135462833081718,
|
||||
"replicas": -1589158932,
|
||||
"readyReplicas": -1470626063,
|
||||
"currentReplicas": -2011137790,
|
||||
"updatedReplicas": -126896219,
|
||||
"observedGeneration": -2780555863272013359,
|
||||
"replicas": -1607291056,
|
||||
"readyReplicas": 1591188280,
|
||||
"currentReplicas": 1562316216,
|
||||
"updatedReplicas": -292741450,
|
||||
"currentRevision": "457",
|
||||
"updateRevision": "458",
|
||||
"collisionCount": 1664714908,
|
||||
"collisionCount": 1615616035,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "靌瀞鈝Ń¥厀Ł8Ì",
|
||||
"status": "",
|
||||
"lastTransitionTime": "2456-08-06T13:26:39Z",
|
||||
"type": "Ď眊:YĹ爩í鬯濴VǕ癶L浼",
|
||||
"status": "@p$ÖTő净湅oĒ弦}C嚰s9",
|
||||
"lastTransitionTime": "2668-07-22T09:34:16Z",
|
||||
"reason": "459",
|
||||
"message": "460"
|
||||
}
|
||||
|
Binary file not shown.
@ -30,9 +30,9 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣
|
||||
podManagementPolicy: 冒ƖƦɼ橈"Ĩ媻ʪdž澆
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: 69142596
|
||||
revisionHistoryLimit: 51542630
|
||||
selector:
|
||||
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
|
||||
@ -719,6 +719,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -941,84 +942,84 @@ spec:
|
||||
volumePath: "101"
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
partition: 86666826
|
||||
type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ
|
||||
partition: -1774432721
|
||||
type: ƍ\溮Ŀ傜NZ!šZ_
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
annotations:
|
||||
"433": "434"
|
||||
clusterName: "439"
|
||||
creationTimestamp: null
|
||||
deletionGracePeriodSeconds: -1824067601569574665
|
||||
deletionGracePeriodSeconds: 6041236524714316269
|
||||
finalizers:
|
||||
- "438"
|
||||
generateName: "427"
|
||||
generation: -8502907933203165744
|
||||
generation: -4846338476256404591
|
||||
labels:
|
||||
"431": "432"
|
||||
managedFields:
|
||||
- apiVersion: "441"
|
||||
fieldsType: "442"
|
||||
manager: "440"
|
||||
operation: Bi攵&ý"ʀ废査Z綶Ā
|
||||
operation: ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄
|
||||
name: "426"
|
||||
namespace: "428"
|
||||
ownerReferences:
|
||||
- apiVersion: "435"
|
||||
blockOwnerDeletion: false
|
||||
controller: true
|
||||
controller: false
|
||||
kind: "436"
|
||||
name: "437"
|
||||
uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ
|
||||
resourceVersion: "6281861817195808867"
|
||||
uid: ƄZ
|
||||
resourceVersion: "8774564298362452033"
|
||||
selfLink: "429"
|
||||
uid: '`ȗ<8^翜T蘈'
|
||||
uid: 瞯å檳ė>c緍
|
||||
spec:
|
||||
accessModes:
|
||||
- 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū
|
||||
- Ƣǟ½灶du汎mō6µɑ`ȗ<8^翜T
|
||||
dataSource:
|
||||
apiGroup: "451"
|
||||
kind: "452"
|
||||
name: "453"
|
||||
resources:
|
||||
limits:
|
||||
'O^:': "847"
|
||||
蒸CƅR8ɷ|恫f籽: "139"
|
||||
requests:
|
||||
Ɍ蚊ơ鎊t潑: "199"
|
||||
"": "380"
|
||||
selector:
|
||||
matchExpressions:
|
||||
- key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv
|
||||
operator: Exists
|
||||
- key: oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T
|
||||
operator: DoesNotExist
|
||||
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"
|
||||
volumeMode: ȳT
|
||||
volumeMode: ì淵歔
|
||||
volumeName: "449"
|
||||
status:
|
||||
accessModes:
|
||||
- 熔ķ´ʑ潞Ĵ3Q蠯0
|
||||
- ;蛡媈U
|
||||
capacity:
|
||||
\溮Ŀ傜NZ!š: "952"
|
||||
'n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:': "847"
|
||||
conditions:
|
||||
- lastProbeTime: "2252-06-28T22:34:24Z"
|
||||
lastTransitionTime: "1974-04-29T05:51:38Z"
|
||||
- lastProbeTime: "2237-12-11T16:15:26Z"
|
||||
lastTransitionTime: "2926-09-20T14:30:14Z"
|
||||
message: "455"
|
||||
reason: "454"
|
||||
status: ƿOqõƨj2愴ňù廻@p
|
||||
type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:'
|
||||
phase: 戱PRɄ
|
||||
status: 惃ȳTʬ戱P
|
||||
type: Ɍ蚊ơ鎊t潑
|
||||
phase: d,
|
||||
status:
|
||||
collisionCount: 1664714908
|
||||
collisionCount: 1615616035
|
||||
conditions:
|
||||
- lastTransitionTime: "2456-08-06T13:26:39Z"
|
||||
- lastTransitionTime: "2668-07-22T09:34:16Z"
|
||||
message: "460"
|
||||
reason: "459"
|
||||
status: ""
|
||||
type: 靌瀞鈝Ń¥厀Ł8Ì
|
||||
currentReplicas: -2011137790
|
||||
status: '@p$ÖTő净湅oĒ弦}C嚰s9'
|
||||
type: Ď眊:YĹ爩í鬯濴VǕ癶L浼
|
||||
currentReplicas: 1562316216
|
||||
currentRevision: "457"
|
||||
observedGeneration: 8145135462833081718
|
||||
readyReplicas: -1470626063
|
||||
replicas: -1589158932
|
||||
observedGeneration: -2780555863272013359
|
||||
readyReplicas: 1591188280
|
||||
replicas: -1607291056
|
||||
updateRevision: "458"
|
||||
updatedReplicas: -126896219
|
||||
updatedReplicas: -292741450
|
||||
|
@ -1378,32 +1378,34 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": true
|
||||
}
|
||||
},
|
||||
"updateStrategy": {
|
||||
"type": "))e×鄞閆N钮Ǒ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 997447044,
|
||||
"revisionHistoryLimit": 989524452
|
||||
"minReadySeconds": -1521312599,
|
||||
"revisionHistoryLimit": 554881301
|
||||
},
|
||||
"status": {
|
||||
"currentNumberScheduled": 1606858231,
|
||||
"numberMisscheduled": 1791868025,
|
||||
"desiredNumberScheduled": -793692762,
|
||||
"numberReady": -1152625369,
|
||||
"observedGeneration": 3839991706170762113,
|
||||
"updatedNumberScheduled": -1292943463,
|
||||
"numberAvailable": -1734448297,
|
||||
"numberUnavailable": -1757575936,
|
||||
"collisionCount": 129237050,
|
||||
"currentNumberScheduled": 687719923,
|
||||
"numberMisscheduled": -1777921334,
|
||||
"desiredNumberScheduled": -2022058870,
|
||||
"numberReady": 283054026,
|
||||
"observedGeneration": 9202522069332337259,
|
||||
"updatedNumberScheduled": -691360969,
|
||||
"numberAvailable": 1090884237,
|
||||
"numberUnavailable": -1303432952,
|
||||
"collisionCount": -434531243,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö",
|
||||
"status": "2ț",
|
||||
"lastTransitionTime": "2733-02-09T15:36:31Z",
|
||||
"type": "",
|
||||
"status": "B/ü橚2ț}¹旛坷硂",
|
||||
"lastTransitionTime": "2776-12-09T00:48:05Z",
|
||||
"reason": "433",
|
||||
"message": "434"
|
||||
}
|
||||
|
Binary file not shown.
@ -30,8 +30,8 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 997447044
|
||||
revisionHistoryLimit: 989524452
|
||||
minReadySeconds: -1521312599
|
||||
revisionHistoryLimit: 554881301
|
||||
selector:
|
||||
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
|
||||
@ -725,6 +725,7 @@ spec:
|
||||
runAsUserName: "369"
|
||||
serviceAccount: "361"
|
||||
serviceAccountName: "360"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: true
|
||||
subdomain: "374"
|
||||
terminationGracePeriodSeconds: -3039830979334099524
|
||||
@ -947,19 +948,20 @@ spec:
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 2
|
||||
type: ))e×鄞閆N钮Ǒ
|
||||
status:
|
||||
collisionCount: 129237050
|
||||
collisionCount: -434531243
|
||||
conditions:
|
||||
- lastTransitionTime: "2733-02-09T15:36:31Z"
|
||||
- lastTransitionTime: "2776-12-09T00:48:05Z"
|
||||
message: "434"
|
||||
reason: "433"
|
||||
status: 2ț
|
||||
type: '{ɦ!f親ʚ«Ǥ栌Ə侷ŧĞö'
|
||||
currentNumberScheduled: 1606858231
|
||||
desiredNumberScheduled: -793692762
|
||||
numberAvailable: -1734448297
|
||||
numberMisscheduled: 1791868025
|
||||
numberReady: -1152625369
|
||||
numberUnavailable: -1757575936
|
||||
observedGeneration: 3839991706170762113
|
||||
updatedNumberScheduled: -1292943463
|
||||
status: B/ü橚2ț}¹旛坷硂
|
||||
type: ""
|
||||
currentNumberScheduled: 687719923
|
||||
desiredNumberScheduled: -2022058870
|
||||
numberAvailable: 1090884237
|
||||
numberMisscheduled: -1777921334
|
||||
numberReady: 283054026
|
||||
numberUnavailable: -1303432952
|
||||
observedGeneration: 9202522069332337259
|
||||
updatedNumberScheduled: -691360969
|
||||
|
@ -1371,37 +1371,38 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"strategy": {
|
||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
||||
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2,
|
||||
"maxSurge": 3
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 212061711,
|
||||
"revisionHistoryLimit": -1092090658,
|
||||
"progressDeadlineSeconds": -1707056814
|
||||
"minReadySeconds": 696654600,
|
||||
"revisionHistoryLimit": 407742062,
|
||||
"progressDeadlineSeconds": 902022378
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 2992108727478230062,
|
||||
"replicas": 407742062,
|
||||
"updatedReplicas": 2115789304,
|
||||
"readyReplicas": 902022378,
|
||||
"availableReplicas": 1660081568,
|
||||
"unavailableReplicas": 904244563,
|
||||
"observedGeneration": -3992059348490463840,
|
||||
"replicas": 904244563,
|
||||
"updatedReplicas": -1245696932,
|
||||
"readyReplicas": -1512660030,
|
||||
"availableReplicas": -655315199,
|
||||
"unavailableReplicas": -918184784,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "洅啶",
|
||||
"status": "Ƅ抄3昞财Î嘝zʄ",
|
||||
"lastUpdateTime": "2524-02-08T04:27:05Z",
|
||||
"lastTransitionTime": "2146-08-16T07:05:27Z",
|
||||
"type": "oIǢ龞瞯å檳ė\u003ec緍k¢茤Ƣǟ½灶",
|
||||
"status": "査Z綶ĀRġ磸",
|
||||
"lastUpdateTime": "2631-04-27T22:00:28Z",
|
||||
"lastTransitionTime": "2196-03-13T21:02:11Z",
|
||||
"reason": "426",
|
||||
"message": "427"
|
||||
}
|
||||
],
|
||||
"collisionCount": -1977467928
|
||||
"collisionCount": -1914221188
|
||||
}
|
||||
}
|
Binary file not shown.
@ -30,10 +30,10 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 212061711
|
||||
progressDeadlineSeconds: -1707056814
|
||||
minReadySeconds: 696654600
|
||||
progressDeadlineSeconds: 902022378
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: -1092090658
|
||||
revisionHistoryLimit: 407742062
|
||||
selector:
|
||||
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
|
||||
@ -44,7 +44,7 @@ spec:
|
||||
rollingUpdate:
|
||||
maxSurge: 3
|
||||
maxUnavailable: 2
|
||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
||||
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
@ -724,6 +724,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -945,17 +946,17 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: 1660081568
|
||||
collisionCount: -1977467928
|
||||
availableReplicas: -655315199
|
||||
collisionCount: -1914221188
|
||||
conditions:
|
||||
- lastTransitionTime: "2146-08-16T07:05:27Z"
|
||||
lastUpdateTime: "2524-02-08T04:27:05Z"
|
||||
- lastTransitionTime: "2196-03-13T21:02:11Z"
|
||||
lastUpdateTime: "2631-04-27T22:00:28Z"
|
||||
message: "427"
|
||||
reason: "426"
|
||||
status: Ƅ抄3昞财Î嘝zʄ
|
||||
type: 洅啶
|
||||
observedGeneration: 2992108727478230062
|
||||
readyReplicas: 902022378
|
||||
replicas: 407742062
|
||||
unavailableReplicas: 904244563
|
||||
updatedReplicas: 2115789304
|
||||
status: 査Z綶ĀRġ磸
|
||||
type: oIǢ龞瞯å檳ė>c緍k¢茤Ƣǟ½灶
|
||||
observedGeneration: -3992059348490463840
|
||||
readyReplicas: -1512660030
|
||||
replicas: 904244563
|
||||
unavailableReplicas: -918184784
|
||||
updatedReplicas: -1245696932
|
||||
|
@ -1378,21 +1378,22 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"replicas": -1165029050,
|
||||
"fullyLabeledReplicas": 1893057016,
|
||||
"readyReplicas": -2099726885,
|
||||
"availableReplicas": -928976522,
|
||||
"observedGeneration": 702392770146794584,
|
||||
"replicas": 1893057016,
|
||||
"fullyLabeledReplicas": -2099726885,
|
||||
"readyReplicas": -928976522,
|
||||
"availableReplicas": -983106472,
|
||||
"observedGeneration": 4693783954739913971,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "暁×軓鼐嵱宯ÙQ阉(闒ƈƳ",
|
||||
"status": "ű孖站畦f黹ʩ鹸ɷ",
|
||||
"lastTransitionTime": "2233-10-15T01:58:37Z",
|
||||
"type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ",
|
||||
"status": "站畦f黹ʩ鹸ɷLȋ",
|
||||
"lastTransitionTime": "2376-03-18T02:40:44Z",
|
||||
"reason": "434",
|
||||
"message": "435"
|
||||
}
|
||||
|
Binary file not shown.
@ -721,6 +721,7 @@ spec:
|
||||
runAsUserName: "370"
|
||||
serviceAccount: "362"
|
||||
serviceAccountName: "361"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: true
|
||||
subdomain: "375"
|
||||
terminationGracePeriodSeconds: 2666412258966278206
|
||||
@ -941,14 +942,14 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: -928976522
|
||||
availableReplicas: -983106472
|
||||
conditions:
|
||||
- lastTransitionTime: "2233-10-15T01:58:37Z"
|
||||
- lastTransitionTime: "2376-03-18T02:40:44Z"
|
||||
message: "435"
|
||||
reason: "434"
|
||||
status: ű孖站畦f黹ʩ鹸ɷ
|
||||
type: 暁×軓鼐嵱宯ÙQ阉(闒ƈƳ
|
||||
fullyLabeledReplicas: 1893057016
|
||||
observedGeneration: 702392770146794584
|
||||
readyReplicas: -2099726885
|
||||
replicas: -1165029050
|
||||
status: 站畦f黹ʩ鹸ɷLȋ
|
||||
type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ
|
||||
fullyLabeledReplicas: -2099726885
|
||||
observedGeneration: 4693783954739913971
|
||||
readyReplicas: -928976522
|
||||
replicas: 1893057016
|
||||
|
@ -1371,7 +1371,8 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"volumeClaimTemplates": [
|
||||
@ -1381,11 +1382,11 @@
|
||||
"generateName": "427",
|
||||
"namespace": "428",
|
||||
"selfLink": "429",
|
||||
"uid": "`ȗ\u003c8^翜T蘈",
|
||||
"resourceVersion": "6281861817195808867",
|
||||
"generation": -8502907933203165744,
|
||||
"uid": "瞯å檳ė\u003ec緍",
|
||||
"resourceVersion": "8774564298362452033",
|
||||
"generation": -4846338476256404591,
|
||||
"creationTimestamp": null,
|
||||
"deletionGracePeriodSeconds": -1824067601569574665,
|
||||
"deletionGracePeriodSeconds": 6041236524714316269,
|
||||
"labels": {
|
||||
"431": "432"
|
||||
},
|
||||
@ -1397,8 +1398,8 @@
|
||||
"apiVersion": "435",
|
||||
"kind": "436",
|
||||
"name": "437",
|
||||
"uid": "WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ",
|
||||
"controller": true,
|
||||
"uid": "ƄZ",
|
||||
"controller": false,
|
||||
"blockOwnerDeletion": false
|
||||
}
|
||||
],
|
||||
@ -1409,7 +1410,7 @@
|
||||
"managedFields": [
|
||||
{
|
||||
"manager": "440",
|
||||
"operation": "Bi攵\u0026ý\"ʀ废査Z綶Ā",
|
||||
"operation": "ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄",
|
||||
"apiVersion": "441",
|
||||
"fieldsType": "442"
|
||||
}
|
||||
@ -1417,30 +1418,30 @@
|
||||
},
|
||||
"spec": {
|
||||
"accessModes": [
|
||||
"銲tHǽ÷閂抰^窄CǙķȈĐI梞ū"
|
||||
"Ƣǟ½灶du汎mō6µɑ`ȗ\u003c8^翜T"
|
||||
],
|
||||
"selector": {
|
||||
"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": [
|
||||
{
|
||||
"key": "f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv",
|
||||
"operator": "Exists"
|
||||
"key": "oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T",
|
||||
"operator": "DoesNotExist"
|
||||
}
|
||||
]
|
||||
},
|
||||
"resources": {
|
||||
"limits": {
|
||||
"O^:": "847"
|
||||
"蒸CƅR8ɷ|恫f籽": "139"
|
||||
},
|
||||
"requests": {
|
||||
"Ɍ蚊ơ鎊t潑": "199"
|
||||
"": "380"
|
||||
}
|
||||
},
|
||||
"volumeName": "449",
|
||||
"storageClassName": "450",
|
||||
"volumeMode": "ȳT",
|
||||
"volumeMode": "ì淵歔",
|
||||
"dataSource": {
|
||||
"apiGroup": "451",
|
||||
"kind": "452",
|
||||
@ -1448,19 +1449,19 @@
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"phase": "戱PRɄ",
|
||||
"phase": "d,",
|
||||
"accessModes": [
|
||||
"熔ķ´ʑ潞Ĵ3Q蠯0"
|
||||
";蛡媈U"
|
||||
],
|
||||
"capacity": {
|
||||
"\\溮Ŀ傜NZ!š": "952"
|
||||
"n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:": "847"
|
||||
},
|
||||
"conditions": [
|
||||
{
|
||||
"type": "僙R岹ÿʼnx#綮ehɫ淫Ď眊:",
|
||||
"status": "ƿOqõƨj2愴ňù廻@p",
|
||||
"lastProbeTime": "2252-06-28T22:34:24Z",
|
||||
"lastTransitionTime": "1974-04-29T05:51:38Z",
|
||||
"type": "Ɍ蚊ơ鎊t潑",
|
||||
"status": "惃ȳTʬ戱P",
|
||||
"lastProbeTime": "2237-12-11T16:15:26Z",
|
||||
"lastTransitionTime": "2926-09-20T14:30:14Z",
|
||||
"reason": "454",
|
||||
"message": "455"
|
||||
}
|
||||
@ -1469,29 +1470,29 @@
|
||||
}
|
||||
],
|
||||
"serviceName": "456",
|
||||
"podManagementPolicy": "ŞÜ4w}ĶƲ86±ļ$暣",
|
||||
"podManagementPolicy": "冒ƖƦɼ橈\"Ĩ媻ʪdž澆",
|
||||
"updateStrategy": {
|
||||
"type": "Dz讱ȕ齐疅檎ǽ曖sƖTƫ",
|
||||
"type": "ƍ\\溮Ŀ傜NZ!šZ_",
|
||||
"rollingUpdate": {
|
||||
"partition": 86666826
|
||||
"partition": -1774432721
|
||||
}
|
||||
},
|
||||
"revisionHistoryLimit": 69142596
|
||||
"revisionHistoryLimit": 51542630
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 3474169154658456972,
|
||||
"replicas": 1449104338,
|
||||
"readyReplicas": 2037461401,
|
||||
"currentReplicas": -1847673756,
|
||||
"updatedReplicas": 154782591,
|
||||
"observedGeneration": 4970381117743528748,
|
||||
"replicas": 1736529625,
|
||||
"readyReplicas": 1972352681,
|
||||
"currentReplicas": -727089824,
|
||||
"updatedReplicas": -2068243724,
|
||||
"currentRevision": "457",
|
||||
"updateRevision": "458",
|
||||
"collisionCount": 341287797,
|
||||
"collisionCount": -1807803289,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "ÆŁĪŀc=Ƨz鈡煰敹xŪO",
|
||||
"status": "ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+",
|
||||
"lastTransitionTime": "2493-11-15T11:08:04Z",
|
||||
"type": "!轅諑",
|
||||
"status": "YĹ爩",
|
||||
"lastTransitionTime": "2544-05-05T21:53:33Z",
|
||||
"reason": "459",
|
||||
"message": "460"
|
||||
}
|
||||
|
Binary file not shown.
@ -30,9 +30,9 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
podManagementPolicy: ŞÜ4w}ĶƲ86±ļ$暣
|
||||
podManagementPolicy: 冒ƖƦɼ橈"Ĩ媻ʪdž澆
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: 69142596
|
||||
revisionHistoryLimit: 51542630
|
||||
selector:
|
||||
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
|
||||
@ -719,6 +719,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -941,84 +942,84 @@ spec:
|
||||
volumePath: "101"
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
partition: 86666826
|
||||
type: Dz讱ȕ齐疅檎ǽ曖sƖTƫ
|
||||
partition: -1774432721
|
||||
type: ƍ\溮Ŀ傜NZ!šZ_
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
annotations:
|
||||
"433": "434"
|
||||
clusterName: "439"
|
||||
creationTimestamp: null
|
||||
deletionGracePeriodSeconds: -1824067601569574665
|
||||
deletionGracePeriodSeconds: 6041236524714316269
|
||||
finalizers:
|
||||
- "438"
|
||||
generateName: "427"
|
||||
generation: -8502907933203165744
|
||||
generation: -4846338476256404591
|
||||
labels:
|
||||
"431": "432"
|
||||
managedFields:
|
||||
- apiVersion: "441"
|
||||
fieldsType: "442"
|
||||
manager: "440"
|
||||
operation: Bi攵&ý"ʀ废査Z綶Ā
|
||||
operation: ʘLD宊獟¡鯩WɓDɏ挭跡Ƅ抄
|
||||
name: "426"
|
||||
namespace: "428"
|
||||
ownerReferences:
|
||||
- apiVersion: "435"
|
||||
blockOwnerDeletion: false
|
||||
controller: true
|
||||
controller: false
|
||||
kind: "436"
|
||||
name: "437"
|
||||
uid: WɓDɏ挭跡Ƅ抄3昞财Î嘝zʄ
|
||||
resourceVersion: "6281861817195808867"
|
||||
uid: ƄZ
|
||||
resourceVersion: "8774564298362452033"
|
||||
selfLink: "429"
|
||||
uid: '`ȗ<8^翜T蘈'
|
||||
uid: 瞯å檳ė>c緍
|
||||
spec:
|
||||
accessModes:
|
||||
- 銲tHǽ÷閂抰^窄CǙķȈĐI梞ū
|
||||
- Ƣǟ½灶du汎mō6µɑ`ȗ<8^翜T
|
||||
dataSource:
|
||||
apiGroup: "451"
|
||||
kind: "452"
|
||||
name: "453"
|
||||
resources:
|
||||
limits:
|
||||
'O^:': "847"
|
||||
蒸CƅR8ɷ|恫f籽: "139"
|
||||
requests:
|
||||
Ɍ蚊ơ鎊t潑: "199"
|
||||
"": "380"
|
||||
selector:
|
||||
matchExpressions:
|
||||
- key: f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zv
|
||||
operator: Exists
|
||||
- key: oq0o90--g-09--d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d014/6.T
|
||||
operator: DoesNotExist
|
||||
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"
|
||||
volumeMode: ȳT
|
||||
volumeMode: ì淵歔
|
||||
volumeName: "449"
|
||||
status:
|
||||
accessModes:
|
||||
- 熔ķ´ʑ潞Ĵ3Q蠯0
|
||||
- ;蛡媈U
|
||||
capacity:
|
||||
\溮Ŀ傜NZ!š: "952"
|
||||
'n夬LJ:BŐ埑Ô*ɾWȖ韝ƉşʁO^:': "847"
|
||||
conditions:
|
||||
- lastProbeTime: "2252-06-28T22:34:24Z"
|
||||
lastTransitionTime: "1974-04-29T05:51:38Z"
|
||||
- lastProbeTime: "2237-12-11T16:15:26Z"
|
||||
lastTransitionTime: "2926-09-20T14:30:14Z"
|
||||
message: "455"
|
||||
reason: "454"
|
||||
status: ƿOqõƨj2愴ňù廻@p
|
||||
type: '僙R岹ÿʼnx#綮ehɫ淫Ď眊:'
|
||||
phase: 戱PRɄ
|
||||
status: 惃ȳTʬ戱P
|
||||
type: Ɍ蚊ơ鎊t潑
|
||||
phase: d,
|
||||
status:
|
||||
collisionCount: 341287797
|
||||
collisionCount: -1807803289
|
||||
conditions:
|
||||
- lastTransitionTime: "2493-11-15T11:08:04Z"
|
||||
- lastTransitionTime: "2544-05-05T21:53:33Z"
|
||||
message: "460"
|
||||
reason: "459"
|
||||
status: ő+aò¼箰ð祛?扄鰀G抉ȪĠʩ崯ɋ+
|
||||
type: ÆŁĪŀc=Ƨz鈡煰敹xŪO
|
||||
currentReplicas: -1847673756
|
||||
status: YĹ爩
|
||||
type: '!轅諑'
|
||||
currentReplicas: -727089824
|
||||
currentRevision: "457"
|
||||
observedGeneration: 3474169154658456972
|
||||
readyReplicas: 2037461401
|
||||
replicas: 1449104338
|
||||
observedGeneration: 4970381117743528748
|
||||
readyReplicas: 1972352681
|
||||
replicas: 1736529625
|
||||
updateRevision: "458"
|
||||
updatedReplicas: 154782591
|
||||
updatedReplicas: -2068243724
|
||||
|
@ -1375,24 +1375,25 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"ttlSecondsAfterFinished": -596285123
|
||||
"ttlSecondsAfterFinished": -95236670
|
||||
},
|
||||
"status": {
|
||||
"conditions": [
|
||||
{
|
||||
"type": "續-ÚŜĂwǐ擨^幸$Ż料",
|
||||
"status": "色苆试揯遐e",
|
||||
"lastProbeTime": "2947-08-17T19:40:02Z",
|
||||
"lastTransitionTime": "2374-06-16T11:34:18Z",
|
||||
"type": "-ÚŜĂwǐ擨^幸$Ż料ȭz",
|
||||
"status": "试揯遐e4'ď曕椐敛n",
|
||||
"lastProbeTime": "2740-10-14T09:28:06Z",
|
||||
"lastTransitionTime": "2133-04-18T01:37:37Z",
|
||||
"reason": "430",
|
||||
"message": "431"
|
||||
}
|
||||
],
|
||||
"active": 1921346963,
|
||||
"succeeded": 135144999,
|
||||
"failed": 1357487443
|
||||
"active": -68737405,
|
||||
"succeeded": -150478704,
|
||||
"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"
|
||||
serviceAccount: "358"
|
||||
serviceAccountName: "357"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "371"
|
||||
terminationGracePeriodSeconds: -4333562938396485230
|
||||
@ -939,15 +940,15 @@ spec:
|
||||
storagePolicyID: "104"
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
ttlSecondsAfterFinished: -596285123
|
||||
ttlSecondsAfterFinished: -95236670
|
||||
status:
|
||||
active: 1921346963
|
||||
active: -68737405
|
||||
conditions:
|
||||
- lastProbeTime: "2947-08-17T19:40:02Z"
|
||||
lastTransitionTime: "2374-06-16T11:34:18Z"
|
||||
- lastProbeTime: "2740-10-14T09:28:06Z"
|
||||
lastTransitionTime: "2133-04-18T01:37:37Z"
|
||||
message: "431"
|
||||
reason: "430"
|
||||
status: 色苆试揯遐e
|
||||
type: 續-ÚŜĂwǐ擨^幸$Ż料
|
||||
failed: 1357487443
|
||||
succeeded: 135144999
|
||||
status: 试揯遐e4'ď曕椐敛n
|
||||
type: -ÚŜĂwǐ擨^幸$Ż料ȭz
|
||||
failed: 315828133
|
||||
succeeded: -150478704
|
||||
|
@ -1425,14 +1425,15 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"ttlSecondsAfterFinished": -1754419098
|
||||
"ttlSecondsAfterFinished": 1530007970
|
||||
}
|
||||
},
|
||||
"successfulJobsHistoryLimit": -2099726885,
|
||||
"failedJobsHistoryLimit": 163538560
|
||||
"successfulJobsHistoryLimit": -928976522,
|
||||
"failedJobsHistoryLimit": 1092856739
|
||||
},
|
||||
"status": {
|
||||
"active": [
|
||||
@ -1440,7 +1441,7 @@
|
||||
"kind": "447",
|
||||
"namespace": "448",
|
||||
"name": "449",
|
||||
"uid": "ɦ?鮻ȧH僠 \u0026G",
|
||||
"uid": "?鮻ȧH僠 \u0026G凒罹ń賎Ȍű孖站",
|
||||
"apiVersion": "450",
|
||||
"resourceVersion": "451",
|
||||
"fieldPath": "452"
|
||||
|
Binary file not shown.
@ -31,7 +31,7 @@ metadata:
|
||||
uid: "7"
|
||||
spec:
|
||||
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
|
||||
failedJobsHistoryLimit: 163538560
|
||||
failedJobsHistoryLimit: 1092856739
|
||||
jobTemplate:
|
||||
metadata:
|
||||
annotations:
|
||||
@ -757,6 +757,7 @@ spec:
|
||||
runAsUserName: "383"
|
||||
serviceAccount: "375"
|
||||
serviceAccountName: "374"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: true
|
||||
subdomain: "388"
|
||||
terminationGracePeriodSeconds: 2666412258966278206
|
||||
@ -976,10 +977,10 @@ spec:
|
||||
storagePolicyID: "122"
|
||||
storagePolicyName: "121"
|
||||
volumePath: "119"
|
||||
ttlSecondsAfterFinished: -1754419098
|
||||
ttlSecondsAfterFinished: 1530007970
|
||||
schedule: "19"
|
||||
startingDeadlineSeconds: -2555947251840004808
|
||||
successfulJobsHistoryLimit: -2099726885
|
||||
successfulJobsHistoryLimit: -928976522
|
||||
suspend: true
|
||||
status:
|
||||
active:
|
||||
@ -989,4 +990,4 @@ status:
|
||||
name: "449"
|
||||
namespace: "448"
|
||||
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"
|
||||
serviceAccount: "371"
|
||||
serviceAccountName: "370"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: true
|
||||
subdomain: "384"
|
||||
terminationGracePeriodSeconds: -3123571459188372202
|
||||
@ -977,4 +978,4 @@ template:
|
||||
storagePolicyID: "121"
|
||||
storagePolicyName: "120"
|
||||
volumePath: "118"
|
||||
ttlSecondsAfterFinished: -1746367307
|
||||
ttlSecondsAfterFinished: -82488142
|
||||
|
@ -1425,14 +1425,15 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"ttlSecondsAfterFinished": -1754419098
|
||||
"ttlSecondsAfterFinished": 1530007970
|
||||
}
|
||||
},
|
||||
"successfulJobsHistoryLimit": -2099726885,
|
||||
"failedJobsHistoryLimit": 163538560
|
||||
"successfulJobsHistoryLimit": -928976522,
|
||||
"failedJobsHistoryLimit": 1092856739
|
||||
},
|
||||
"status": {
|
||||
"active": [
|
||||
@ -1440,7 +1441,7 @@
|
||||
"kind": "447",
|
||||
"namespace": "448",
|
||||
"name": "449",
|
||||
"uid": "ɦ?鮻ȧH僠 \u0026G",
|
||||
"uid": "?鮻ȧH僠 \u0026G凒罹ń賎Ȍű孖站",
|
||||
"apiVersion": "450",
|
||||
"resourceVersion": "451",
|
||||
"fieldPath": "452"
|
||||
|
Binary file not shown.
@ -31,7 +31,7 @@ metadata:
|
||||
uid: "7"
|
||||
spec:
|
||||
concurrencyPolicy: Hr鯹)晿<o,c鮽ort昍řČ扷5Ɨ
|
||||
failedJobsHistoryLimit: 163538560
|
||||
failedJobsHistoryLimit: 1092856739
|
||||
jobTemplate:
|
||||
metadata:
|
||||
annotations:
|
||||
@ -757,6 +757,7 @@ spec:
|
||||
runAsUserName: "383"
|
||||
serviceAccount: "375"
|
||||
serviceAccountName: "374"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: true
|
||||
subdomain: "388"
|
||||
terminationGracePeriodSeconds: 2666412258966278206
|
||||
@ -976,10 +977,10 @@ spec:
|
||||
storagePolicyID: "122"
|
||||
storagePolicyName: "121"
|
||||
volumePath: "119"
|
||||
ttlSecondsAfterFinished: -1754419098
|
||||
ttlSecondsAfterFinished: 1530007970
|
||||
schedule: "19"
|
||||
startingDeadlineSeconds: -2555947251840004808
|
||||
successfulJobsHistoryLimit: -2099726885
|
||||
successfulJobsHistoryLimit: -928976522
|
||||
suspend: true
|
||||
status:
|
||||
active:
|
||||
@ -989,4 +990,4 @@ status:
|
||||
name: "449"
|
||||
namespace: "448"
|
||||
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"
|
||||
serviceAccount: "371"
|
||||
serviceAccountName: "370"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: true
|
||||
subdomain: "384"
|
||||
terminationGracePeriodSeconds: -3123571459188372202
|
||||
@ -977,4 +978,4 @@ template:
|
||||
storagePolicyID: "121"
|
||||
storagePolicyName: "120"
|
||||
volumePath: "118"
|
||||
ttlSecondsAfterFinished: -1746367307
|
||||
ttlSecondsAfterFinished: -82488142
|
||||
|
@ -1316,16 +1316,17 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": true
|
||||
},
|
||||
"status": {
|
||||
"phase": "ș",
|
||||
"phase": "l",
|
||||
"conditions": [
|
||||
{
|
||||
"type": "ļė[BN柌ë娒汙查o*Ĵ麻齔試",
|
||||
"status": "昒",
|
||||
"lastProbeTime": "2756-02-27T11:08:58Z",
|
||||
"lastTransitionTime": "2296-12-01T04:10:44Z",
|
||||
"type": "ė[BN柌ë娒汙查o",
|
||||
"status": "pɉ驻(+",
|
||||
"lastProbeTime": "2645-05-22T09:25:47Z",
|
||||
"lastTransitionTime": "2090-10-18T11:24:27Z",
|
||||
"reason": "408",
|
||||
"message": "409"
|
||||
}
|
||||
@ -1349,15 +1350,15 @@
|
||||
"message": "418"
|
||||
},
|
||||
"running": {
|
||||
"startedAt": "1972-12-08T08:30:11Z"
|
||||
"startedAt": "2048-05-20T12:15:51Z"
|
||||
},
|
||||
"terminated": {
|
||||
"exitCode": -1817503524,
|
||||
"signal": 1558801645,
|
||||
"exitCode": 115522160,
|
||||
"signal": -1817503524,
|
||||
"reason": "419",
|
||||
"message": "420",
|
||||
"startedAt": "2746-03-08T01:39:40Z",
|
||||
"finishedAt": "2341-12-07T04:14:17Z",
|
||||
"startedAt": "2219-02-28T09:09:45Z",
|
||||
"finishedAt": "2741-03-13T06:24:49Z",
|
||||
"containerID": "421"
|
||||
}
|
||||
},
|
||||
@ -1367,20 +1368,20 @@
|
||||
"message": "423"
|
||||
},
|
||||
"running": {
|
||||
"startedAt": "2329-01-28T22:43:42Z"
|
||||
"startedAt": "2162-06-26T19:07:06Z"
|
||||
},
|
||||
"terminated": {
|
||||
"exitCode": -545370104,
|
||||
"signal": 1235883803,
|
||||
"exitCode": -710202728,
|
||||
"signal": -545370104,
|
||||
"reason": "424",
|
||||
"message": "425",
|
||||
"startedAt": "2419-03-20T05:43:22Z",
|
||||
"finishedAt": "2821-07-19T11:49:26Z",
|
||||
"startedAt": "2714-05-29T12:47:22Z",
|
||||
"finishedAt": "2507-11-24T14:34:53Z",
|
||||
"containerID": "426"
|
||||
}
|
||||
},
|
||||
"ready": true,
|
||||
"restartCount": -810338968,
|
||||
"ready": false,
|
||||
"restartCount": -802664960,
|
||||
"image": "427",
|
||||
"imageID": "428",
|
||||
"containerID": "429",
|
||||
@ -1396,15 +1397,15 @@
|
||||
"message": "432"
|
||||
},
|
||||
"running": {
|
||||
"startedAt": "2403-04-11T00:06:43Z"
|
||||
"startedAt": "2947-07-29T10:08:50Z"
|
||||
},
|
||||
"terminated": {
|
||||
"exitCode": -173761204,
|
||||
"signal": 332998836,
|
||||
"exitCode": 1783825641,
|
||||
"signal": -173761204,
|
||||
"reason": "433",
|
||||
"message": "434",
|
||||
"startedAt": "2196-05-31T08:51:58Z",
|
||||
"finishedAt": "2580-08-27T04:54:10Z",
|
||||
"startedAt": "2522-07-19T12:32:16Z",
|
||||
"finishedAt": "2270-12-17T08:26:56Z",
|
||||
"containerID": "435"
|
||||
}
|
||||
},
|
||||
@ -1414,27 +1415,26 @@
|
||||
"message": "437"
|
||||
},
|
||||
"running": {
|
||||
"startedAt": "2878-09-11T10:26:17Z"
|
||||
"startedAt": "2553-08-13T19:38:34Z"
|
||||
},
|
||||
"terminated": {
|
||||
"exitCode": -1569123121,
|
||||
"signal": 199195373,
|
||||
"exitCode": 1702640464,
|
||||
"signal": -1569123121,
|
||||
"reason": "438",
|
||||
"message": "439",
|
||||
"startedAt": "2873-01-20T06:54:43Z",
|
||||
"finishedAt": "2454-07-07T22:08:36Z",
|
||||
"startedAt": "2208-06-28T06:16:27Z",
|
||||
"finishedAt": "2837-10-14T23:23:27Z",
|
||||
"containerID": "440"
|
||||
}
|
||||
},
|
||||
"ready": false,
|
||||
"restartCount": 568619460,
|
||||
"ready": true,
|
||||
"restartCount": 718205480,
|
||||
"image": "441",
|
||||
"imageID": "442",
|
||||
"containerID": "443",
|
||||
"started": false
|
||||
"started": true
|
||||
}
|
||||
],
|
||||
"qosClass": "刣ȱǍ;ġ縊CkǚŨ",
|
||||
"ephemeralContainerStatuses": [
|
||||
{
|
||||
"name": "444",
|
||||
@ -1444,15 +1444,15 @@
|
||||
"message": "446"
|
||||
},
|
||||
"running": {
|
||||
"startedAt": "2807-07-11T05:23:59Z"
|
||||
"startedAt": "2046-11-30T08:06:33Z"
|
||||
},
|
||||
"terminated": {
|
||||
"exitCode": -496491540,
|
||||
"signal": -1067633812,
|
||||
"exitCode": -1784164316,
|
||||
"signal": -732390892,
|
||||
"reason": "447",
|
||||
"message": "448",
|
||||
"startedAt": "2536-08-25T03:52:32Z",
|
||||
"finishedAt": "2142-06-11T22:09:32Z",
|
||||
"startedAt": "2406-01-16T02:14:15Z",
|
||||
"finishedAt": "2231-01-26T17:02:10Z",
|
||||
"containerID": "449"
|
||||
}
|
||||
},
|
||||
@ -1462,20 +1462,20 @@
|
||||
"message": "451"
|
||||
},
|
||||
"running": {
|
||||
"startedAt": "2890-09-01T10:48:08Z"
|
||||
"startedAt": "2911-12-04T12:23:46Z"
|
||||
},
|
||||
"terminated": {
|
||||
"exitCode": 233999136,
|
||||
"signal": 1701016188,
|
||||
"exitCode": 1555151820,
|
||||
"signal": -1757808404,
|
||||
"reason": "452",
|
||||
"message": "453",
|
||||
"startedAt": "2420-06-19T09:33:57Z",
|
||||
"finishedAt": "2387-07-09T16:21:33Z",
|
||||
"startedAt": "2599-12-06T02:53:25Z",
|
||||
"finishedAt": "2412-02-08T17:08:41Z",
|
||||
"containerID": "454"
|
||||
}
|
||||
},
|
||||
"ready": false,
|
||||
"restartCount": 1730285145,
|
||||
"ready": true,
|
||||
"restartCount": 1615460891,
|
||||
"image": "455",
|
||||
"imageID": "456",
|
||||
"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"
|
||||
serviceAccount: "336"
|
||||
serviceAccountName: "335"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: false
|
||||
subdomain: "349"
|
||||
terminationGracePeriodSeconds: -1689173322096612726
|
||||
@ -898,45 +899,45 @@ spec:
|
||||
volumePath: "78"
|
||||
status:
|
||||
conditions:
|
||||
- lastProbeTime: "2756-02-27T11:08:58Z"
|
||||
lastTransitionTime: "2296-12-01T04:10:44Z"
|
||||
- lastProbeTime: "2645-05-22T09:25:47Z"
|
||||
lastTransitionTime: "2090-10-18T11:24:27Z"
|
||||
message: "409"
|
||||
reason: "408"
|
||||
status: 昒
|
||||
type: ļė[BN柌ë娒汙查o*Ĵ麻齔試
|
||||
status: pɉ驻(+
|
||||
type: ė[BN柌ë娒汙查o
|
||||
containerStatuses:
|
||||
- containerID: "443"
|
||||
image: "441"
|
||||
imageID: "442"
|
||||
lastState:
|
||||
running:
|
||||
startedAt: "2878-09-11T10:26:17Z"
|
||||
startedAt: "2553-08-13T19:38:34Z"
|
||||
terminated:
|
||||
containerID: "440"
|
||||
exitCode: -1569123121
|
||||
finishedAt: "2454-07-07T22:08:36Z"
|
||||
exitCode: 1702640464
|
||||
finishedAt: "2837-10-14T23:23:27Z"
|
||||
message: "439"
|
||||
reason: "438"
|
||||
signal: 199195373
|
||||
startedAt: "2873-01-20T06:54:43Z"
|
||||
signal: -1569123121
|
||||
startedAt: "2208-06-28T06:16:27Z"
|
||||
waiting:
|
||||
message: "437"
|
||||
reason: "436"
|
||||
name: "430"
|
||||
ready: false
|
||||
restartCount: 568619460
|
||||
started: false
|
||||
ready: true
|
||||
restartCount: 718205480
|
||||
started: true
|
||||
state:
|
||||
running:
|
||||
startedAt: "2403-04-11T00:06:43Z"
|
||||
startedAt: "2947-07-29T10:08:50Z"
|
||||
terminated:
|
||||
containerID: "435"
|
||||
exitCode: -173761204
|
||||
finishedAt: "2580-08-27T04:54:10Z"
|
||||
exitCode: 1783825641
|
||||
finishedAt: "2270-12-17T08:26:56Z"
|
||||
message: "434"
|
||||
reason: "433"
|
||||
signal: 332998836
|
||||
startedAt: "2196-05-31T08:51:58Z"
|
||||
signal: -173761204
|
||||
startedAt: "2522-07-19T12:32:16Z"
|
||||
waiting:
|
||||
message: "432"
|
||||
reason: "431"
|
||||
@ -946,33 +947,33 @@ status:
|
||||
imageID: "456"
|
||||
lastState:
|
||||
running:
|
||||
startedAt: "2890-09-01T10:48:08Z"
|
||||
startedAt: "2911-12-04T12:23:46Z"
|
||||
terminated:
|
||||
containerID: "454"
|
||||
exitCode: 233999136
|
||||
finishedAt: "2387-07-09T16:21:33Z"
|
||||
exitCode: 1555151820
|
||||
finishedAt: "2412-02-08T17:08:41Z"
|
||||
message: "453"
|
||||
reason: "452"
|
||||
signal: 1701016188
|
||||
startedAt: "2420-06-19T09:33:57Z"
|
||||
signal: -1757808404
|
||||
startedAt: "2599-12-06T02:53:25Z"
|
||||
waiting:
|
||||
message: "451"
|
||||
reason: "450"
|
||||
name: "444"
|
||||
ready: false
|
||||
restartCount: 1730285145
|
||||
ready: true
|
||||
restartCount: 1615460891
|
||||
started: true
|
||||
state:
|
||||
running:
|
||||
startedAt: "2807-07-11T05:23:59Z"
|
||||
startedAt: "2046-11-30T08:06:33Z"
|
||||
terminated:
|
||||
containerID: "449"
|
||||
exitCode: -496491540
|
||||
finishedAt: "2142-06-11T22:09:32Z"
|
||||
exitCode: -1784164316
|
||||
finishedAt: "2231-01-26T17:02:10Z"
|
||||
message: "448"
|
||||
reason: "447"
|
||||
signal: -1067633812
|
||||
startedAt: "2536-08-25T03:52:32Z"
|
||||
signal: -732390892
|
||||
startedAt: "2406-01-16T02:14:15Z"
|
||||
waiting:
|
||||
message: "446"
|
||||
reason: "445"
|
||||
@ -983,41 +984,40 @@ status:
|
||||
imageID: "428"
|
||||
lastState:
|
||||
running:
|
||||
startedAt: "2329-01-28T22:43:42Z"
|
||||
startedAt: "2162-06-26T19:07:06Z"
|
||||
terminated:
|
||||
containerID: "426"
|
||||
exitCode: -545370104
|
||||
finishedAt: "2821-07-19T11:49:26Z"
|
||||
exitCode: -710202728
|
||||
finishedAt: "2507-11-24T14:34:53Z"
|
||||
message: "425"
|
||||
reason: "424"
|
||||
signal: 1235883803
|
||||
startedAt: "2419-03-20T05:43:22Z"
|
||||
signal: -545370104
|
||||
startedAt: "2714-05-29T12:47:22Z"
|
||||
waiting:
|
||||
message: "423"
|
||||
reason: "422"
|
||||
name: "416"
|
||||
ready: true
|
||||
restartCount: -810338968
|
||||
ready: false
|
||||
restartCount: -802664960
|
||||
started: false
|
||||
state:
|
||||
running:
|
||||
startedAt: "1972-12-08T08:30:11Z"
|
||||
startedAt: "2048-05-20T12:15:51Z"
|
||||
terminated:
|
||||
containerID: "421"
|
||||
exitCode: -1817503524
|
||||
finishedAt: "2341-12-07T04:14:17Z"
|
||||
exitCode: 115522160
|
||||
finishedAt: "2741-03-13T06:24:49Z"
|
||||
message: "420"
|
||||
reason: "419"
|
||||
signal: 1558801645
|
||||
startedAt: "2746-03-08T01:39:40Z"
|
||||
signal: -1817503524
|
||||
startedAt: "2219-02-28T09:09:45Z"
|
||||
waiting:
|
||||
message: "418"
|
||||
reason: "417"
|
||||
message: "410"
|
||||
nominatedNodeName: "412"
|
||||
phase: ș
|
||||
phase: l
|
||||
podIP: "414"
|
||||
podIPs:
|
||||
- ip: "415"
|
||||
qosClass: 刣ȱǍ;ġ縊CkǚŨ
|
||||
reason: "411"
|
||||
|
@ -1361,7 +1361,8 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": true
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
@ -713,6 +713,7 @@ template:
|
||||
runAsUserName: "357"
|
||||
serviceAccount: "349"
|
||||
serviceAccountName: "348"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: false
|
||||
subdomain: "362"
|
||||
terminationGracePeriodSeconds: -1689173322096612726
|
||||
|
@ -1362,19 +1362,20 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"replicas": -580887468,
|
||||
"fullyLabeledReplicas": 189301373,
|
||||
"readyReplicas": -1235733921,
|
||||
"availableReplicas": -1438616392,
|
||||
"observedGeneration": 7696803627798560212,
|
||||
"replicas": 189301373,
|
||||
"fullyLabeledReplicas": -1235733921,
|
||||
"readyReplicas": -1438616392,
|
||||
"availableReplicas": -1126236716,
|
||||
"observedGeneration": -817442683106980570,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "獰Ĉ癯頯aɴí(Ȟ9\"",
|
||||
"type": "Ĉ癯頯aɴí(Ȟ9\"",
|
||||
"status": "oǰ'źĄ栧焷蜪sÛ°",
|
||||
"lastTransitionTime": "2129-09-06T04:28:43Z",
|
||||
"reason": "429",
|
||||
|
Binary file not shown.
@ -714,6 +714,7 @@ spec:
|
||||
runAsUserName: "365"
|
||||
serviceAccount: "357"
|
||||
serviceAccountName: "356"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: true
|
||||
subdomain: "370"
|
||||
terminationGracePeriodSeconds: -860974700141841896
|
||||
@ -933,14 +934,14 @@ spec:
|
||||
storagePolicyName: "99"
|
||||
volumePath: "97"
|
||||
status:
|
||||
availableReplicas: -1438616392
|
||||
availableReplicas: -1126236716
|
||||
conditions:
|
||||
- lastTransitionTime: "2129-09-06T04:28:43Z"
|
||||
message: "430"
|
||||
reason: "429"
|
||||
status: oǰ'źĄ栧焷蜪sÛ°
|
||||
type: 獰Ĉ癯頯aɴí(Ȟ9"
|
||||
fullyLabeledReplicas: 189301373
|
||||
observedGeneration: 7696803627798560212
|
||||
readyReplicas: -1235733921
|
||||
replicas: -580887468
|
||||
type: Ĉ癯頯aɴí(Ȟ9"
|
||||
fullyLabeledReplicas: -1235733921
|
||||
observedGeneration: -817442683106980570
|
||||
readyReplicas: -1438616392
|
||||
replicas: 189301373
|
||||
|
@ -1378,33 +1378,35 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": true
|
||||
}
|
||||
},
|
||||
"updateStrategy": {
|
||||
"type": "))e×鄞閆N钮Ǒ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 997447044,
|
||||
"templateGeneration": 117144906028254972,
|
||||
"revisionHistoryLimit": 1606858231
|
||||
"minReadySeconds": -1521312599,
|
||||
"templateGeneration": -4945204664217632710,
|
||||
"revisionHistoryLimit": 687719923
|
||||
},
|
||||
"status": {
|
||||
"currentNumberScheduled": 1791868025,
|
||||
"numberMisscheduled": -793692762,
|
||||
"desiredNumberScheduled": -1152625369,
|
||||
"numberReady": -1832836223,
|
||||
"observedGeneration": 289178836781711257,
|
||||
"updatedNumberScheduled": -1734448297,
|
||||
"numberAvailable": -1757575936,
|
||||
"numberUnavailable": -1151395185,
|
||||
"collisionCount": 2022921268,
|
||||
"currentNumberScheduled": -1777921334,
|
||||
"numberMisscheduled": -2022058870,
|
||||
"desiredNumberScheduled": 283054026,
|
||||
"numberReady": -1539366293,
|
||||
"observedGeneration": 5773395124214737719,
|
||||
"updatedNumberScheduled": 1090884237,
|
||||
"numberAvailable": -1303432952,
|
||||
"numberUnavailable": -1708016772,
|
||||
"collisionCount": -1494643176,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "ɦ!",
|
||||
"status": "(XEfê澙凋B/ü橚2ț",
|
||||
"lastTransitionTime": "2733-02-09T15:36:31Z",
|
||||
"type": "ŧĞöZÕW肤 遞Ȼ棉",
|
||||
"status": "浤ɖ緖焿熣$ɒ割婻漛Ǒ僕ʨƌɦ",
|
||||
"lastTransitionTime": "2770-06-01T22:44:21Z",
|
||||
"reason": "433",
|
||||
"message": "434"
|
||||
}
|
||||
|
Binary file not shown.
@ -30,8 +30,8 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 997447044
|
||||
revisionHistoryLimit: 1606858231
|
||||
minReadySeconds: -1521312599
|
||||
revisionHistoryLimit: 687719923
|
||||
selector:
|
||||
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
|
||||
@ -725,6 +725,7 @@ spec:
|
||||
runAsUserName: "369"
|
||||
serviceAccount: "361"
|
||||
serviceAccountName: "360"
|
||||
setHostnameAsFQDN: true
|
||||
shareProcessNamespace: true
|
||||
subdomain: "374"
|
||||
terminationGracePeriodSeconds: -3039830979334099524
|
||||
@ -944,23 +945,24 @@ spec:
|
||||
storagePolicyID: "104"
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
templateGeneration: 117144906028254972
|
||||
templateGeneration: -4945204664217632710
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 2
|
||||
type: ))e×鄞閆N钮Ǒ
|
||||
status:
|
||||
collisionCount: 2022921268
|
||||
collisionCount: -1494643176
|
||||
conditions:
|
||||
- lastTransitionTime: "2733-02-09T15:36:31Z"
|
||||
- lastTransitionTime: "2770-06-01T22:44:21Z"
|
||||
message: "434"
|
||||
reason: "433"
|
||||
status: (XEfê澙凋B/ü橚2ț
|
||||
type: ɦ!
|
||||
currentNumberScheduled: 1791868025
|
||||
desiredNumberScheduled: -1152625369
|
||||
numberAvailable: -1757575936
|
||||
numberMisscheduled: -793692762
|
||||
numberReady: -1832836223
|
||||
numberUnavailable: -1151395185
|
||||
observedGeneration: 289178836781711257
|
||||
updatedNumberScheduled: -1734448297
|
||||
status: 浤ɖ緖焿熣$ɒ割婻漛Ǒ僕ʨƌɦ
|
||||
type: ŧĞöZÕW肤 遞Ȼ棉
|
||||
currentNumberScheduled: -1777921334
|
||||
desiredNumberScheduled: 283054026
|
||||
numberAvailable: -1303432952
|
||||
numberMisscheduled: -2022058870
|
||||
numberReady: -1539366293
|
||||
numberUnavailable: -1708016772
|
||||
observedGeneration: 5773395124214737719
|
||||
updatedNumberScheduled: 1090884237
|
||||
|
@ -1371,40 +1371,41 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
},
|
||||
"strategy": {
|
||||
"type": "荥ơ'禧ǵŊ)TiD¢ƿ媴h5",
|
||||
"type": "ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ",
|
||||
"rollingUpdate": {
|
||||
"maxUnavailable": 2,
|
||||
"maxSurge": 3
|
||||
}
|
||||
},
|
||||
"minReadySeconds": 212061711,
|
||||
"revisionHistoryLimit": -1092090658,
|
||||
"minReadySeconds": 696654600,
|
||||
"revisionHistoryLimit": 407742062,
|
||||
"rollbackTo": {
|
||||
"revision": -318895959020904110
|
||||
"revision": -455484136992029462
|
||||
},
|
||||
"progressDeadlineSeconds": 1109758199
|
||||
"progressDeadlineSeconds": -1450995995
|
||||
},
|
||||
"status": {
|
||||
"observedGeneration": 1751238822830387407,
|
||||
"replicas": -106050665,
|
||||
"updatedReplicas": -929473748,
|
||||
"readyReplicas": -1450995995,
|
||||
"availableReplicas": 740158871,
|
||||
"unavailableReplicas": -449319810,
|
||||
"observedGeneration": 3883700826410970519,
|
||||
"replicas": -449319810,
|
||||
"updatedReplicas": 2063260600,
|
||||
"readyReplicas": -729742317,
|
||||
"availableReplicas": 294718341,
|
||||
"unavailableReplicas": 867742020,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "",
|
||||
"status": "'ƈoIǢ龞瞯å",
|
||||
"lastUpdateTime": "2469-07-10T03:20:34Z",
|
||||
"lastTransitionTime": "1970-05-16T01:44:00Z",
|
||||
"type": "昞财Î嘝zʄ!ć惍Bi攵\u0026ý\"ʀ",
|
||||
"status": "",
|
||||
"lastUpdateTime": "2042-08-25T05:10:04Z",
|
||||
"lastTransitionTime": "2097-04-15T07:29:40Z",
|
||||
"reason": "426",
|
||||
"message": "427"
|
||||
}
|
||||
],
|
||||
"collisionCount": 571778293
|
||||
"collisionCount": -2071091268
|
||||
}
|
||||
}
|
Binary file not shown.
@ -30,12 +30,12 @@ metadata:
|
||||
selfLink: "5"
|
||||
uid: "7"
|
||||
spec:
|
||||
minReadySeconds: 212061711
|
||||
progressDeadlineSeconds: 1109758199
|
||||
minReadySeconds: 696654600
|
||||
progressDeadlineSeconds: -1450995995
|
||||
replicas: 896585016
|
||||
revisionHistoryLimit: -1092090658
|
||||
revisionHistoryLimit: 407742062
|
||||
rollbackTo:
|
||||
revision: -318895959020904110
|
||||
revision: -455484136992029462
|
||||
selector:
|
||||
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
|
||||
@ -46,7 +46,7 @@ spec:
|
||||
rollingUpdate:
|
||||
maxSurge: 3
|
||||
maxUnavailable: 2
|
||||
type: 荥ơ'禧ǵŊ)TiD¢ƿ媴h5
|
||||
type: ơ'禧ǵŊ)TiD¢ƿ媴h5ƅȸȓɻ
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
@ -726,6 +726,7 @@ spec:
|
||||
runAsUserName: "362"
|
||||
serviceAccount: "354"
|
||||
serviceAccountName: "353"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: false
|
||||
subdomain: "367"
|
||||
terminationGracePeriodSeconds: -2738603156841903595
|
||||
@ -947,17 +948,17 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: 740158871
|
||||
collisionCount: 571778293
|
||||
availableReplicas: 294718341
|
||||
collisionCount: -2071091268
|
||||
conditions:
|
||||
- lastTransitionTime: "1970-05-16T01:44:00Z"
|
||||
lastUpdateTime: "2469-07-10T03:20:34Z"
|
||||
- lastTransitionTime: "2097-04-15T07:29:40Z"
|
||||
lastUpdateTime: "2042-08-25T05:10:04Z"
|
||||
message: "427"
|
||||
reason: "426"
|
||||
status: '''ƈoIǢ龞瞯å'
|
||||
type: ""
|
||||
observedGeneration: 1751238822830387407
|
||||
readyReplicas: -1450995995
|
||||
replicas: -106050665
|
||||
unavailableReplicas: -449319810
|
||||
updatedReplicas: -929473748
|
||||
status: ""
|
||||
type: 昞财Î嘝zʄ!ć惍Bi攵&ý"ʀ
|
||||
observedGeneration: 3883700826410970519
|
||||
readyReplicas: -729742317
|
||||
replicas: -449319810
|
||||
unavailableReplicas: 867742020
|
||||
updatedReplicas: 2063260600
|
||||
|
@ -1378,21 +1378,22 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"setHostnameAsFQDN": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"replicas": -1165029050,
|
||||
"fullyLabeledReplicas": 1893057016,
|
||||
"readyReplicas": -2099726885,
|
||||
"availableReplicas": -928976522,
|
||||
"observedGeneration": 702392770146794584,
|
||||
"replicas": 1893057016,
|
||||
"fullyLabeledReplicas": -2099726885,
|
||||
"readyReplicas": -928976522,
|
||||
"availableReplicas": -983106472,
|
||||
"observedGeneration": 4693783954739913971,
|
||||
"conditions": [
|
||||
{
|
||||
"type": "暁×軓鼐嵱宯ÙQ阉(闒ƈƳ",
|
||||
"status": "ű孖站畦f黹ʩ鹸ɷ",
|
||||
"lastTransitionTime": "2233-10-15T01:58:37Z",
|
||||
"type": "×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ",
|
||||
"status": "站畦f黹ʩ鹸ɷLȋ",
|
||||
"lastTransitionTime": "2376-03-18T02:40:44Z",
|
||||
"reason": "434",
|
||||
"message": "435"
|
||||
}
|
||||
|
Binary file not shown.
@ -721,6 +721,7 @@ spec:
|
||||
runAsUserName: "370"
|
||||
serviceAccount: "362"
|
||||
serviceAccountName: "361"
|
||||
setHostnameAsFQDN: false
|
||||
shareProcessNamespace: true
|
||||
subdomain: "375"
|
||||
terminationGracePeriodSeconds: 2666412258966278206
|
||||
@ -941,14 +942,14 @@ spec:
|
||||
storagePolicyName: "103"
|
||||
volumePath: "101"
|
||||
status:
|
||||
availableReplicas: -928976522
|
||||
availableReplicas: -983106472
|
||||
conditions:
|
||||
- lastTransitionTime: "2233-10-15T01:58:37Z"
|
||||
- lastTransitionTime: "2376-03-18T02:40:44Z"
|
||||
message: "435"
|
||||
reason: "434"
|
||||
status: ű孖站畦f黹ʩ鹸ɷ
|
||||
type: 暁×軓鼐嵱宯ÙQ阉(闒ƈƳ
|
||||
fullyLabeledReplicas: 1893057016
|
||||
observedGeneration: 702392770146794584
|
||||
readyReplicas: -2099726885
|
||||
replicas: -1165029050
|
||||
status: 站畦f黹ʩ鹸ɷLȋ
|
||||
type: ×軓鼐嵱宯ÙQ阉(闒ƈƳ萎Ŋ
|
||||
fullyLabeledReplicas: -2099726885
|
||||
observedGeneration: 4693783954739913971
|
||||
readyReplicas: -928976522
|
||||
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.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user