Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for Migration (0.21 sec)

  1. pkg/apis/storagemigration/types.go

    const (
    	// Indicates that the migration is running.
    	MigrationRunning MigrationConditionType = "Running"
    	// Indicates that the migration has completed successfully.
    	MigrationSucceeded MigrationConditionType = "Succeeded"
    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.proto

      // to migrate. When the .status.conditions indicates the migration is
      // "Running", users can use this token to check the progress of the
      // migration.
      // +optional
      optional string continueToken = 2;
    }
    
    // Status of the storage version migration.
    message StorageVersionMigrationStatus {
      // The latest available observations of the migration's current state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storagemigration/v1alpha1/types_swagger_doc_generated.go

    	"":         "StorageVersionMigration represents a migration of stored data to the latest storage version.",
    	"metadata": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Specification of the migration.",
    	"status":   "Status of the migration.",
    }
    
    func (StorageVersionMigration) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    const (
    	// Indicates that the migration is running.
    	MigrationRunning MigrationConditionType = "Running"
    	// Indicates that the migration has completed successfully.
    	MigrationSucceeded MigrationConditionType = "Succeeded"
    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package dns
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"strings"
    
    	"github.com/coredns/corefile-migration/migration"
    	"github.com/pkg/errors"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	rbac "k8s.io/api/rbac/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expVolumeFinalizers: []string{volume.PVDeletionProtectionFinalizer},
    			expModified:         true,
    		},
    		{
    			// csi-migration is not completely enabled as the specific plugin feature is not present. This is equivalent
    			// of disabled csi-migration.
    			name:                "13-8 migration is enabled but plugin migration feature is disabled, volume has the external PV deletion protection finalizer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. pkg/volume/csimigration/plugin_manager.go

    // to CSI Migration is valid. It will return whether the migration is complete
    // by looking up the pluginUnregister flag
    func CheckMigrationFeatureFlags(f featuregate.FeatureGate, pluginMigration,
    	pluginUnregister featuregate.Feature) (migrationComplete bool, err error) {
    	// This is for in-tree plugin that get migration finished
    	if f.Enabled(pluginMigration) && f.Enabled(pluginUnregister) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    				}).BuildOrFail(t)
    			}
    
    			// Add the migration app to the full list of services.
    			allServices := apps.Ns1.All.Append(migrationApp.Services())
    
    			// Create matchers for the migration app.
    			migration := match.ServiceName(migrationApp.NamespacedName())
    			notMigration := match.Not(migration)
    
    			// Call options to be used for tests using the migration app.
    			migrationOpts := []echo.CallOptions{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pkg/volume/csimigration/plugin_manager_test.go

    		inTreePluginUnregisterEnabled bool
    		csiMigrationResult            bool
    		csiMigrationCompleteResult    bool
    	}{
    		{
    			name:                          "gce-pd migration flag enabled and migration-complete flag disabled with CSI migration flag",
    			pluginName:                    "kubernetes.io/gce-pd",
    			pluginFeatureEnabled:          true,
    			csiMigrationEnabled:           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. internal/config/notify/legacy.go

    package notify
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/event/target"
    )
    
    // SetNotifyKafka - helper for config migration from older config.
    func SetNotifyKafka(s config.Config, name string, cfg target.KafkaArgs) error {
    	if !cfg.Enable {
    		return nil
    	}
    
    	if err := cfg.Validate(); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top