Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for etcdctl (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. 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)
  9. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    			if !r.DryRun() {
    				err := etcdphase.RemoveStackedEtcdMemberFromCluster(r.Client(), cfg)
    				if err != nil {
    					klog.Warningf("[reset] Failed to remove etcd member: %v, please manually remove this etcd member using etcdctl", err)
    				} else {
    					if err := CleanDir(etcdDataDir); err != nil {
    						klog.Warningf("[reset] Failed to delete contents of the etcd directory: %q, error: %v", etcdDataDir, err)
    					} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. cmd/healthcheck-handler.go

    				writeErrorResponse(r.Context(), w, toAPIError(r.Context(), err), r.URL)
    			}
    			return
    		}
    	}
    
    	if globalEtcdClient != nil {
    		// Borrowed from
    		// https://github.com/etcd-io/etcd/blob/main/etcdctl/ctlv3/command/ep_command.go#L118
    		ctx, cancel := context.WithTimeout(r.Context(), defaultContextTimeout)
    		defer cancel()
    		if _, err := globalEtcdClient.Get(ctx, "health"); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top