Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ETCD_VERSION (0.14 sec)

  1. hack/lib/etcd.sh

        if [[ $(readlink etcd) == etcd-v${ETCD_VERSION}-${os}-* ]]; then
          V=3 kube::log::info "etcd v${ETCD_VERSION} is already installed"
          return 0 # already installed
        fi
    
        if [[ ${os} == "darwin" ]]; then
          download_file="etcd-v${ETCD_VERSION}-${os}-${arch}.zip"
          url="https://github.com/etcd-io/etcd/releases/download/v${ETCD_VERSION}/${download_file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. cluster/gce/manifests/etcd.manifest

                ],
        "env": [
          { "name": "TARGET_STORAGE",
            "value": "{{ pillar.get('storage_backend', 'etcd3') }}"
          },
          { "name": "TARGET_VERSION",
            "value": "{{ pillar.get('etcd_version', '3.5.12') }}"
          },
          {
            "name": "DO_NOT_MOVE_BINARIES",
            "value": "true"
          },
          { "name": "DATA_DIRECTORY",
            "value": "/var/etcd/data{{ suffix }}"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/migrate_client.go

    	return nil
    }
    
    // SetEtcdVersionKeyValue writes the given version to the etcd 'etcd_version' key.
    // If no error is returned, the write was successful, indicating the etcd server is available
    // and able to perform consensus writes.
    func (e *CombinedEtcdClient) SetEtcdVersionKeyValue(version *EtcdVersion) error {
    	return e.Put(version, "etcd_version", version.String())
    }
    
    // Put write a single key value pair to etcd.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. build/dependencies.yaml

        refPaths:
        - path: cluster/gce/manifests/etcd.manifest
          match: etcd_docker_tag|etcd_version
        - path: cluster/gce/upgrade-aliases.sh
          match: ETCD_IMAGE|ETCD_VERSION
        - path: cmd/kubeadm/app/constants/constants.go
          match: DefaultEtcdVersion =
        - path: hack/lib/etcd.sh
          match: ETCD_VERSION=
        - path: staging/src/k8s.io/sample-apiserver/artifacts/example/deployment.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. cluster/images/etcd/README.md

    Windows images can be built on Linux nodes due to `docker buildx`, but they will
    only be created and pushed when using the `all-push` make target.
    
    #### How to release
    
    First, update `ETCD_VERSION` and `REVSION` in the `Makefile`.
    
    Next, build and test the image:
    
    ```console
    $ make build test
    ```
    
    Last, build and push the docker images for all supported architectures.
    
    ```console
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

    # All other automated use of this script should explicitly specify a version.
    if [[ "${master_upgrade}" == "true" ]]; then
      if [[ -z "${ETCD_IMAGE:-}" && -z "${TEST_ETCD_IMAGE:-}" ]] || [[ -z "${ETCD_VERSION:-}" && -z "${TEST_ETCD_VERSION:-}" ]]; then
        echo
        echo "***WARNING***"
        echo "Upgrading Kubernetes with this script might result in an upgrade to a new etcd version."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cluster/gce/upgrade-aliases.sh

    export KUBE_GCE_ENABLE_IP_ALIASES=true
    export SECONDARY_RANGE_NAME="pods-default"
    export STORAGE_BACKEND="etcd3"
    export STORAGE_MEDIA_TYPE="application/vnd.kubernetes.protobuf"
    export ETCD_IMAGE=3.5.14-0
    export ETCD_VERSION=3.5.14
    
    # Upgrade master with updated kube envs
    "${KUBE_ROOT}/cluster/gce/upgrade.sh" -M -l
    
    delete-k8s-node-routes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

    # Set etcd image (e.g. registry.k8s.io/etcd) and version (e.g. v3.5.1-0) if you need
    # non-default version.
    export ETCD_IMAGE=${TEST_ETCD_IMAGE:-}
    export ETCD_DOCKER_REPOSITORY=${TEST_ETCD_DOCKER_REPOSITORY:-}
    export ETCD_VERSION=${TEST_ETCD_VERSION:-}
    
    # Default Log level for all components in test clusters and variables to override it in specific components.
    TEST_CLUSTER_LOG_LEVEL=${TEST_CLUSTER_LOG_LEVEL:---v=4}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      sed -i -e "s@{{ *etcd_extra_args *}}@$etcd_extra_args@g" "${temp_file}"
      if [[ -n "${ETCD_VERSION:-}" ]]; then
        sed -i -e "s@{{ *pillar\.get('etcd_version', '\(.*\)') *}}@${ETCD_VERSION}@g" "${temp_file}"
      else
        sed -i -e "s@{{ *pillar\.get('etcd_version', '\(.*\)') *}}@\1@g" "${temp_file}"
      fi
      # Replace the volume host path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

    EOF
        fi
        # ETCD_VERSION (if set) allows you to use custom version of etcd.
        # The main purpose of using it may be rollback of etcd v3 API,
        # where we need 3.0.* image, but are rolling back to 2.3.7.
        if [ -n "${ETCD_VERSION:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_VERSION: $(yaml-quote "${ETCD_VERSION}")
    EOF
        fi
        if [ -n "${ETCD_HOSTNAME:-}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top