Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for xds (0.03 sec)

  1. pilot/pkg/features/xds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package features
    
    import (
    	"istio.io/istio/pkg/env"
    )
    
    // Define flags that affect XDS config generation here.
    var (
    	// EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.
    	// Pilot injects this outbound filter if the service port name is `mysql`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pkg/model/xds.go

    Kuat <******@****.***> 1712262548 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. releasenotes/notes/delta-xds-default.yaml

    area: traffic-management
    issue:
      - 47949
    releaseNotes:
      - |
        **Enabled** [Delta xDS](https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#incremental-xds) by default. See upgrade notes for more information.
    upgradeNotes:
      - title: Delta xDS on by default
        content: |
          In previous versions, Istio used the "State of the world" xDS protocol to configure Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. releasenotes/notes/xds-partial-full.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 37989
    - 37974
    
    releaseNotes:
    - |
      **Improved** XDS generation to send less resource when possible, sometimes omitting a response entirely.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 317 bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/discovery.go

    	generators[v3.ClusterType] = &xds.CdsGenerator{ConfigGenerator: cg}
    	generators[v3.ListenerType] = &xds.LdsGenerator{ConfigGenerator: cg}
    	generators[v3.RouteType] = &xds.RdsGenerator{ConfigGenerator: cg}
    	generators[v3.EndpointType] = edsGen
    	ecdsGen := &xds.EcdsGenerator{ConfigGenerator: cg}
    	if env.CredentialsController != nil {
    		generators[v3.SecretType] = xds.NewSecretGen(env.CredentialsController, s.Cache, clusterID, env.Mesh())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/match/match.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package match
    
    import (
    	xds "github.com/cncf/xds/go/xds/core/v3"
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	network "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/network/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot.libsonnet

        row.new('Push Information')
        + row.withPanels([
          panels.timeSeries.xdsPushes(
            'XDS Pushes', queries.xdsPushes, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.base(
            'Events', queries.pilotEvents, |||
              Size of each xDS push.
            |||
          ),
          panels.timeSeries.base(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/sds/sdsservice.go

    	w.Lock()
    	defer w.Unlock()
    	w.watch = &xds.WatchedResource{TypeUrl: typeURL, ResourceNames: names}
    }
    
    func (w *Watch) UpdateWatchedResource(_ string, f func(*xds.WatchedResource) *xds.WatchedResource) {
    	w.Lock()
    	defer w.Unlock()
    	w.watch = f(w.watch)
    }
    
    func (w *Watch) GetID() string {
    	// This always maps to the same local Envoy instance.
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. istioctl/pkg/proxystatus/proxystatus.go

      istioctl ps --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
      # Retrieve proxy status information via XDS from specific control plane in multi-control plane in-cluster configuration
      # (Select a specific control plane in an in-cluster canary Istio configuration.)
      istioctl ps --xds-label istio.io/rev=default
    `,
    		Aliases: []string{"ps"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. istioctl/pkg/multixds/gather.go

    		}
    		err = fw.Start()
    		if err != nil {
    			return nil, err
    		}
    		defer fw.Close()
    		xdsOpts.Xds = fw.Address()
    		// Use plaintext.
    		response, err := xds.GetXdsResponse(dr, istioNamespace, tokenServiceAccount, xdsOpts, []grpc.DialOption{})
    		if err != nil {
    			return nil, fmt.Errorf("could not get XDS from the agent pod %q: %v", pod.Name, err)
    		}
    		for _, resource := range response.GetResources() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top