Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for errorexit (0.19 sec)

  1. tests/integration/create_cluster_gke.sh

          usage
          exit 1
          ;;
      esac
    done
    
    if [[ -z "${PROJECT}" ]]; then
      echo "Error: PROJECT (-p) must be specified!"
      usage
      exit 1
    fi
    
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    set -x # echo on
    
    function cleanup {
      # Reset certificate config.
      if [ -z "$OLD_USE_CLIENT_CERT" ]; then
        gcloud config unset container/use_client_certificate
      else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 12 16:02:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. cluster/gce/list-resources.sh

    # resources.
    
    # PROJECT must be set in the environment.
    # If ZONE, KUBE_GCE_INSTANCE_PREFIX, CLUSTER_NAME, KUBE_GCE_NETWORK, or
    # KUBE_GKE_NETWORK is set, they will be used to filter the results.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    ZONE=${ZONE:-}
    REGION=${ZONE%-*}
    INSTANCE_PREFIX=${KUBE_GCE_INSTANCE_PREFIX:-${CLUSTER_NAME:-}}
    NETWORK=${KUBE_GCE_NETWORK:-${KUBE_GKE_NETWORK:-default}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. hack/verify-api-groups.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This scripts locates all API groups by their packages and versions
    # Usage: `hack/verify-api-groups.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    register_files=()
    while read -r file ; do
    	register_files+=("${file}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. hack/verify-vendor.sh

    # This script checks whether fixing of vendor directory or go.mod is needed or
    # not. We should run `hack/update-vendor.sh` if actually fixes them.
    # Usage: `hack/verify-vendor.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # create a nice clean place to put our new vendor tree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. hack/update-mocks.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script generates mock files using mockgen.
    # Usage: `hack/update-mocks.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    echo 'installing mockgen'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. hack/lint-dependencies.sh

    # This script checks version dependencies of modules. It checks whether all
    # pinned versions of checked dependencies match their preferred version or not.
    # Usage: `hack/lint-dependencies.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. bin/build_ztunnel.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    if [[ "${TARGET_OUT_LINUX:-}" == "" ]]; then
      echo "Environment variables not set. Make sure you run through the makefile (\`make init\`) rather than directly."
      exit 1
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. hack/pin-dependency.sh

    # This script switches to the preferred version for specified module.
    # Usage: `hack/pin-dependency.sh $MODULE $SHA-OR-TAG`.
    # Example: `hack/pin-dependency.sh github.com/docker/docker 501cb131a7b7`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tests/fuzz/oss_fuzz_build.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o nounset
    set -o pipefail
    set -o errexit
    set -x
    
    cd "${SRC}"
    git clone https://github.com/AdamKorcz/instrumentation
    cd instrumentation
    go run main.go --target_dir="${SRC}"/istio --check_io_length=true
    cd "${SRC}"/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. hack/verify-shellcheck.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script lints each shell script by `shellcheck`.
    # Usage: `hack/verify-shellcheck.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top