Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SHARED_MESH_CONFIG (0.28 sec)

  1. pilot/pkg/features/pilot.go

    			"These checks are extremely expensive, so this should be used only for testing, not production.",
    	).Get()
    
    	SharedMeshConfig = env.Register("SHARED_MESH_CONFIG", "",
    		"Additional config map to load for shared MeshConfig settings. The standard mesh config will take precedence.").Get()
    
    	MultiRootMesh = env.Register("ISTIO_MULTIROOT_MESH", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	// This field should only be set when DeployIstio is false
    	EgressGatewayIstioLabel string
    
    	// SharedMeshConfigName is the name of the user's local ConfigMap to be patched, which the user sets as the SHARED_MESH_CONFIG pilot env variable
    	// upon installing Istio.
    	// This field should only be set when DeployIstio is false.
    	SharedMeshConfigName string
    }
    
    func (c *Config) OverridesYAML(s *resource.Settings) string {
    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. architecture/networking/pilot.md

    #### Mesh Config
    
    Mesh Config controller is a pretty simple controller, reading from `ConfigMap`(s) (multiple if `SHARED_MESH_CONFIG` is used), processing and merging these into a the typed `MeshConfig`. It then exposes this over a simple `mesh.Watcher`, which just exposes a way to access the current `MeshConfig` and get notified when it changes.
    
    #### Ingress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top