Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for GetOpts (0.07 sec)

  1. cluster/gce/upgrade.sh

    master_upgrade=true
    node_upgrade=true
    node_prereqs=false
    local_binaries=false
    env_os_distro=false
    node_upgrade_parallelism=1
    
    while getopts ":MNPlcho" opt; do
      case "${opt}" in
        M)
          node_upgrade=false
          ;;
        N)
          master_upgrade=false
          ;;
        P)
          node_prereqs=true
          ;;
        l)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      if [[ -z "${apiserver_path}" ]]; then
        return
      fi
      echo -n "$(dirname "${apiserver_path}")"
    }
    
    ### Allow user to supply the source directory.
    GO_OUT=${GO_OUT:-}
    while getopts "ho:O" OPTION
    do
        case ${OPTION} in
            o)
                echo "skipping build"
                GO_OUT="${OPTARG}"
                echo "using source ${GO_OUT}"
                ;;
            O)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top