Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for migrate (0.14 sec)

  1. .github/workflows/multipart/migrate.sh

    Harshavardhana <******@****.***> 1716837466 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. cmd/config-migrate.go

    Aditya Manthramurthy <******@****.***> 1716591923 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate-if-needed.bat

    REM limitations under the License.
    
    REM DEPRECATED:
    REM The functionality has been moved to migrate binary and this script
    REM if left for backward compatibility with previous manifests. It will be
    REM removed in the future.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 24 18:28:00 UTC 2021
    - 833 bytes
    - Viewed (0)
  4. cluster/images/etcd/README.md

    but can also be used as the etcd target version.
    
    #### Usage
    
    Always run `/usr/local/bin/migrate` (or the
    `/usr/local/bin/migrate-if-needed.sh` wrapper script) before starting the etcd
    server. On Windows, run `C:\bin\migrate.exe` (or the `C:\bin\migrate-if-needed.bat
    wrapper script`).
    
    `migrate` writes a `version.txt` file to track the "current" version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. cluster/images/etcd/Dockerfile.windows

    # limitations under the License.
    
    ARG RUNNERIMAGE
    FROM ${RUNNERIMAGE}
    
    EXPOSE 2379 2380 4001 7001
    
    COPY etcd* etcdctl* /usr/local/bin/
    COPY migrate-if-needed.bat /usr/local/bin/
    COPY migrate /usr/local/bin/migrate.exe
    
    # NOTE(claudiub): docker buildx sets the PATH env variable to a Linux-like PATH,
    # # which is not desirable. See: https://github.com/moby/buildkit/issues/1560
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 13 17:06:59 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. cluster/images/etcd/Dockerfile

    FROM ${RUNNERIMAGE}
    WORKDIR /
    
    COPY --from=builder /sh /bin/
    
    EXPOSE 2379 2380 4001 7001
    # etcdctl is used by etcd.manifest for livenessProbe.
    COPY etcd* etcdctl* /usr/local/bin/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 13 17:06:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tests/embedded_struct_test.go

    		ImageUrl string
    	}
    
    	DB.Migrator().DropTable(&HNPost{}, &EngadgetPost{})
    	if err := DB.Migrator().AutoMigrate(&HNPost{}, &EngadgetPost{}); err != nil {
    		t.Fatalf("failed to auto migrate, got error: %v", err)
    	}
    
    	for _, name := range []string{"author_id", "author_name", "author_email"} {
    		if !DB.Migrator().HasColumn(&EngadgetPost{}, name) {
    			t.Errorf("should has prefixed column %v", name)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/preflight.go

    		}
    		fmt.Println("[preflight] The corefile contains plugins that kubeadm/CoreDNS does not know how to migrate. " +
    			"Each plugin listed should be manually verified for compatibility with the newer version of CoreDNS. " +
    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    			"kubeadm will migrate the configuration while leaving the listed plugin configs untouched, " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. cluster/gce/manifests/etcd.manifest

        "resources": {
          "requests": {
            "cpu": {{ cpulimit }}
          }
        },
        "command": [
                  "/bin/sh",
                  "-c",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/migrator.go

    	Snapshot(version *EtcdVersion, snapshotFile string) error
    	Restore(version *EtcdVersion, snapshotFile string) error
    	Migrate(version *EtcdVersion) error
    	AttachLease(leaseDuration time.Duration) error
    	Close() error
    }
    
    // Migrator manages etcd data migrations.
    type Migrator struct {
    	cfg           *EtcdMigrateCfg // TODO: don't wire this directly in
    	dataDirectory *DataDirectory
    	client        EtcdMigrateClient
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top