Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for initSidecarScopes (0.15 sec)

  1. releasenotes/notes/48461.yaml

        **Added** support for concurrent SidecarScope conversion. You can use `PILOT_CONVERT_SIDECAR_SCOPE_CONCURRENCY` to adjust the number of concurrencies.
        Its default value is 1 and will not be executed concurrently. 
        When `initSidecarScopes` consumes a lot of time and you want to reduce time consumption by increasing CPU consumption,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 10:56:07 UTC 2024
    - 559 bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	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
    }
    
    func (ps *PushContext) updateContext(
    	env *Environment,
    	oldPushContext *PushContext,
    	pushReq *PushRequest,
    ) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    		},
    		Spec: sidecarWithoutWorkloadSelector,
    	}
    	_, _ = configStore.Create(configWithWorkloadSelector)
    	_, _ = configStore.Create(rootConfig)
    
    	env.ConfigStore = configStore
    	ps.initSidecarScopes(env)
    	cases := []struct {
    		proxy    *Proxy
    		labels   labels.Instance
    		sidecar  string
    		describe string
    	}{
    		{
    			proxy:    &Proxy{Type: SidecarProxy, ConfigNamespace: "default"},
    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