Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 119 of 119 for registry_ (0.09 sec)

  1. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    func NewWithDelegate(delegate model.XDSUpdater) *Updater {
    	return &Updater{
    		Events:   make(chan Event, 100),
    		Delegate: delegate,
    	}
    }
    
    // Updater is used to test the registry.
    type Updater struct {
    	// Events tracks notifications received by the updater
    	Events   chan Event
    	Delegate model.XDSUpdater
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/multiplecontrolplanes/main_test.go

    					statusCode: http.StatusOK,
    					from:       apps.NS[1].A,
    					to:         apps.NS[2].B,
    				},
    				{
    					name:       "workloads within different usergroups cannot communicate, registry only",
    					statusCode: http.StatusBadGateway,
    					from:       apps.NS[0].A,
    					to:         apps.NS[1].B,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

        plural: destinationrules
        shortNames:
        - dr
        singular: destinationrule
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The name of a service from the service registry
          jsonPath: .spec.host
          name: Host
          type: string
        - description: 'CreationTimestamp is a timestamp representing the server time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    	DefaultNetworkGatewayPort = 15443
    )
    
    var log = istiolog.RegisterScope("kube", "kubernetes service registry controller")
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    	eventTag = monitoring.CreateLabel("event")
    
    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_reg_events",
    		"Events from k8s registry.",
    	)
    
    	// nolint: gocritic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    	AutoAllocatedIPv6Address string `json:"autoAllocatedIPv6Address,omitempty"`
    
    	// Resolution indicates how the service instances need to be resolved before routing
    	// traffic. Most services in the service registry will use static load balancing wherein
    	// the proxy will decide the service instance that will receive the traffic. Service entries
    	// could either use DNS load balancing (i.e. proxy will query DNS server for the IP of the service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/helper_test.go

    	if err := t.ConfigIstio().YAML(serviceNamespace.Name(), b).Apply(); err != nil {
    		t.Fatalf("failed to apply gateway: %v. template: %v", err, b)
    	}
    }
    
    // TODO support native environment for registry only/gateway. Blocked by #13177 because the listeners for native use static
    // routes and this test relies on the dynamic routes sent through pilot to allow external traffic.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/adsc/adsc.go

    	Mesh *v1alpha1.MeshConfig
    
    	// Retrieved configurations can be stored using the common istio model interface.
    	Store model.ConfigStore
    
    	// Retrieved endpoints can be stored in the memory registry. This is used for CDS and EDS responses.
    	Registry *memory.ServiceDiscovery
    
    	// LocalCacheDir is set to a base name used to save fetched resources.
    	// If set, each update will be saved.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    		// 127.0.0.1 and the specified Port.
    		//
    		// If capture mode is NONE, i.e., bindToPort is true, and
    		// only Bind IP is specified, we will bind to the specified IP
    		// for each port as defined in the service registry.
    		//
    		// If captureMode is not NONE, i.e., bindToPort is false, then
    		// we will bind to user specified IP (if any) or to the VIPs of services in
    		// this egress listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	OutboundTrafficPolicyConfig_ALLOW_ANY OutboundTrafficPolicyConfig_Mode = 0
    	// Restrict outbound traffic to services defined in the service registry as well as those defined through ServiceEntries
    	OutboundTrafficPolicyConfig_REGISTRY_ONLY OutboundTrafficPolicyConfig_Mode = 1
    )
    
    // Enum value maps for OutboundTrafficPolicyConfig_Mode.
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top