Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for registry_ (0.14 sec)

  1. pilot/pkg/model/sidecar_test.go

    			},
    		},
    		{
    			name:       "MeshConfig registry only, Sidecar with registry only",
    			meshConfig: meshConfigWithRegistryOnly,
    			sidecar:    configRegistryOnly,
    			outboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_REGISTRY_ONLY,
    			},
    		},
    		{
    			name:       "MeshConfig registry only, Sidecar with allow any",
    			meshConfig: meshConfigWithRegistryOnly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    				virtualServiceWithNestedWildcardHost,
    				virtualServiceWithGoogleWildcardHost,
    			},
    			Services: []*model.Service{exampleWildcardService, exampleNestedWildcardService},
    		})
    
    		// Redefine the service registry for this test
    		serviceRegistry := map[host.Name]*model.Service{
    			"*.example.org":             exampleWildcardService,
    			"goodbye.hello.example.org": exampleNestedWildcardService,
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      // +patchMergeKey=uid
      // +patchStrategy=merge
      repeated OwnerReference ownerReferences = 13;
    
      // Must be empty before the object is deleted from the registry. Each entry
      // is an identifier for the responsible component that will remove the entry
      // from the list. If the deletionTimestamp of the object is non-nil, entries
      // in this list can only be removed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			want:  nil,
    		},
    		{
    			name:  "proxy with IP not in the registry",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"1.1.1.1"}},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP from the registry, 1 matching WE, but no matching Service",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"4.4.4.41"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    // TestWorkloadInstances is effectively an integration test of composing the Kubernetes service registry with the
    // external service registry, which have cross-references by workload instances.
    func TestWorkloadInstances(t *testing.T) {
    	istiotest.SetForTest(t, &features.WorkloadEntryHealthChecks, true)
    	port := &networking.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // to use for pulling any images in pods that reference this ServiceAccount.
      // Must be set for any cluster configured with private docker registry.
      repeated string imagePullSecrets = 37;
    
      // Specifies the default namespace for the Istio control plane components.
      string istioNamespace = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	}
    	allocateAndValidate()
    }
    
    func TestWorkloadEntryOnlyMode(t *testing.T) {
    	store, registry, _ := initServiceDiscoveryWithOpts(t, true)
    	createConfigs([]*config.Config{httpStatic}, store, t)
    	svcs := registry.Services()
    	if len(svcs) > 0 {
    		t.Fatalf("expected 0 services, got %d", len(svcs))
    	}
    	svc := registry.GetService("*.google.com")
    	if svc != nil {
    		t.Fatalf("expected nil, got %v", svc)
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top