Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for supportedFeatures (0.23 sec)

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

    	"istio.io/istio/pkg/util/sets"
    )
    
    var SupportedFeatures = features.AllFeatures
    
    var gatewaySupportedFeatures = getSupportedFeatures()
    
    func getSupportedFeatures() []k8sv1.SupportedFeature {
    	ret := sets.New[k8sv1.SupportedFeature]()
    	for _, feature := range SupportedFeatures.UnsortedList() {
    		ret.Insert(k8sv1.SupportedFeature(feature))
    	}
    	return sets.SortedList(ret)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. tests/integration/pilot/gateway_conformance_test.go

    				Mapper: mapper,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			supportedFeatures := gateway.SupportedFeatures.Clone().
    				Delete(features.SupportMeshClusterIPMatching) // https://github.com/istio/istio/issues/44702
    			if ctx.Settings().GatewayConformanceStandardOnly {
    				supportedFeatures = k8ssets.New[features.SupportedFeature]().
    					Insert(features.GatewayExtendedFeatures.UnsortedList()...).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

      name: istio
      namespace: default
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Handled by Istio controller
        reason: Accepted
        status: "True"
        type: Accepted
      supportedFeatures:
      - HTTPRouteFeatureA
      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: gateway
      namespace: istio-system
    spec: null
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/gateway_conformance_test.go

    				Mapper: mapper,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			hostnameType := v1.AddressType("Hostname")
    			istioVersion, _ := env.ReadVersion()
    			supported := gateway.SupportedFeatures.Clone().Delete(gwfeatures.SupportMeshConsumerRoute)
    			opts := suite.ConformanceOptions{
    				Client:                   c,
    				Clientset:                gatewayConformanceInputs.Client.Kube(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    func newHostNetworkService(hcnImpl HcnService) (HostNetworkService, hcn.SupportedFeatures) {
    	var h HostNetworkService
    	supportedFeatures := hcnImpl.GetSupportedFeatures()
    	if supportedFeatures.Api.V2 {
    		h = hns{
    			hcn: hcnImpl,
    		}
    	} else {
    		panic("Windows HNS Api V2 required. This version of windows does not support API V2")
    	}
    	return h, supportedFeatures
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    		})
    	}
    
    	return res
    }
    
    // parentKey holds info about a parentRef (eg route binding to a Gateway). This is a mirror of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion_test.go

    			c.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    				gcs := s.(*k8s.GatewayClassStatus)
    				gcs.SupportedFeatures = []k8s.SupportedFeature{"HTTPRouteFeatureA", "HTTPRouteFeatureB"}
    				return gcs
    			})
    		}
    		c = c.DeepCopy()
    		c.Spec = nil
    		c.Labels = nil
    		c.Annotations = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

                    x-kubernetes-list-type: map
                  supportedFeatures:
                    description: |
                      SupportedFeatures is the set of features the GatewayClass support.
                      It MUST be sorted in ascending alphabetical order.
                    items:
                      description: |-
                        SupportedFeature is used to describe distinct features that are covered by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top