Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for convertIstioListenerToWrapper (0.59 sec)

  1. pilot/pkg/model/sidecar.go

    	}
    	out.EgressListeners = make([]*IstioEgressListenerWrapper, 0, len(egressConfigs))
    	for _, e := range egressConfigs {
    		out.EgressListeners = append(out.EgressListeners,
    			convertIstioListenerToWrapper(ps, configNamespace, e))
    	}
    
    	// Now collect all the imported services across all egress listeners in
    	// this sidecar crd. This is needed to generate CDS output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar_test.go

    			hosts = append(hosts, h)
    		}
    	}
    
    	istioListener := &networking.IstioEgressListener{
    		Hosts: hosts,
    	}
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		convertIstioListenerToWrapper(ps, "default", istioListener)
    	}
    }
    
    func TestComputeWildcardHostVirtualServiceIndex(t *testing.T) {
    	oldestTime := time.Now().Add(-2 * time.Hour)
    	olderTime := time.Now().Add(-1 * time.Hour)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top