Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ETCD_VERSION (0.11 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. 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)
  5. 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)
Back to top