Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for Lease (0.05 sec)

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

    apiVersion: coordination.k8s.io/v1
    kind: Lease
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1beta1.Lease.yaml

    apiVersion: coordination.k8s.io/v1beta1
    kind: Lease
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1beta1.Lease.json

    {
      "kind": "Lease",
      "apiVersion": "coordination.k8s.io/v1beta1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1.Lease.json

    {
      "kind": "Lease",
      "apiVersion": "coordination.k8s.io/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1beta1.Lease.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 453 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1.Lease.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 448 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/coordination/v1/generated.proto

    option go_package = "k8s.io/api/coordination/v1";
    
    // Lease defines a lease concept.
    message Lease {
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec contains the specification of the Lease.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/coordination/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.14
    
    // Lease defines a lease concept.
    type Lease struct {
    	metav1.TypeMeta `json:",inline"`
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// spec contains the specification of the Lease.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/server.go

    func labelAPIServerHeartbeatFunc(identity string, peeraddress string) lease.ProcessLeaseFunc {
    	return func(lease *coordinationapiv1.Lease) error {
    		if lease.Labels == nil {
    			lease.Labels = map[string]string{}
    		}
    
    		if lease.Annotations == nil {
    			lease.Annotations = map[string]string{}
    		}
    
    		// This label indiciates the identity of the lease object.
    		lease.Labels[IdentityLeaseComponentLabelKey] = identity
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/controller/storageversiongc/gc_controller.go

    	for _, v := range sv.Status.StorageVersions {
    		lease, err := c.kubeclientset.CoordinationV1().Leases(metav1.NamespaceSystem).Get(ctx, v.APIServerID, metav1.GetOptions{})
    		if err != nil || lease == nil || lease.Labels == nil ||
    			lease.Labels[controlplane.IdentityLeaseComponentLabelKey] != controlplane.KubeAPIServer {
    			// We cannot find a corresponding identity lease from apiserver as well.
    			// We need to clean up this storage version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top