Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for WorkloadSelector (0.45 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    		Meta: config.Meta{
    			GroupVersionKind: gvk.ProxyConfig,
    			Name:             "test",
    			Namespace:        "default",
    		},
    		Spec: &istioio_networking_v1beta1.ProxyConfig{
    			Selector: &istio_type_v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{
    					"gateway.networking.k8s.io/gateway-name": "default",
    				},
    			},
    			Image: &istioio_networking_v1beta1.ProxyImage{
    				ImageType: "distroless",
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

            typed_config:
              '@type': type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
              xff_num_trusted_hops: 1
              normalize_path: true
      workloadSelector:
        labels:
          istio: {{.GatewayIstioLabel | default "ingressgateway"}}
    ---
    ` + httpVirtualServiceTmpl,
    		opts: echo.CallOptions{
    			Count: 1,
    			Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    				},
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy",
    					},
    				},
    			},
    		},
    	}
    	sidecarClient := &tpb.Telemetry{
    		Selector: &v1beta1.WorkloadSelector{
    			MatchLabels: labels,
    		},
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Match: &tpb.AccessLogging_LogSelector{
    					Mode: tpb.WorkloadMode_CLIENT,
    				},
    				Providers: []*tpb.ProviderRef{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    			}
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination": "waypoint",
    			}, `apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: inbound
    spec:
      workloadSelector:
        labels:
          gateway.networking.k8s.io/gateway-name: "{{.Destination}}"
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            filterChain:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K 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/xds/bench_test.go

    				Name:              "selector",
    				Namespace:         "default",
    				CreationTimestamp: time.Now(),
    			},
    			Spec: &security.PeerAuthentication{
    				Selector: &v1beta1.WorkloadSelector{MatchLabels: map[string]string{"type": "eds-benchmark"}},
    				Mtls:     &security.PeerAuthentication_MutualTLS{Mode: security.PeerAuthentication_MutualTLS_DISABLE},
    			},
    		})
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		selector1 := func() *config.Config {
    			c := httpStaticOverlay.DeepCopy()
    			se := c.Spec.(*networking.ServiceEntry)
    			se.Hosts = append(se.Hosts, "selector1.com")
    			se.Endpoints = nil
    			se.WorkloadSelector = &networking.WorkloadSelector{
    				Labels: map[string]string{"app": "wle"},
    			}
    			return &c
    		}()
    		createConfigs([]*config.Config{selector1}, store, t)
    		// Service change, so we need a full push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    						SubjectAltNames:    []string{"foo.default.svc.cluster.local"},
    						InsecureSkipVerify: &wrappers.BoolValue{Value: true},
    					},
    				},
    				WorkloadSelector: &v1beta1.WorkloadSelector{},
    			},
    			enableAutoSni:            false,
    			enableVerifyCertAtClient: true,
    			expectTLSContext: &tls.UpstreamTlsContext{
    				CommonTlsContext: &tls.CommonTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        required:
                        - targetHost
                        - targetPort
                        type: object
                    type: object
                  workloadSelector:
                    description: Criteria used to select the specific set of pods/VMs
                      on which this `DestinationRule` configuration should be applied.
                    properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                        required:
                        - targetHost
                        - targetPort
                        type: object
                    type: object
                  workloadSelector:
                    description: Criteria used to select the specific set of pods/VMs
                      on which this `DestinationRule` configuration should be applied.
                    properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top