Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for gatewaylast (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		route      string
    		count      int
    		expected   *Route
    		errStrFrag string
    	}{
    		{"gatewayfirst", gatewayfirst, 1, &ipv4Route, ""},
    		{"gatewaymiddle", gatewaymiddle, 1, &ipv4Route, ""},
    		{"gatewaylast", gatewaylast, 1, &ipv4Route, ""},
    		{"no routes", nothing, 0, nil, ""},
    		{"badDestination", badDestination, 0, nil, "invalid IPv4"},
    		{"badGateway", badGateway, 0, nil, "invalid IPv4"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/gatewayclass.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/util/istiomultierror"
    )
    
    // ClassController is a controller that creates the default Istio GatewayClass(s). This will not
    // continually reconcile the full state of the GatewayClass object, and instead only create the class
    // if it doesn't exist. This allows users to manage it through other means or modify it as they wish.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    			return p.Spec.ServiceAccountName
    		})
    
    		// default traffic type if neither GatewayClass nor Gateway specify a type
    		trafficType := constants.ServiceTraffic
    
    		gatewayClass := ptr.OrEmpty(krt.FetchOne(ctx, GatewayClasses, krt.FilterKey(string(gateway.Spec.GatewayClassName))))
    		if gatewayClass == nil {
    			log.Warnf("could not find GatewayClass %s for Gateway %s/%s", gateway.Spec.GatewayClassName, gateway.Namespace, gateway.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/controller.go

    func (c *Controller) Reconcile(ps *model.PushContext) error {
    	t0 := time.Now()
    	defer func() {
    		log.Debugf("reconcile complete in %v", time.Since(t0))
    	}()
    	gatewayClass := c.cache.List(gvk.GatewayClass, metav1.NamespaceAll)
    	gateway := c.cache.List(gvk.KubernetesGateway, metav1.NamespaceAll)
    	httpRoute := c.cache.List(gvk.HTTPRoute, metav1.NamespaceAll)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. pkg/config/schema/kind/resources.gen.go

    		return "EndpointSlice"
    	case Endpoints:
    		return "Endpoints"
    	case EnvoyFilter:
    		return "EnvoyFilter"
    	case GRPCRoute:
    		return "GRPCRoute"
    	case Gateway:
    		return "Gateway"
    	case GatewayClass:
    		return "GatewayClass"
    	case HTTPRoute:
    		return "HTTPRoute"
    	case Ingress:
    		return "Ingress"
    	case IngressClass:
    		return "IngressClass"
    	case KubernetesGateway:
    		return "Gateway"
    	case Lease:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mismatch.yaml

    # Mismatch shows that we don't generate config for Gateways that do not match the GatewayClass
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      name: istio
    spec:
      controllerName: istio.io/gateway-controller
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 520 bytes
    - Viewed (0)
  7. releasenotes/notes/custom-gw-classname.yaml

      **Added** an environment variable for istiod `PILOT_GATEWAY_API_CONTROLLER_NAME` that allows overriding the name of the Istio Gateway API controller as exposed in the `spec.controllerName` field in the `GatewayClass` resource. The default value is `istio.io/gateway-controller`....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 574 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/basic-http.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      name: acme-lb
    spec:
      controllerName: acme.io/gateway-controller
      parametersRef:
        name: acme-lb
        group: acme.io
        kind: Parameters
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: my-gateway
    spec:
      gatewayClassName: acme-lb
      listeners:  # Use GatewayClass defaults for listener definition.
      - name: http
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/alias.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      name: istio
    spec:
      controllerName: istio.io/gateway-controller
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: third-party-gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: third-party-gatewayclass
      listeners:
      - name: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. pkg/config/schema/gvk/resources.gen.go

    	GatewayClass                   = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1beta1", Kind: "GatewayClass"}
    	GatewayClass_v1alpha2          = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Kind: "GatewayClass"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top