Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SHARED_MESH_CONFIG (0.18 sec)

  1. tests/integration/iop-externalistiod-primary-integration-test-defaults.yaml

              value: "istio-sidecar-injector-istio-system"
            - name: VALIDATION_WEBHOOK_CONFIG_NAME
              value: "istio-istio-system"
            - name: EXTERNAL_ISTIOD
              value: "true"
            - name: SHARED_MESH_CONFIG
              value: istio
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        egressGateways:
        - name: istio-egressgateway
          enabled: false
      values:
        global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 22:06:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/mesh.go

    // - use the mounted file, if it exists.
    // - use istio-REVISION if k8s is enabled
    // - fallback to default
    //
    // If the 'SHARED_MESH_CONFIG' env is set (experimental feature in 1.10):
    // - if a file exist, load it - will be merged
    // - if istio-REVISION exists, will be used, even if the file is present.
    // - the SHARED_MESH_CONFIG config map will also be loaded and merged.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/flags.go

    	flag.StringVar(&settingsFromCommandline.SharedMeshConfigName, "istio.test.kube.sharedMeshConfigName",
    		settingsFromCommandline.SharedMeshConfigName,
    		`Specifies the name of the SHARED_MESH_CONFIG defined and created by the user upon installing Istio.
    		Should only be set when istio.test.kube.userSharedMeshConfig=true and istio.test.kube.deploy=false.`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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