Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 170 for errorexit (0.14 sec)

  1. hack/update-generated-docs.sh

    # limitations under the License.
    
    # This file is not intended to be run automatically. It is meant to be run
    # immediately before exporting docs. We do not want to check these documents in
    # by default.
    
    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
    kube::util::ensure-temp-dir
    
    BINS=(
    	./cmd/gendocs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. hack/verify-description.sh

    # limitations under the License.
    
    # This script checks API-related files for missing descriptions and outputs a
    # list of structs and fields that are missing descriptions.
    # Usage: `hack/verify-description.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"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. hack/verify-no-vendor-cycles.sh

    # limitations under the License.
    
    # This script checks whether packages under `vendor` directory have cyclic
    # dependencies on `main` or `staging` repositories.
    # Usage: `hack/verify-no-vendor-cycles.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
    
    staging_repos=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. cluster/kubectl.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
    
    # Stop the bleeding, turn off the warning until we fix token gen.
    # echo "-=-=-=-=-=-=-=-=-=-="
    # echo "NOTE:"
    # echo "kubectl.sh is deprecated and will be removed soon."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. hack/update-kustomize.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
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::util::require-jq
    kube::util::ensure_clean_working_dir
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. hack/make-rules/test-integration.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
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # start the cache mutation detector by default so that cache mutators will be found
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top