Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exposeUserServices (0.16 sec)

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

    	}, componentDeployTimeout, componentDeployDelay); err != nil {
    		return fmt.Errorf("failed waiting for %s to become ready: %v", eastWestIngressServiceName, err)
    	}
    
    	return nil
    }
    
    func (i *istioImpl) exposeUserServices(cluster cluster.Cluster) error {
    	scopes.Framework.Infof("Exposing services via eastwestgateway in %v", cluster.Name())
    	return cluster.ApplyYAMLFiles(i.cfg.SystemNamespace, exposeServicesGateway)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    		}
    	}
    
    	if i.env.IsMultiNetwork() {
    		// enable cross network traffic
    		for _, c := range ctx.Clusters().Configs() {
    			if err := i.exposeUserServices(c); err != nil {
    				return nil, err
    			}
    		}
    	}
    
    	return i, nil
    }
    
    func initIOPFile(cfg Config, iopFile string, valuesYaml string) (*opAPI.IstioOperatorSpec, error) {
    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