Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initWasmPlugins (0.13 sec)

  1. pilot/pkg/model/push_context.go

    	}
    
    	ps.initVirtualServices(env)
    
    	ps.initDestinationRules(env)
    	ps.initAuthnPolicies(env)
    
    	ps.initAuthorizationPolicies(env)
    	ps.initTelemetry(env)
    	ps.initProxyConfigs(env)
    	ps.initWasmPlugins(env)
    	ps.initEnvoyFilters(env, nil, nil)
    	ps.initGateways(env)
    	ps.initAmbient(env)
    
    	// Must be initialized in the end
    	ps.initSidecarScopes(env)
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    	}
    	env.ConfigStore = store
    	m := mesh.DefaultMeshConfig()
    	env.Watcher = mesh.NewFixedWatcher(m)
    	env.Init()
    
    	// Init a new push context
    	pc := NewPushContext()
    	pc.Mesh = m
    	pc.initWasmPlugins(env)
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			result := pc.WasmPluginsByListenerInfo(tc.node, tc.listenerInfo, tc.pluginType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top