Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for kubeVersion (0.23 sec)

  1. cluster/get-kube.sh

    # publication.
    #
    # Args:
    #   $1 version string from command line
    # Vars set:
    #   KUBE_VERSION
    function set_binary_version() {
      if [[ "${1}" =~ "/" ]]; then
        KUBE_VERSION=$(curl -fsSL --retry 5 "https://dl.k8s.io/${1}.txt")
      else
        KUBE_VERSION=${1}
      fi
      export KUBE_VERSION
    }
    
    # Use the script from inside the Kubernetes tarball to fetch the client and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. cluster/get-kube-binaries.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
    
    KUBERNETES_RELEASE_URL="${KUBERNETES_RELEASE_URL:-https://dl.k8s.io}"
    
    function detect_kube_release() {
      if [[ -n "${KUBE_VERSION:-}" ]]; then
        return 0  # Allow caller to explicitly set version
      fi
    
      if [[ ! -e "${KUBE_ROOT}/version" ]]; then
        echo "Can't determine Kubernetes release." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top