Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for build_images (0.34 sec)

  1. prow/integ-suite-kind.sh

        export INTEGRATION_TEST_KUBECONFIG
        INTEGRATION_TEST_KUBECONFIG=NONE
      fi
    fi
    
    if [[ -z "${SKIP_BUILD:-}" ]]; then
      trace "setup kind registry" setup_kind_registry
      trace "build images" build_images "${PARAMS[*]}"
    fi
    
    # Run the test target if provided.
    if [[ -n "${PARAMS:-}" ]]; then
      trace "test" make "${PARAMS[*]}"
    fi
    
    # Check if the user is running the clusters in manual mode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. prow/lib.sh

    }
    
    function buildx-create() {
      WD=$(dirname "$0")
      WD=$(cd "$WD" || exit; pwd)
      ROOT=$(dirname "$WD")
      "$ROOT/prow/buildx-create"
    }
    
    function build_images() {
      SELECT_TEST="${1}"
    
      # Build just the images needed for tests
      targets="docker.pilot docker.proxyv2 "
    
      # use ubuntu:jammy to test vms by default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. tests/fuzz/README.md

    ## Local testing
    
    To run the fuzzers, follow these steps:
    
    ```bash
    git clone --depth=1 https://github.com/google/oss-fuzz.git
    cd oss-fuzz
    python infra/helper.py build_image istio
    python infra/helper.py build_fuzzers istio ~/go/src/istio.io/istio
    ```
    
    Reproduce failure:
    
    ```bash
    python infra/helper.py reproduce istio FuzzX ~/Downloads/clusterfuzz-testcase-minimized-FuzzX-1234
    ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
  4. cluster/images/etcd/cloudbuild.yaml

        dir: ./cluster/images/etcd
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
          - PUSH_REGISTRY=gcr.io/$PROJECT_ID
          - IMAGE=gcr.io/$PROJECT_ID/etcd
          - BUILD_IMAGE=debian-build
          - TMPDIR=/workspace
          - HOME=/root  # for docker buildx
        args:
          - '-c'
          - |
            gcloud auth configure-docker \
            && docker buildx create --name img-builder --use \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  5. build/make-build-image.sh

    # image.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    source "${KUBE_ROOT}/build/common.sh"
    
    kube::build::verify_prereqs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:34:36 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. build/release-images.sh

    # in one call with a single pass of syncing to the container + generating code
    if [[ -n "${KUBE_EXTRA_WHAT:-}" ]]; then
        CMD_TARGETS="${CMD_TARGETS} ${KUBE_EXTRA_WHAT}"
    fi
    
    kube::build::verify_prereqs
    kube::build::build_image
    kube::build::run_build_command make all WHAT="${CMD_TARGETS}" KUBE_BUILD_PLATFORMS="${KUBE_SERVER_PLATFORMS[*]}" DBG="${DBG:-}"
    
    kube::build::copy_output
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. build/run.sh

    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
    kube::build::build_image
    
    if [[ ${KUBE_RUN_COPY_OUTPUT} =~ ^[yY]$ ]]; then
      kube::log::status "Output from this container will be rsynced out upon completion. Set KUBE_RUN_COPY_OUTPUT=n to disable."
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:25:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. hack/dev-push-conformance.sh

    	exit 1
    fi
    if [[ -z "${VERSION:-}" ]]; then
    	echo "VERSION must be set"
    	exit 1
    fi
    
    IMAGE="${REGISTRY}/conformance-amd64:${VERSION}"
    
    kube::build::verify_prereqs
    kube::build::build_image
    kube::build::run_build_command make WHAT="github.com/onsi/ginkgo/v2/ginkgo test/e2e/e2e.test cmd/kubectl test/conformance/image/go-runner"
    kube::build::copy_output
    
    make -C "${KUBE_ROOT}/test/conformance/image" build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. build/release.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    source "${KUBE_ROOT}/build/lib/release.sh"
    
    KUBE_RELEASE_RUN_TESTS=${KUBE_RELEASE_RUN_TESTS-y}
    
    kube::build::verify_prereqs
    kube::build::build_image
    kube::build::run_build_command make cross
    
    if [[ $KUBE_RELEASE_RUN_TESTS =~ ^[yY]$ ]]; then
      kube::build::run_build_command make test
      kube::build::run_build_command make test-integration
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:27:43 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. build/common.sh

        chmod -R +w "${LOCAL_OUTPUT_ROOT}"
        rm -rf "${LOCAL_OUTPUT_ROOT}"
      fi
    }
    
    # Set up the context directory for the kube-build image and build it.
    function kube::build::build_image() {
      mkdir -p "${LOCAL_OUTPUT_BUILD_CONTEXT}"
      # Make sure the context directory owned by the right user for syncing sources to container.
      chown -R "${USER_ID}":"${GROUP_ID}" "${LOCAL_OUTPUT_BUILD_CONTEXT}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top