Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for KUBE_VERBOSE (0.13 sec)

  1. hack/lib/logging.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Controls verbosity of the script output and logging.
    KUBE_VERBOSE="${KUBE_VERBOSE:-2}"
    
    # Handler for when we exit automatically on an error.
    # Borrowed from https://gist.github.com/ahendrix/7030300
    kube::log::errexit() {
      local err="${PIPESTATUS[*]}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. hack/make-rules/build.sh

    # This script sets up a go workspace locally and builds all go components.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::golang::build_binaries "$@"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 05 14:36:57 UTC 2024
    - 936 bytes
    - Viewed (0)
  3. hack/update-codegen.sh

    # limitations under the License.
    
    # shellcheck disable=2046 # printf word-splitting is intentional
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # This tool wants a different default than usual.
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    cd "${KUBE_ROOT}"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. hack/verify-import-boss.sh

    packages=()
    kube::util::read-array packages < <(
        go work edit -json | jq -r '.Use[].DiskPath + "/..."'
    )
    
    GOPROXY=off \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. hack/_update-generated-protobuf-dockerized.sh

    # satisfies import of github.com/gogo/protobuf/gogoproto/gogo.proto and the
    # core Google protobuf types
    PATH="${KUBE_ROOT}/_output/bin:${PATH}" \
      go-to-protobuf \
      -v "${KUBE_VERBOSE}" \
      --go-header-file "${KUBE_ROOT}/hack/boilerplate/boilerplate.generatego.txt" \
      --output-dir="${KUBE_ROOT}/staging/src" \
      --proto-import="${KUBE_ROOT}/staging/src" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. build/common.sh

        cmd+=("$1")
        shift
      done
    
      docker_run_opts+=(
        --env "KUBE_FASTBUILD=${KUBE_FASTBUILD:-false}"
        --env "KUBE_BUILDER_OS=${OSTYPE:-notdetected}"
        --env "KUBE_VERBOSE=${KUBE_VERBOSE}"
        --env "KUBE_BUILD_WITH_COVERAGE=${KUBE_BUILD_WITH_COVERAGE:-}"
        --env "KUBE_BUILD_PLATFORMS=${KUBE_BUILD_PLATFORMS:-}"
        --env "KUBE_CGO_OVERRIDES=' ${KUBE_CGO_OVERRIDES[*]:-} '"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. hack/local-up-cluster.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.
    
    KUBE_VERBOSE=${KUBE_VERBOSE:-1}
    if (( KUBE_VERBOSE > 4 )); then
      set -x
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # This script builds and runs a local kubernetes cluster. You may need to run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. build/root/Makefile

    GOFLAGS := $(KUBE_GOFLAGS)
    unexport KUBE_GOFLAGS
    else
    $(error Both KUBE_GOFLAGS and GOFLAGS are set. Please use just GOFLAGS)
    endif
    endif
    
    # This controls the verbosity of the build.  Higher numbers mean more output.
    KUBE_VERBOSE ?= 1
    
    define ALL_HELP_INFO
    # Build code.
    #
    # Args:
    #   WHAT: Directory or Go package names to build.  If any of these directories
    #   has a 'main' package, the build will produce executable files under
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top