Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for peer_metadata_discovery (0.39 sec)

  1. releasenotes/notes/wds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Added** xDS workload metadata discovery to TCP metadata exchange filter as a fallback. This requires enabling `PEER_METADATA_DISCOVERY` flag on the proxy, and `PILOT_ENABLE_AMBIENT_CONTROLLERS` on the control plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 21:01:49 UTC 2023
    - 440 bytes
    - Viewed (0)
  2. tests/integration/iop-wds.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        defaultConfig:
          proxyMetadata:
            PEER_METADATA_DISCOVERY: "true"
      values:
        pilot:
          env:
            PILOT_ENABLE_AMBIENT: "true"
            PILOT_ENABLE_AMBIENT_WAYPOINTS: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 398 bytes
    - Viewed (1)
  3. pilot/cmd/pilot-agent/options/options.go

    		"maximum number of HTTP/HTTPS request retries for pulling a Wasm module via http/https").Get()
    
    	enableWDSEnv = env.Register("PEER_METADATA_DISCOVERY", false,
    		"If set to true, enable the peer metadata discovery extension in Envoy").Get()
    
    	envoyStatusPortEnv = env.Register("ENVOY_STATUS_PORT", 15021,
    		"Envoy health status port value").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/flags.go

    	flag.BoolVar(&settingsFromCommandLine.Ambient, "istio.test.ambient", settingsFromCommandLine.Ambient,
    		"Indicate the use of ambient mesh.")
    
    	flag.BoolVar(&settingsFromCommandLine.PeerMetadataDiscovery, "istio.test.peer_metadata_discovery", settingsFromCommandLine.PeerMetadataDiscovery,
    		"Force the use of peer metadata discovery fallback for metadata exchange")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/installer.go

    		Revision:      args.Revision,
    	}
    	if i.ctx.Settings().Ambient {
    		iArgs.InFilenames = append(iArgs.InFilenames, filepath.Join(testenv.IstioSrc, IntegrationTestAmbientDefaultsIOP))
    	}
    	if i.ctx.Settings().PeerMetadataDiscovery && len(args.ComponentName) == 0 {
    		iArgs.InFilenames = append(iArgs.InFilenames, filepath.Join(testenv.IstioSrc, IntegrationTestPeerMetadataDiscoveryDefaultsIOP))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/settings.go

    	EnableDualStack bool
    
    	// Helm repo to be used for tests
    	HelmRepo string
    
    	DisableDefaultExternalServiceConnectivity bool
    
    	PeerMetadataDiscovery bool
    
    	// GatewayConformanceStandardOnly indicates that only the standard gateway conformance tests should be run.
    	GatewayConformanceStandardOnly bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top