Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for registry_ (0.1 sec)

  1. pilot/pkg/xds/discovery.go

    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/security"
    )
    
    var periodicRefreshMetrics = 10 * time.Second
    
    type DebounceOptions struct {
    	// DebounceAfter is the delay added to events to wait
    	// after a registry/config event for debouncing.
    	// This will delay the push by at least this interval, plus
    	// the time getting subsequent events. If no change is
    	// detected the push will happen, otherwise we'll keep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tests/integration/ambient/registry_setup_test.go

    			[]byte(createDockerCredential(registryUser, registryPasswd, registry.Address()))),
    	}
    	if err := ctx.ConfigIstio().EvalFile(apps.Namespace.Name(), args, "testdata/registry-secret.yaml").
    		Apply(apply.CleanupConditionally); err != nil {
    		return err
    	}
    	return nil
    }
    
    func createDockerCredential(user, passwd, registry string) string {
    	credentials := `{
    	"auths":{
    		"%v":{
    			"username": "%v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. Makefile.core.mk

    .PHONY: push
    
    # for now docker is limited to Linux compiles - why ?
    include tools/istio-docker.mk
    
    push: docker.push ## Build and push docker images to registry defined by $HUB and $TAG
    
    #-----------------------------------------------------------------------------
    # Target: environment and tools
    #-----------------------------------------------------------------------------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster.go

    	istioMtlsSni    string
    	clusterMode     ClusterMode
    	direction       model.TrafficDirection
    	meshExternal    bool
    	serviceMTLSMode model.MutualTLSMode
    	// Indicates the service registry of the cluster being built.
    	serviceRegistry provider.ID
    	// Indicates if the destinationRule has a workloadSelector
    	isDrWithSelector bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/deployment-service-no-selector.yaml"},
    		analyzer:   &deployment.ServiceAssociationAnalyzer{},
    		expected:   []message{},
    	},
    	{
    		name: "unknown service registry in mesh networks",
    		inputFiles: []string{
    			"testdata/multicluster-unknown-serviceregistry.yaml",
    		},
    		meshNetworksFile: "testdata/common/meshnetworks.yaml",
    		analyzer:         &multicluster.MeshNetworksAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1/generated.proto

      optional bool seLinuxMount = 8;
    }
    
    // CSINode holds information about all CSI drivers installed on a node.
    // CSI drivers do not need to create the CSINode object directly. As long as
    // they use the node-driver-registrar sidecar container, the kubelet will
    // automatically populate the CSINode object for the CSI driver as part of
    // kubelet plugin registration.
    // CSINode has the same name as a node. If the object is missing, it means either
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pkg/dns/client/dns_test.go

    				Ips:      []string{"2001:db8:0:0:0:ff00:42:8329"},
    				Registry: "External",
    			},
    			"dual.localhost": {
    				Ips:      []string{"2.2.2.2", "2001:db8:0:0:0:ff00:42:8329"},
    				Registry: "External",
    			},
    			"ipv4.localhost": {
    				Ips:      []string{"2.2.2.2"},
    				Registry: "External",
    			},
    			"*.b.wildcard": {
    				Ips:      []string{"11.11.11.11"},
    				Registry: "External",
    			},
    			"*.wildcard": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top