Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. pkg/test/fakes/imageregistry/Dockerfile

    FROM scratch
    ARG TARGETARCH
    COPY main-${TARGETARCH:-amd64}  /registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 95 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/test/fakes/imageregistry/Makefile

    # limitations under the License.
    
    .PHONY: build build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    HUB ?= gcr.io/istio-testing
    IMG := $(HUB)/fake-registry
    BIN_NAME := main
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.3
    
    all: build_and_push clean
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K 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