Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for errorexit (0.12 sec)

  1. hack/update-internal-modules.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"
    
    # These are "internal" modules.  For various reasons, we want them to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. hack/update-conformance-yaml.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]}")/..
    cd "${KUBE_ROOT}"
    
    # generate json spec -> yaml
    test/conformance/gen-conformance-yaml.sh
    # replace checked-in yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 21:15:01 UTC 2024
    - 886 bytes
    - Viewed (0)
  3. hack/verify-cli-conventions.sh

    # This script checks the description format of help message of kubectl command
    # is valid or not. And this checking is done for all kubectl sub-commands.
    # Usage: `hack/verify-cli-conventions.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
    
    GOPROXY=off go install ./cmd/clicheck
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. hack/verify-openapi-spec.sh

    # This script checks whether updating of OpenAPI specification is needed or not.
    # We should run `hack/update-openapi-spec.sh` if OpenAPI specification is out of
    # date.
    # Usage: `hack/verify-openapi-spec.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:41 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. hack/make-rules/test-cmd.sh

    # limitations under the License.
    
    # This command checks that the built commands can function together for
    # simple scenarios.  It does not require Docker.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # start the cache mutation detector by default so that cache mutators will be found
    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
    export KUBE_CACHE_MUTATION_DETECTOR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. hack/verify-import-boss.sh

    # `.import-restrictions` in each directory, then all imports of the package are
    # checked against each "rule" in the file.
    # Usage: `hack/verify-import-boss.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
    kube::util::require-jq
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. hack/verify-spelling.sh

    # limitations under the License.
    
    # This script checks commonly misspelled English words in all files in the
    # working directory by client9/misspell package.
    # Usage: `hack/verify-spelling.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    export KUBE_ROOT
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. hack/_update-generated-proto-bindings-dockerized.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script generates `*/api.pb.go` files from protobuf files `*/api.proto`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../" && pwd -P)"
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. hack/verify-import-aliases.sh

    # This script verifies that all the imports have our preferred alias(es). The
    # preferred aliases for imports are listed in `hack/.import-aliases`.
    # Usage: `hack/verify-import-aliases.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
    
    cd "${KUBE_ROOT}"
    
    ret=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. hack/verify-testing-import.sh

    # to avoid including test libraries in production binaries as they often lack
    # rigorous review and sufficient testing.
    # Usage: `hack/verify-test-code.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}"
    
    RELEASE_BIN_PKGS=(
      "${KUBE_ROOT}/cmd/cloud-controller-manager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 11:56:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top