Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 584 for lastTransitionTime (0.39 sec)

  1. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,3,opt,name=observedGeneration"`
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
    	// The reason for the condition's last transition.
    	// +required
    	Reason string `json:"reason" protobuf:"bytes,5,opt,name=reason"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers.go

    	newCondition.LastTransitionTime = metav1.NewTime(time.Now())
    
    	existingCondition := FindCRDCondition(crd, newCondition.Type)
    	if existingCondition == nil {
    		crd.Status.Conditions = append(crd.Status.Conditions, newCondition)
    		return
    	}
    
    	if existingCondition.Status != newCondition.Status || existingCondition.LastTransitionTime.IsZero() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 27 10:54:44 UTC 2019
    - 9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mismatch.status.yaml.golden

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      creationTimestamp: null
      name: istio
      namespace: default
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Handled by Istio controller
        reason: Accepted
        status: "True"
        type: Accepted
      supportedFeatures:
      - HTTPRouteFeatureA
      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 520 bytes
    - Viewed (0)
  4. pkg/apis/certificates/v1/zz_generated.conversion.go

    	out.Type = certificates.RequestConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.Reason = in.Reason
    	out.Message = in.Message
    	out.LastUpdateTime = in.LastUpdateTime
    	out.LastTransitionTime = in.LastTransitionTime
    	return nil
    }
    
    // Convert_v1_CertificateSigningRequestCondition_To_certificates_CertificateSigningRequestCondition is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  5. pkg/controller/deployment/progress_test.go

    		Reason:             util.NewRSAvailableReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    	replicaSetUpdated := apps.DeploymentCondition{
    		Type:               apps.DeploymentProgressing,
    		Status:             v1.ConditionTrue,
    		Reason:             util.ReplicaSetUpdatedReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    
    	tests := []struct {
    		name            string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Namespace.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      finalizers:
      - finalizersValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Namespace.json

        "finalizers": [
          "finalizersValue"
        ]
      },
      "status": {
        "phase": "phaseValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      cidrs:
      - cidrsValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

                path: namespace
    status:
      conditions:
      - lastProbeTime: null
        lastTransitionTime: "2021-08-20T14:35:31Z"
        status: "True"
        type: Initialized
      - lastProbeTime: null
        lastTransitionTime: "2021-08-20T14:36:10Z"
        status: "True"
        type: Ready
      - lastProbeTime: null
        lastTransitionTime: "2021-08-20T14:36:10Z"
        status: "True"
        type: ContainersReady
      - lastProbeTime: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// lastTransitionTime is the time the condition last transitioned from one status to another.
    	// If unset, when a new condition type is added or an existing condition's status is changed,
    	// the server defaults this to the current time.
    	// +optional
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,5,opt,name=lastTransitionTime"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
Back to top