Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 223 for Migration (0.17 sec)

  1. pkg/controller/volume/attachdetach/util/util_test.go

    	wantErrorMessage     string
    }
    
    func Test_CreateVolumeSpec(t *testing.T) {
    	for _, test := range []vaTest{
    		{
    			desc:           "inline volume type that does not support csi migration",
    			createNodeName: nodeName,
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "kube-apiserver",
    					Namespace: "default",
    				},
    				Spec: v1.PodSpec{
    					Volumes: []v1.Volume{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/k8s-auth.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
      **Added** support for migration and concurrent use of regular K8S tokens as well as new K8S tokens with audience. This feature is enabled by
      default, can be disabled by REQUIRE_3P_TOKEN environment variable in Istiod, which will require new tokens with audience. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 452 bytes
    - Viewed (0)
Back to top