Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for Migration (0.38 sec)

  1. maven-compat/src/site/apt/index.apt

     Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
     {{{https://cwiki.apache.org/confluence/display/MAVEN/Plugin+migration+to+Maven3+dependencies} Plugin migration to Maven3 dependencies}}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 24 22:50:10 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/gogo-protobuf.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: extensibility
    issue:
    - 26751
    
    upgradeNotes:
    - title: gogo/protobuf library migration
      content: |
        The `istio.io/api` and `istio.io/client-go` libraries have switched from using the [gogo/protobuf](https://github.com/gogo/protobuf)
        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/migrate.go

    		etcdServerArgs:    etcdServerArgs,
    	}
    	client, err := NewEtcdMigrateClient(cfg)
    	if err != nil {
    		klog.Fatalf("Migration failed: %v", err)
    	}
    	defer client.Close()
    
    	migrator := &Migrator{cfg, dataDir, client}
    
    	err = migrator.MigrateIfNeeded(target)
    	if err != nil {
    		klog.Fatalf("Migration failed: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  4. internal/config/legacy.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package config
    
    // One time migration code section
    
    // SetRegion - One time migration code needed, for migrating from older config to new for server Region.
    func SetRegion(c Config, name string) {
    	if name == "" {
    		return
    	}
    	c[RegionSubSys][Default] = KVS{
    		KV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Dec 19 20:27:06 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. cluster/images/etcd/README.md

    distinguishes between docker images with the same lastest etcd version but
    changes (bug fixes and backward compatible improvements) to the migration
    utility bundled with the image.
    
    In addition to the latest etcd version, each `registry.k8s.io/etcd` image contains
    etcd and etcdctl binaries for older versions of etcd. These are used by the
    migration operator utility when performing downgrades and multi-step upgrades,
    but can also be used as the etcd target version.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. cluster/images/etcd/migrate/migrator.go

    }
    
    // Migrator manages etcd data migrations.
    type Migrator struct {
    	cfg           *EtcdMigrateCfg // TODO: don't wire this directly in
    	dataDirectory *DataDirectory
    	client        EtcdMigrateClient
    }
    
    // MigrateIfNeeded upgrades or downgrades the etcd data directory to the given target version.
    func (m *Migrator) MigrateIfNeeded(target *EtcdVersionPair) error {
    	klog.Infof("Starting migration to %s", target)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top