Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for registry_ (0.09 sec)

  1. pilot/pkg/xds/eds_sh_test.go

    	// Set up a cluster registry for network 1 with 1 instance for the service 'service5'
    	// Network has 1 gateway
    	initRegistry(s, 1, []string{"159.122.219.1"}, 1)
    	// Set up a cluster registry for network 2 with 2 instances for the service 'service5'
    	// Network has 1 gateway
    	initRegistry(s, 2, []string{"159.122.219.2"}, 2)
    	// Set up a cluster registry for network 3 with 3 instances for the service 'service5'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/wasm/cache_test.go

    	httpDataCheckSum := hex.EncodeToString(httpDataSha[:])
    	invalidHTTPDataSha := sha256.Sum256(invalidHTTPData)
    	invalidHTTPDataCheckSum := hex.EncodeToString(invalidHTTPDataSha[:])
    
    	reg := registry.New()
    	// Set up a fake registry for OCI images.
    	tos := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		atomic.AddInt32(&tsNumRequest, 1)
    		reg.ServeHTTP(w, r)
    	}))
    	defer tos.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	// Stores VS hosts that don't correspond to services in the registry
    	// Currently, the only use for this list is to enable VirtualService configuration to affect
    	// traffic to hosts outside of the service registry (e.g. google.com) on port 80
    	nonServiceRegistryHosts := make([]string, 0)
    	// Stores services for this VirtualService that are in the registry (based on hostname)
    	matchingRegistryServices := make([]*model.Service, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/wasm_test.go

    	return apps.Captured
    }
    
    func GetTarget() echo.Target {
    	return apps.ServiceAddressedWaypoint
    }
    
    func mapTagToVersionOrFail(t framework.TestContext, tag, version string) {
    	t.Helper()
    	if err := registry.SetupTagMap(map[string]string{
    		imageName + ":" + tag: version,
    	}); err != nil {
    		t.Fatalf("failed to setup the tag map: %v", err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/rds_test.go

    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    // Common code for the xds testing.
    // The tests in this package use an in-process pilot using mock service registry and
    // envoy.
    
    func sidecarID(ip, deployment string) string { // nolint: unparam
    	return fmt.Sprintf("sidecar~%s~%s-644fc65469-96dza.testns~testns.svc.cluster.local", ip, deployment)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tools/docker-builder/common.go

    		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,
    		// Additional metadata injected into some images
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. tools/docker-builder/builder/crane.go

    	"context"
    	"fmt"
    	"io"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/go-containerregistry/pkg/authn"
    	"github.com/google/go-containerregistry/pkg/name"
    	"github.com/google/go-containerregistry/pkg/registry"
    	v1 "github.com/google/go-containerregistry/pkg/v1"
    	"github.com/google/go-containerregistry/pkg/v1/empty"
    	"github.com/google/go-containerregistry/pkg/v1/mutate"
    	"github.com/google/go-containerregistry/pkg/v1/remote"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/features/tuning.go

    		// 1: 20
    		// 2: 25
    		// 4: 35
    		// 32: 100
    		return min(float64(15+5*procs), 100.0)
    	}()
    
    	DebounceAfter = env.Register(
    		"PILOT_DEBOUNCE_AFTER",
    		100*time.Millisecond,
    		"The delay added to config/registry events for debouncing. This will delay the push by "+
    			"at least this interval. If no change is detected within this period, the push will happen, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute_test.go

    					"*": true,
    				},
    			},
    			registryOnly: true,
    		},
    		{
    			name:                  "no sidecar config with virtual services with no service in registry",
    			routeName:             "80", // no service for the host in registry; use port 80 by default
    			sidecarConfig:         nil,
    			virtualServiceConfigs: []*config.Config{&virtualService3},
    			expectedHosts: map[string]map[string]bool{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top