Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for errorexit (0.12 sec)

  1. samples/bookinfo/src/build-services.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 -ox errexit
    
    # Get to the root directory of the repo...
    SCRIPTDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
    cd "$SCRIPTDIR/../../.."
    
    h="${BOOKINFO_HUB:?BOOKINFO_HUB must be set}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. build/release-images.sh

    # limitations under the License.
    
    # Build Kubernetes release images. This will build the server target binaries,
    # and create wrap them in Docker images, see `make release` for full releases
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    source "${KUBE_ROOT}/build/lib/release.sh"
    
    CMD_TARGETS="${KUBE_SERVER_IMAGE_TARGETS[*]}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. build/release-in-a-container.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
    
    # Complete the release with the standard env
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Check and error if not "in-a-container"
    if [[ ! -f /.dockerenv ]]; then
      echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:31:15 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. build/run.sh

    # Run a command in the docker build container.  Typically this will be one of
    # the commands in `hack/`.  When running in the build container the user is sure
    # to have a consistent reproducible build environment.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "$KUBE_ROOT/build/common.sh"
    
    KUBE_RUN_COPY_OUTPUT="${KUBE_RUN_COPY_OUTPUT:-y}"
    
    kube::build::verify_prereqs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:25:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. hack/build-cross.sh

    # This script runs `make cross` command.
    # The command sets up a go workspace locally and builds all for all appropriate
    # platforms.
    # Usage: `hack/build-cross.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    echo "NOTE: $0 has been replaced by 'make cross'"
    echo
    echo "The equivalent of this invocation is: "
    echo "    make cross"
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. hack/test-integration.sh

    # `make test-integration` runs all integration tests.
    # Usage: `make test-integration`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    echo "$0 has been replaced by 'make test-integration'"
    echo
    echo "The following invocation will run all integration tests: "
    echo '    make test-integration'
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. hack/e2e-internal/e2e-cluster-size.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]}")/../..
    
    : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}"
    : "${KUBE_CONFIG_FILE:="config-test.sh"}"
    
    export KUBECTL KUBE_CONFIG_FILE
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 987 bytes
    - Viewed (0)
  9. 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)
  10. hack/verify-pkg-names.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies whether codes follow golang convention.
    # Usage: `hack/verify-pkg-names.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}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 21:06:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top