Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CustomIngressFor (0.19 sec)

  1. pkg/test/framework/components/istio/istio.go

    	// from outside of the cluster.
    	EastWestGatewayFor(cluster cluster.Cluster) ingress.Instance
    	// CustomIngressFor returns an ingress with a specific service name and "istio" label used for reaching workloads
    	// in the given cluster.
    	CustomIngressFor(cluster cluster.Cluster, service types.NamespacedName, istioLabel string) ingress.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    	return i.CustomIngressFor(c, name, ingressServiceLabel)
    }
    
    func (i *istioImpl) EastWestGatewayFor(c cluster.Cluster) ingress.Instance {
    	name := types.NamespacedName{Name: eastWestIngressServiceName, Namespace: i.cfg.SystemNamespace}
    	return i.CustomIngressFor(c, name, eastWestIngressIstioLabel)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/run.go

    				Name:      dstInstances.ServiceName() + "-gateway",
    			},
    			GatewayClass: gatewayClass,
    		}
    		// Build and apply per-destination config
    		gwIngress := istioInstance.CustomIngressFor(ctx.Clusters()[0], gwInstance.ServiceName(), fmt.Sprintf("%s=%s", constants.GatewayNameLabel, gwInstance.Name))
    		callers := ingress.Instances{gwIngress}.Callers()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top