Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for Migration (0.26 sec)

  1. pkg/controller/storageversionmigrator/storageversionmigrator.go

    	data, err := json.Marshal(typeMeta)
    	if err != nil {
    		return err
    	}
    
    	// ToDo: implement a mechanism to resume migration from the last migrated resource in case of a failure
    	// process storage migration
    	for _, gvrKey := range resourceMonitor.Store.ListKeys() {
    		namespace, name, err := cache.SplitMetaNamespaceKey(gvrKey)
    		if err != nil {
    			return err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. cmd/kubelet/app/plugins_providers.go

    	_, err := csimigration.CheckMigrationFeatureFlags(featureGate, pluginInfo.pluginMigrationFeature, pluginInfo.pluginUnregisterFeature)
    	if err != nil {
    		klog.InfoS("Unexpected CSI Migration Feature Flags combination detected, CSI Migration may not take effect", "err", err)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/plugins_providers.go

    	_, err := csimigration.CheckMigrationFeatureFlags(featureGate, pluginInfo.pluginMigrationFeature, pluginInfo.pluginUnregisterFeature)
    	if err != nil {
    		logger.Error(err, "Unexpected CSI Migration Feature Flags combination detected. CSI Migration may not take effect")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/controller/storageversionmigrator/resourceversion.go

    )
    
    // ResourceVersionController adds the resource version obtained from a randomly nonexistent namespace
    // to the SVM status before the migration is initiated. This resource version is utilized for checking
    // freshness of GC cache before the migration is initiated.
    type ResourceVersionController struct {
    	discoveryClient *discovery.DiscoveryClient
    	metadataClient  metadata.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	// leaderMigrator will be non-nil if and only if Leader Migration is enabled.
    	var leaderMigrator *leadermigration.LeaderMigrator = nil
    
    	// If leader migration is enabled, create the LeaderMigrator and prepare for migration
    	if leadermigration.Enabled(&c.ComponentConfig.Generic) {
    		logger.Info("starting leader migration")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    [[sec:task_configuration_avoidance_general]]
    === Migration guidelines
    1. [[task_configuration_avoidance_guideline_use_help_task]] **Use `help` task as a benchmark during the migration.** +
    The `help` task is the perfect candidate to benchmark your migration process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/BuildScanIntegrationTest.kt

                    "Run with '-Ddevelocity.deprecation.captureOrigin=true' to see where the deprecated functionality is being used. " +
                    "For assistance with migration, see https://gradle.com/help/gradle-plugin-develocity-migration.")
            executer.expectDeprecationWarning("""- The deprecated "gradleEnterprise.buildScan.termsOfServiceUrl" API has been replaced by "develocity.buildScan.termsOfUseUrl"""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    )
    
    // isCSIMigrationOn returns a boolean value indicating whether
    // the CSI migration has been enabled for a particular storage plugin.
    func isCSIMigrationOn(csiNode *storagev1.CSINode, pluginName string) bool {
    	if csiNode == nil || len(pluginName) == 0 {
    		return false
    	}
    
    	// In-tree storage to CSI driver migration feature should be enabled,
    	// along with the plugin-specific one
    	switch pluginName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller_base.go

    		if err != nil {
    			logger.Error(err, "Could not update volume migration annotations. Migration enabled for plugin but could not find corresponding driver name", "plugin", provisioner)
    			return false
    		}
    		if migratedToDriver != csiDriverName {
    			ann[storagehelpers.AnnMigratedTo] = csiDriverName
    			return true
    		}
    	} else {
    		if migratedToDriver != "" {
    			// Migration annotation exists but the driver isn't migrated currently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			driverNames:  []string{ebsCSIDriverName, gceCSIDriverName},
    			test:         "don't count pvcs with different type towards volume limit",
    			limitSource:  "node",
    		},
    		// Tests for in-tree volume migration
    		{
    			newPod:           inTreeOneVolPod,
    			existingPods:     []*v1.Pod{inTreeTwoVolPod},
    			filterName:       "csi",
    			maxVols:          2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top