Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for registry_ (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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