Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for BASE_VERSION (1.02 sec)

  1. tools/docker-builder/common.go

    	if baseDist == DefaultVariant {
    		baseDist = PrimaryVariant
    	}
    	m := map[string]string{
    		// Base version defines the tag of the base image to use. Typically, set in the Makefile and not overridden.
    		"BASE_VERSION": args.BaseVersion,
    		// Registry where the base image is stored
    		"ISTIO_BASE_REGISTRY": args.BaseImageRegistry,
    		// Base distribution picks which variant to build
    		"BASE_DISTRIBUTION": baseDist,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tools/docker-builder/types.go

    		SupportsEmulation: qemu,
    	}
    }
    
    var (
    	globalArgs = DefaultArgs()
    	version    = false
    )
    
    var baseVersionRegexp = regexp.MustCompile(`BASE_VERSION \?= (.*)`)
    
    func fetchBaseVersion() string {
    	if b, f := os.LookupEnv("BASE_VERSION"); f {
    		return b
    	}
    	b, err := os.ReadFile(filepath.Join(testenv.IstioSrc, "Makefile.core.mk"))
    	if err != nil {
    		log.Fatalf("failed to read file: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. Makefile.core.mk

    $(error VERSION not detected. Make sure it's stored in the VERSION file or defined in VERSION variable)
    endif
    VERSION := $(VERSION_FROM_FILE)-dev
    endif
    
    export VERSION
    
    # Base version of Istio image to use
    BASE_VERSION ?= master-2024-06-02T19-03-25
    ISTIO_BASE_REGISTRY ?= gcr.io/istio-release
    
    export GO111MODULE ?= on
    export GOPROXY ?= https://proxy.golang.org
    export GOSUMDB ?= sum.golang.org
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top