Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 394 for xds (0.16 sec)

  1. releasenotes/notes/se-target-port.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/49878
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:45 UTC 2024
    - 233 bytes
    - Viewed (0)
  2. samples/grpc-echo/grpc-echo.yaml

            app: echo
            version: v1
        spec:
          containers:
            - args:
              - --metrics=15014
              - --port
              - "18080"
              - --tcp
              - "19090"
              - --xds-grpc-server=17070
              - --grpc
              - "17070"
              - --grpc
              - "17171"
              - --port
              - "3333"
              - --port
              - "8080"
              - --version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. releasenotes/notes/http-metadata-exchange.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 21:40:04 UTC 2023
    - 272 bytes
    - Viewed (0)
  4. pkg/config/model_test.go

    			nil,
    		},
    		// mock type
    		{
    			&config.MockConfig{Key: "foobar"},
    			func(c Spec) Spec {
    				c.(*config.MockConfig).Key = "bar"
    				return c
    			},
    			protocmp.Transform(),
    		},
    		// XDS type, to test golang/proto
    		{
    			&cluster.Cluster{Name: "foobar"},
    			func(c Spec) Spec {
    				c.(*cluster.Cluster).Name = "bar"
    				return c
    			},
    			protocmp.Transform(),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/match/match_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    import (
    	"testing"
    
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	"github.com/google/go-cmp/cmp"
    
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    func TestCleanupEmptyMaps(t *testing.T) {
    	tc := []struct {
    		name  string
    		given func() Mapper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. releasenotes/notes/backpressure.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - https://github.com/istio/istio/issues/25685
    releaseNotes:
    - |
      **Added** support for backpressure on XDS pushes to avoid overloading Envoy during periods of high configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 27 23:24:27 UTC 2020
    - 376 bytes
    - Viewed (0)
  7. samples/grpc-echo/README.md

    This sample demonstrates Istio's Proxyless gRPC support with a special injection template `grpc-agent`.
    The template injects the `istio-proxy` sidecar, but the sidecar will only run `pilot-agent` and not envoy.
    
    See the [gRPC xDS feature status](https://github.com/grpc/grpc/blob/master/doc/grpc_xds_features.md) for more
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 20:15:35 UTC 2021
    - 348 bytes
    - Viewed (0)
  8. 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)
  9. operator/samples/pilot-advanced-override.yaml

                value: 8090 # OVERRIDDEN
            - kind: Service
              name: istiod
              patches:
              - path: spec.ports.[name:grpc-xds].port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 18 18:00:25 UTC 2020
    - 598 bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/cds.go

    	// TODO for now, we leave mTLS *off* by default:
    	// 1. We don't know if the client uses xds.NewClientCredentials; these settings will be ignored if not
    	// 2. We cannot reach servers in PERMISSIVE mode; gRPC doesn't allow us to override the alpn to one of Istio's
    	// 3. Once we support gRPC servers, we have no good way to detect if a server is implemented with xds.NewGrpcServer and will actually support our config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top