Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 149 for errorexit (0.22 sec)

  1. hack/gen-swagger-doc/gen-swagger-docs.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Script to generate docs from the latest swagger spec.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    cd /build
    
    # gendocs takes "input.json" as the input swagger spec.
    # $1 is expected to be <group>_<version>
    cp /swagger-source/"$1".json input.json
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 19 12:58:58 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  2. hack/lib/etcd.sh

      fi
    }
    
    kube::etcd::cleanup() {
      kube::etcd::stop
      kube::etcd::clean_etcd_dir
    }
    
    kube::etcd::install() {
      # Make sure that we will abort if the inner shell fails.
      set -o errexit
      set -o pipefail
      set -o nounset
    
      # We change directories below, so this subshell is needed.
      (
        local os
        local arch
    
        os=$(kube::util::host_os)
        arch=$(kube::util::host_arch)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. hack/verify-netparse-cve.sh

    # instead of the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/verify-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    find_files() {
      find . -not \( \
          \( \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top