Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EastWestGatewayFor (1.07 sec)

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

    	IngressFor(cluster cluster.Cluster) ingress.Instance
    	// EastWestGatewayFor returns an ingress used for east-west traffic and accessing the control plane
    	// 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. tests/integration/pilot/workloadentry_test.go

    				port int
    			}
    			gatewayAddresses := map[string]gwAddr{}
    			for _, cluster := range t.Clusters() {
    				if _, ok := gatewayAddresses[cluster.NetworkName()]; ok {
    					continue
    				}
    				ips, ports := i.EastWestGatewayFor(cluster).AddressesForPort(15443)
    				if ips != nil {
    					gatewayAddresses[cluster.NetworkName()] = gwAddr{ips[0], ports[0]}
    				}
    			}
    			if len(t.Clusters().Networks()) != len(gatewayAddresses) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    	istioNS := ist.Settings().SystemNamespace
    	istioRevision := getIstioRevision(cfg.Namespace)
    	istioHost = istioctlcmd.IstiodHost(istioNS, istioRevision)
    
    	istioIPAddr := ist.EastWestGatewayFor(cfg.Cluster).DiscoveryAddresses()[0].Addr()
    	if !istioIPAddr.IsValid() {
    		log.Warnf("VM config failed to get east-west gateway IP for %s", cfg.Cluster.Name())
    		istioHost, istioIP = "", ""
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    	}
    	name := types.NamespacedName{Name: ingressServiceName, Namespace: ingressServiceNamespace}
    	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)
Back to top