Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for migrate (0.31 sec)

  1. manifests/charts/istiod-remote/values.yaml

        # assigned.
        #
        # Within a multicluster mesh, each cluster must be (manually or auto)
        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. tests/associations_has_many_test.go

    	}
    	type Item struct {
    		gorm.Model
    		Logo     string        `gorm:"not null;type:varchar(50)"`
    		Contents []ItemContent `gorm:"foreignKey:ItemID"`
    	}
    
    	tx := DB.Session(&gorm.Session{})
    	tx.Migrator().DropTable(&ItemContent{}, &Item{})
    	tx.AutoMigrate(&ItemContent{}, &Item{})
    
    	item := Item{
    		Logo: "logo",
    		Contents: []ItemContent{
    			{Name: "name", LanguageCode: "en"},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        # assigned.
        #
        # Within a multicluster mesh, each cluster must be (manually or auto)
        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    //
    // Handles:
    // * Duplicate ClusterIP assignments caused by operator action or undetected race conditions
    // * Allocations to services that were not actually created due to a crash or powerloss
    // * Migrates old versions of Kubernetes services into the new ipallocator automatically
    //   creating the corresponding IPAddress objects
    // * IPAddress objects with wrong references or labels
    //
    // Logs about:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    They are simple to use.
    
    A plugin often starts as a script plugin (because they are easy to write).
    Then, as the code becomes more valuable, it's migrated to a binary plugin that can be easily tested and shared between multiple projects or organizations.
    
    [[sec:using_plugins]]
    == Using plugins
    
    To use the build logic encapsulated in a plugin, Gradle needs to perform two steps.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    			want:                           false,
    			wantErr:                        false,
    		},
    		{
    			name:                           "Coredns Configmap needs to be migrated",
    			corefile:                       "Corefile: fake",
    			currentInstalledCoreDNSVersion: "v1.2.0",
    			want:                           true,
    			wantErr:                        false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    type Spec struct {
    	Volume                          *v1.Volume
    	PersistentVolume                *v1.PersistentVolume
    	ReadOnly                        bool
    	InlineVolumeSpecForCSIMigration bool
    	Migrated                        bool
    }
    
    // Name returns the name of either Volume or PersistentVolume, one of which must not be nil.
    func (spec *Spec) Name() string {
    	switch {
    	case spec.Volume != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	case csiplugins.PortworxVolumePluginName:
    		return utilfeature.DefaultFeatureGate.Enabled(features.CSIMigrationPortworx)
    	}
    	return false
    }
    
    // isPluginMigratedToCSIOnNode checks if an in-tree plugin has been migrated to a CSI driver on the node.
    func isPluginMigratedToCSIOnNode(pluginName string, csiNode *storagev1.CSINode) bool {
    	if csiNode == nil {
    		return false
    	}
    
    	csiNodeAnn := csiNode.GetAnnotations()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top