Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 331 for knetworking (0.34 sec)

  1. pilot/pkg/config/kube/ingress/conversion_test.go

    			Namespace: "mock",
    		},
    		Spec: knetworking.IngressSpec{
    			Rules: []knetworking.IngressRule{
    				{
    					Host: "my.host.com",
    					IngressRuleValue: knetworking.IngressRuleValue{
    						HTTP: &knetworking.HTTPIngressRuleValue{
    							Paths: []knetworking.HTTPIngressPath{
    								{
    									Path: "/test2",
    									Backend: knetworking.IngressBackend{
    										Service: &knetworking.IngressServiceBackend{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/controller.go

    	gatewayHandlers        []model.EventHandler
    
    	mutex sync.RWMutex
    	// processed ingresses
    	ingresses map[types.NamespacedName]*knetworking.Ingress
    
    	classes  kclient.Client[*knetworking.IngressClass]
    	ingress  kclient.Client[*knetworking.Ingress]
    	services kclient.Client[*corev1.Service]
    }
    
    var IngressNamespace = env.Register("K8S_INGRESS_NS", constants.IstioSystemNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/conversion.go

    				switch *httpPath.PathType {
    				case knetworking.PathTypeExact:
    					httpMatch.Uri = &networking.StringMatch{
    						MatchType: &networking.StringMatch_Exact{Exact: httpPath.Path},
    					}
    				case knetworking.PathTypePrefix:
    					// Optimize common case of / to not needed regex
    					httpMatch.Uri = &networking.StringMatch{
    						MatchType: &networking.StringMatch_Prefix{Prefix: httpPath.Path},
    					}
    				default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/config/validation/virtualservice_test.go

    				Name:      "test",
    				Namespace: "test",
    			},
    			Match: []*networking.HTTPMatchRequest{{
    				Uri: &networking.StringMatch{
    					MatchType: &networking.StringMatch_Regex{Regex: "test"},
    				},
    			}},
    		}, valid: true},
    		{name: "prefix uri match", route: &networking.HTTPRoute{
    			Delegate: &networking.Delegate{
    				Name:      "test",
    				Namespace: "test",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1beta1/zz_generated.conversion.go

    package v1beta1
    
    import (
    	unsafe "unsafe"
    
    	v1 "k8s.io/api/core/v1"
    	v1beta1 "k8s.io/api/networking/v1beta1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	core "k8s.io/kubernetes/pkg/apis/core"
    	networking "k8s.io/kubernetes/pkg/apis/networking"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  6. pkg/config/validation/envoyfilter/envoyfilter_test.go

    				{
    					ApplyTo: networking.EnvoyFilter_CLUSTER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Cluster{
    							Cluster: &networking.EnvoyFilter_ClusterMatch{},
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_ADD,
    						Value: &structpb.Struct{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    							Name: "vhost1",
    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{Operation: networking.EnvoyFilter_Patch_REMOVE},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_VIRTUAL_HOST,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_INBOUND,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    			CreationTimestamp: GlobalTime,
    		},
    		Spec: &networking.ServiceEntry{
    			Hosts: []string{"*.google.com"},
    			Ports: []*networking.ServicePort{
    				{Number: 80, Name: "http-number", Protocol: "http"},
    				{Number: 8080, Name: "http2-number", Protocol: "http2"},
    			},
    			Location:   networking.ServiceEntry_MESH_EXTERNAL,
    			Resolution: networking.ServiceEntry_NONE,
    		},
    	}
    )
    
    var tcpNone = &config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    				ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Cluster{
    					Cluster: &networking.EnvoyFilter_ClusterMatch{
    						PortNumber: 9999,
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{Operation: networking.EnvoyFilter_Patch_REMOVE},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    		Spec: simpleDestinationRuleSpec,
    	}
    
    	destinationRuleSpec := &networking.DestinationRule{
    		Host: "test.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    			LoadBalancer: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    						HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_UseSourceIp{UseSourceIp: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top