Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for build_images (0.16 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. 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)
  4. 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)
  5. 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