Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for HUBS (0.03 sec)

  1. tools/docker-builder/types.go

    	if legacy, f := os.LookupEnv("DOCKER_ARCHITECTURES"); f {
    		arch = strings.Split(legacy, ",")
    	}
    
    	hub := []string{env.Register("HUB", "localhost:5000", "").Get()}
    	if hubs, f := os.LookupEnv("HUBS"); f {
    		hub = strings.Split(hubs, " ")
    	}
    	tag := []string{env.Register("TAG", "latest", "").Get()}
    	if tags, f := os.LookupEnv("TAGS"); f {
    		tag = strings.Split(tags, " ")
    	}
    
    	builder := DockerBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. tools/build-base-images.sh

    if len(yml) == 1: yml = yml[0]
    json.dump(yml, sys.stdout, indent=4)
    '
    }
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    buildx-create
    
    HUBS="${HUBS:?specify a space separated list of hubs}"
    TAG="${TAG:?specify a tag}"
    defaultTargets="$(< "${ROOT}/tools/docker.yaml" toJson | toJson | jq '[.images[] | select(.base) | .name] | join(",")' -r)"
    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. tools/gen_istio_image_list.sh

            hubs=()
            images=()
            tags=()
    
            for hub in ${HUB}; do
              hubs+=( "$hub" );
            done
    
            for img in ${IMAGE}; do
              images+=( "$img" );
            done
    
            for tag in ${TAG}; do
              tags+=( "$tag" );
            done
    
            for i in "${!hubs[@]}"; do
              if [ -z "${images[$i]}" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tools/docker-builder/common.go

    // limitations under the License.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func extractTags(a Args, target, variant string, hasDoubleDefault bool) []string {
    	tags := []string{}
    	for _, h := range a.Hubs {
    		for _, tg := range a.Tags {
    			if variant == DefaultVariant {
    				// For default, we have no suffix
    				tags = append(tags, fmt.Sprintf("%s/%s:%s%s", h, target, tg, a.suffix))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/tracing"
    	"istio.io/istio/pkg/util/sets"
    	pkgversion "istio.io/istio/pkg/version"
    )
    
    func main() {
    	rootCmd.Flags().StringSliceVar(&globalArgs.Hubs, "hub", globalArgs.Hubs, "docker hub(s)")
    	rootCmd.Flags().StringSliceVar(&globalArgs.Tags, "tag", globalArgs.Tags, "docker tag(s)")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

    import java.util.concurrent.LinkedBlockingQueue
    
    @Timeout(60)
    class MessageHubIntegrationTest extends ConcurrentSpec {
        final Action<Throwable> errorHandler = Mock()
    
        def "can wire two hubs together"() {
            Dispatch<String> clientHandler = Mock()
            Dispatch<String> serverHandler = Mock()
            def server = new Participant()
            def client = new Participant()
            client.connectTo(server)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. Makefile.core.mk

    $(TARGET_OUT):
    	@mkdir -p $@
    
    # If the hub is not explicitly set, use default to istio.
    HUB ?=istio
    ifeq ($(HUB),)
      $(error "HUB cannot be empty")
    endif
    
    # For dockerx builds, allow HUBS which is a space separated list of hubs. Default to HUB.
    HUBS ?= $(HUB)
    
    # If tag not explicitly set in users' .istiorc.mk or command line, default to the git sha.
    TAG ?= $(shell git rev-parse --verify HEAD)
    ifeq ($(TAG),)
    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