Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		iopFiles:             iopFiles,
    		ingress:              map[string]map[string]ingress.Instance{},
    		istiod:               map[string]istiokube.PortForwarder{},
    		externalControlPlane: ctx.AllClusters().IsExternalControlPlane(),
    	}
    
    	t0 := time.Now()
    	defer func() {
    		ctx.RecordTraceEvent("istio-deploy", time.Since(t0).Seconds())
    	}()
    	i.id = ctx.TrackResource(i)
    
    	if !cfg.DeployIstio {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	}
    
    	return fmt.Sprintf(`
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    %s
    `, data)
    }
    
    func (c *Config) fillDefaults(ctx resource.Context) {
    	if ctx.AllClusters().IsExternalControlPlane() {
    		c.PrimaryClusterIOPFile = IntegrationTestExternalIstiodPrimaryDefaultsIOP
    		c.ConfigClusterIOPFile = IntegrationTestExternalIstiodConfigDefaultsIOP
    		if c.ConfigClusterValues == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/configmap.go

    	_, err := c.Kube().CoreV1().ConfigMaps(cm.namespace).Update(context.TODO(), cfgMap, metav1.UpdateOptions{})
    	if err != nil {
    		return err
    	}
    	if c.IsExternalControlPlane() {
    		// Normal control plane uses ConfigMap informers to load mesh config. This is ~instant.
    		// The external config uses a file mounted ConfigMap. This is super slow, but we can trigger it explicitly:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top