Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for renewTime (0.32 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1.Lease.json

            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission_test.go

    				LeaseDurationSeconds: pointer.Int32(40),
    				RenewTime:            &metav1.MicroTime{Time: time.Now()},
    			},
    		}
    		leaseWrongNS = &coordination.Lease{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "mynode",
    				Namespace: "foo",
    			},
    			Spec: coordination.LeaseSpec{
    				HolderIdentity:       pointer.String("mynode"),
    				LeaseDurationSeconds: pointer.Int32(40),
    				RenewTime:            &metav1.MicroTime{Time: time.Now()},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// take no action.
    	observedLease, _ := nc.leaseLister.Leases(v1.NamespaceNodeLease).Get(node.Name)
    	if observedLease != nil && (savedLease == nil || savedLease.Spec.RenewTime.Before(observedLease.Spec.RenewTime)) {
    		nodeHealth.lease = observedLease
    		nodeHealth.probeTimestamp = nc.now()
    	}
    
    	if nc.now().After(nodeHealth.probeTimestamp.Add(gracePeriod)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    }
    
    func createNodeLease(nodeName string, renewTime metav1.MicroTime) *coordv1.Lease {
    	return &coordv1.Lease{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      nodeName,
    			Namespace: v1.NamespaceNodeLease,
    		},
    		Spec: coordv1.LeaseSpec{
    			HolderIdentity: pointer.String(nodeName),
    			RenewTime:      &renewTime,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "leaseTransitions": {
                "description": "leaseTransitions is the number of transitions of a lease between holders.",
                "format": "int32",
                "type": "integer"
              },
              "renewTime": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime"),
    						},
    					},
    					"renewTime": {
    						SchemaProps: spec.SchemaProps{
    							Description: "renewTime is a time when the current holder of a lease has last updated the lease.",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime"),
    						},
    					},
    					"leaseTransitions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "format": "int32",
              "type": "integer"
            },
            "leaseTransitions": {
              "description": "leaseTransitions is the number of transitions of a lease between holders.",
              "format": "int32",
              "type": "integer"
            },
            "renewTime": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "leaseTransitions": {
              "description": "leaseTransitions is the number of transitions of a lease between holders.",
              "format": "int32",
              "type": "integer"
            },
            "renewTime": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "leaseTransitions": {
              "description": "leaseTransitions is the number of transitions of a lease between holders.",
              "format": "int32",
              "type": "integer"
            },
            "renewTime": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top