Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KUBE_VERBOSE (0.19 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/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)
  4. 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)
Back to top