Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for WorkloadSelector (0.16 sec)

  1. pilot/pkg/networking/core/accesslog_test.go

    	configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "test",
    			Namespace:        "default",
    			GroupVersionKind: gvk.Telemetry,
    		},
    		Spec: &tpb.Telemetry{
    			Selector: &v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{
    					"app": "test",
    				},
    			},
    			AccessLogging: []*tpb.AccessLogging{
    				{
    					Providers: []*tpb.ProviderRef{
    						{
    							Name: "envoy-json",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/peer_authentication_simulation_test.go

          number: 8080
          protocol: TCP
      - defaultEndpoint: 127.0.0.1:9090
        port:
          name: plaintext
          number: 9090
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
      workloadSelector:
        labels:
          app: foo
    ---`
    	partialSidecar := `
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      labels:
        app: foo
      name: sidecar
    spec:
      ingress:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		name: "destinationrule with credentialname, simple at destinationlevel, workloadSelector",
    		inputFiles: []string{
    			"testdata/destinationrule-simple-destination-credentialname-selector.yaml",
    		},
    		analyzer: &destinationrule.CaCertificateAnalyzer{},
    		expected: []message{},
    	},
    	{
    		name: "destinationrule with credentialname, simple at portlevel, no workloadSelector",
    		inputFiles: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	EnableSelectorBasedK8sGatewayPolicy = env.Register("ENABLE_SELECTOR_BASED_K8S_GATEWAY_POLICY", true,
    		"If disabled, Gateway API gateways will ignore workloadSelector policies, only"+
    			"applying policies that select the gateway with a targetRef.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		implicitEndpoints := len(eps) == 0 &&
    			(se.Spec.Resolution == networkingv1alpha3.ServiceEntry_DNS || se.Spec.Resolution == networkingv1alpha3.ServiceEntry_DNS_ROUND_ROBIN) &&
    			se.Spec.WorkloadSelector == nil
    		if len(eps) == 0 && !implicitEndpoints {
    			return nil
    		}
    		// here we don't care about the *service* waypoint (hence it is nil); we are only going to use a subset of the info in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    	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
    }
    
    func applyTCPKeepalive(mesh *meshconfig.MeshConfig, c *cluster.Cluster, tcp *networking.ConnectionPoolSettings_TCPSettings) {
    	// Apply mesh wide TCP keepalive if available.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top