Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 369 for xds (0.05 sec)

  1. pkg/test/echo/server/forwarder/xds.go

    package forwarder
    
    import (
    	"context"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/credentials/xds"
    	xdsresolver "google.golang.org/grpc/xds"
    
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ protocol = &grpcProtocol{}
    
    type xdsProtocol struct {
    	e *executor
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 18:09:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/config/xds/xds.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"errors"
    	"fmt"
    
    	bootstrap "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. releasenotes/notes/xds-push-deadlock.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [39209]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 09 17:22:30 UTC 2022
    - 199 bytes
    - Viewed (0)
  7. releasenotes/notes/drop-xds-v2.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 02 13:50:36 UTC 2023
    - 258 bytes
    - Viewed (0)
  8. releasenotes/notes/max-rps-xds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - 35263
    releaseNotes:
    - |
      **Improved** the default `PILOT_MAX_REQUESTS_PER_SECOND`, which limits the number of **new** XDS connections per second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 02 01:54:20 UTC 2022
    - 305 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top