Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ISTIO_DOCKER_QEMU (0.15 sec)

  1. prow/release-commit.sh

    GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
    
    # Enable emulation required for cross compiling a few images (VMs)
    docker run --rm --privileged "${DOCKER_HUB}/qemu-user-static" --reset -p yes
    export ISTIO_DOCKER_QEMU=true
    
    # Use a pinned version in case breaking changes are needed
    BUILDER_SHA=159efd4a18a7325192c4f7cb0acbe5648bfb8658
    
    # Reference to the next minor version of Istio
    # This will create a version like 1.4-alpha.sha
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tools/docker-builder/types.go

    	builder := DockerBuilder
    	if b, f := os.LookupEnv("ISTIO_DOCKER_BUILDER"); f {
    		builder = b
    	}
    
    	// TODO: consider automatically detecting Qemu support
    	qemu := false
    	if b, f := os.LookupEnv("ISTIO_DOCKER_QEMU"); f {
    		q, err := strconv.ParseBool(b)
    		if err == nil {
    			qemu = q
    		}
    	}
    
    	return Args{
    		Push:              false,
    		Save:              false,
    		NoCache:           false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top