Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 324 for migrate (0.15 sec)

  1. cluster/images/etcd/migrate/migrate.go

    			klog.Fatalf("Failed to copy %s: %v", etcdctlVersioned, err)
    		}
    	}
    }
    
    // migrate opens or initializes the etcd data directory, configures the migrator, and starts the migration.
    func migrate(name string, port uint64, peerListenUrls string, peerAdvertiseUrls string, clientListenUrls string,
    	binPath string, dataDirPath string, etcdDataPrefix string, ttlKeysDirectory string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. .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)
  3. 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)
  4. cluster/images/etcd/migrate-if-needed.sh

    # limitations under the License.
    
    
    # DEPRECATED:
    # The functionality has been moved to migrate binary and this script
    # if left for backward compatibility with previous manifests. It will be
    # removed in the future.
    
    set -o errexit
    set -o nounset
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 22 18:45:58 UTC 2020
    - 836 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tests/migrate_test.go

    	DB.Migrator().DropTable("user_speaks", "user_friends", "ccc")
    
    	if err := DB.Migrator().DropTable(allModels...); err != nil {
    		t.Fatalf("Failed to drop table, got error %v", err)
    	}
    
    	if err := DB.AutoMigrate(allModels...); err != nil {
    		t.Fatalf("Failed to auto migrate, got error %v", err)
    	}
    
    	if tables, err := DB.Migrator().GetTables(); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  10. cluster/images/etcd/Makefile

    RUNNERIMAGE := ${RUNNERIMAGE.${OS}}
    
    QEMUVERSION?=5.2.0-2
    
    build:
    	# Explicitly copy files to the temp directory
    	$(BIN_INSTALL) migrate-if-needed.sh $(TEMP_DIR)
    	$(BIN_INSTALL) migrate-if-needed.bat $(TEMP_DIR)
    	install $(DOCKERFILE) $(TEMP_DIR)
    
    	# Compile migrate
    	migrate_tmp_dir=$(shell mktemp -d); \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top