Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for ProxyMetadata (0.37 sec)

  1. pilot/cmd/pilot-agent/config/config_test.go

      discoveryAddress: foo:123
      controlPlaneAuthPolicy: NONE
      proxyMetadata:
        SOME: setting
      drainDuration: 1s`
    	proxyOverride := `discoveryAddress: foo:123
    proxyMetadata:
      SOME: setting
    drainDuration: 1s
    controlPlaneAuthPolicy: NONE`
    	overridesExpected := func() *meshconfig.ProxyConfig {
    		m := mesh.DefaultProxyConfig()
    		m.DiscoveryAddress = "foo:123"
    		m.ProxyMetadata = map[string]string{"SOME": "setting"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/proxy_config_test.go

    		{
    			name: "envvars",
    			first: &meshconfig.ProxyConfig{
    				ProxyMetadata: map[string]string{
    					"a": "x",
    					"b": "y",
    				},
    			},
    			second: &meshconfig.ProxyConfig{
    				ProxyMetadata: map[string]string{
    					"a": "z",
    					"b": "y",
    					"c": "d",
    				},
    			},
    			expected: &meshconfig.ProxyConfig{
    				ProxyMetadata: map[string]string{
    					"a": "x",
    					"b": "y",
    					"c": "d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. operator/pkg/manifest/shared_test.go

    				"meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK=false",
    				"meshConfig.defaultConfig.proxyMetadata.PROXY_XDS_VIA_AGENT=false",
    			},
    		}, {
    			name:         "convention_integer",
    			convertPaths: defaultSetFlagConvertPaths,
    			inputFlags: []string{
    				"meshConfig.defaultConfig.proxyMetadata.ISTIO_MULTI_CLUSTERS=10",
    				"meshConfig.defaultConfig.proxyMetadata.PROXY_XDS_LISTENERS=20",
    			},
    		}, {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 23 16:28:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. tests/integration/iop-ambient-test-defaults.yaml

            # and DNS proxying must be enabled in ztunnel
            dnsCapture: true
        ztunnel:
          meshConfig:
            defaultConfig:
              proxyMetadata:
                ISTIO_META_DNS_CAPTURE: "true"
        meshConfig:
          defaultConfig:
            proxyMetadata:
              ISTIO_META_DNS_CAPTURE: "true"
              DNS_PROXY_ADDR: "0.0.0.0:15053"
          accessLogFile: /dev/stdout
          # Just used to exclude for testing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh_test.go

    		config := mesh.DefaultMeshConfig()
    		config.DefaultConfig.ProxyMetadata = map[string]string{
    			"merged":  "original",
    			"default": "foo",
    		}
    		mc, err := mesh.ApplyProxyConfig(`proxyMetadata: {"merged":"override","override":"bar"}`, config)
    		assert.NoError(t, err)
    		// Ensure we didn't modify the passed in mesh config
    		assert.Equal(t, mc.DefaultConfig.ProxyMetadata, map[string]string{
    			"merged":   "override",
    			"default":  "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. releasenotes/notes/agent-dns-capture.yaml

      from VM sidecars. This feature is disabled by default and can be enabled by setting the following in the
      Istio Operator: `meshConfig.defaultConfig.proxyMetadata.ISTIO_META_DNS_CAPTURE="true"`.
    
    upgradeNotes:
    - title: Istio CoreDNS Plugin Deprecation
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/setup_test.go

    func SetupSuite(ctx resource.Context) (err error) {
    	echos := (&cdeployment.Config{}).DefaultEchoConfigs(ctx)
    	customBuckets := `{"istio":[1,5,10,50,100,500,1000,5000,10000]}`
    	proxyMetadata := fmt.Sprintf(`
    proxyMetadata:
      WASM_INSECURE_REGISTRIES: %q`, registry.Address())
    	for _, e := range echos {
    		if e.Subsets[0].Annotations == nil {
    			e.Subsets[0].Annotations = map[string]string{}
    		}
    		if e.Service == "b" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. releasenotes/notes/35883.yaml

    area: traffic-management
    releaseNotes:
    - |
      **Enabled** discovering cross-cluster, same network, endpoints for headless services when `ISTIO_META_DNS_CAPTURE` and
      `ISTIO_META_DNS_AUTO_ALLOCATE` are enabled in `ProxyConfig.proxyMetadata`. This can be disabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 03 22:48:19 UTC 2021
    - 366 bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/files/profile-compatibility-version-1.22.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/files/profile-compatibility-version-1.22.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
Back to top