Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for etcdctl (0.12 sec)

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

    		etcdctlVersioned := fmt.Sprintf("etcdctl-%s", opts.targetVersion)
    		if err := copyFile(filepath.Join(opts.binDir, etcdVersioned), filepath.Join(opts.binDir, "etcd")); err != nil {
    			klog.Fatalf("Failed to copy %s: %v", etcdVersioned, err)
    		}
    		if err := copyFile(filepath.Join(opts.binDir, etcdctlVersioned), filepath.Join(opts.binDir, "etcdctl")); err != nil {
    			klog.Fatalf("Failed to copy %s: %v", etcdctlVersioned, err)
    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. cluster/images/etcd/Makefile

    		$(BIN_INSTALL) $$etcd_release_tmp_dir/etcd-v$$version-windows-amd64/etcd.exe $$etcd_release_tmp_dir/etcd-v$$version-windows-amd64/etcdctl.exe $(TEMP_DIR)/; \
    		$(BIN_INSTALL) $(TEMP_DIR)/etcd.exe $(TEMP_DIR)/etcd-$$version.exe; \
    		$(BIN_INSTALL) $(TEMP_DIR)/etcdctl.exe $(TEMP_DIR)/etcdctl-$$version.exe; \
    	done
    else
    	for version in $(BUNDLED_ETCD_VERSIONS); do \
    		etcd_release_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)
  3. cluster/images/etcd/Dockerfile

    		bash-static
    
    RUN cp /bin/bash-static /sh
    
    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)
  4. cluster/images/etcd/README.md

    ### registry.k8s.io/etcd docker image
    
    Provides docker images containing etcd and etcdctl binaries for multiple etcd
    version as well as a migration operator utility for upgrading and downgrading
    etcd--it's data directory in particular--to a target version.
    
    #### Versioning
    
    Each `registry.k8s.io/etcd` docker image is tagged with an version string of the form
    `<etcd-version>-<image-revision>`, e.g. `3.0.17-0`.  The etcd version is the
    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/migrate/migrate_client.go

    	clientv3 "go.etcd.io/etcd/client/v3"
    	"google.golang.org/grpc"
    	"k8s.io/klog/v2"
    )
    
    // CombinedEtcdClient provides an implementation of EtcdMigrateClient using a combination of the etcd v2 client, v3 client
    // and etcdctl commands called via the shell.
    type CombinedEtcdClient struct {
    	cfg *EtcdMigrateCfg
    }
    
    // NewEtcdMigrateClient creates a new EtcdMigrateClient from the given EtcdMigrateCfg.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  6. cluster/images/etcd/migrate/options.go

    	flags.StringVar(&opts.binDir, "bin-dir", "/usr/local/bin",
    		"directory of etcd and etcdctl binaries, must contain etcd-<version> and etcdctl-<version> for each version listed in <bundled-versions>.")
    	flags.StringVar(&opts.dataDir, "data-dir", "",
    		"etcd data directory of etcd server to migrate. If unset fallbacks to DATA_DIRECTORY env.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. cluster/images/etcd/Dockerfile.windows

    # See the License for the specific language governing permissions and
    # 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,
    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/gce/manifests/etcd.manifest

            "name": "ETCDCTL_API",
            "value": "3"
          }
            ],
        "livenessProbe": {
          "exec": {
            "command": [
              "/bin/sh",
              "-c",
              "set -x; exec /usr/local/bin/etcdctl --endpoints=127.0.0.1:{{ port }} {{ etcdctl_certs }} --command-timeout=15s endpoint health"
            ]
          },
          "initialDelaySeconds": {{ liveness_probe_initial_delay }},
          "timeoutSeconds": 15,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. .github/workflows/iam-integrations.yaml

            env:
              ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
              ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
            ports:
              - "2379:2379"
            options: >-
              --health-cmd "etcdctl endpoint health"
              --health-interval 10s
              --health-timeout 5s
              --health-retries 5
          openid:
            image: quay.io/minio/dex
            ports:
              - "5556:5556"
            env:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	// because it needs two members as majority to agree on the consensus. You will only see this behavior between the time
    	// etcdctl member add informs the cluster about the new member and the new member successfully establishing a connection to the
    	// existing one."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top