Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for revision2 (0.14 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    	set.Annotations[key] = expectedValue
    	restoredSet, err := ApplyRevision(set, revision)
    	if err != nil {
    		t.Fatal(err)
    	}
    	restoredRevision, err := newRevision(restoredSet, 2, restoredSet.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !history.EqualRevision(revision, restoredRevision) {
    		t.Errorf("wanted %v got %v", string(revision.Data.Raw), string(restoredRevision.Data.Raw))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    			err = dsc.rollingUpdate(ctx, ds, nodeList, hash)
    		}
    		if err != nil {
    			return err
    		}
    	}
    
    	err = dsc.cleanupHistory(ctx, ds, old)
    	if err != nil {
    		return fmt.Errorf("failed to clean up revisions of DaemonSet: %w", err)
    	}
    
    	return nil
    }
    
    // manage manages the scheduling and running of Pods of ds on nodes.
    // After figuring out which nodes should run a Pod of ds but not yet running one and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	if err := runtime.Convert_runtime_RawExtension_To_runtime_Object(&in.Data, &out.Data, s); err != nil {
    		return err
    	}
    	out.Revision = in.Revision
    	return nil
    }
    
    // Convert_v1_ControllerRevision_To_apps_ControllerRevision is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	if err := runtime.Convert_runtime_RawExtension_To_runtime_Object(&in.Data, &out.Data, s); err != nil {
    		return err
    	}
    	out.Revision = in.Revision
    	return nil
    }
    
    // Convert_v1beta2_ControllerRevision_To_apps_ControllerRevision is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // DEPRECATED.
    type RollbackConfig struct {
    	// The revision to rollback to. If set to 0, rollback to the last revision.
    	// +optional
    	Revision int64 `json:"revision,omitempty" protobuf:"varint,1,opt,name=revision"`
    }
    
    const (
    	// DefaultDeploymentUniqueLabelKey is the default key of the selector that is added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    	// Use compact to increase etcd global revision without changes to any resources.
    	// The increase in resources version comes from Kubernetes compaction updating hidden key.
    	// Used to test consistent List to confirm it returns latest etcd revision.
    	compaction(ctx, t, initialRV)
    	currentRV := fmt.Sprintf("%d", continueRV+1)
    
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodTemplate.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top