Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,058 for echo3 (0.08 sec)

  1. tests/integration/pilot/multiplecontrolplanes/main_test.go

    	"testing"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/echos.go

    	Ns2 EchoNamespace
    
    	// Ns1AndNs2 contains just the echo services in Ns1 and Ns2 (excludes External).
    	Ns1AndNs2 echo.Services
    
    	// External (out-of-mesh) deployments
    	External External
    
    	// All echo instances
    	All echo.Services
    
    	echos *Echos
    }
    
    func (v *TwoNamespaceView) Echos() *Echos {
    	return v.echos
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo.proto

    syntax = "proto3";
    
    import "google/protobuf/wrappers.proto";
    
    // Generate with protoc --go_out=. echo.proto -I /work/common-protos/ -I.
    package proto;
    option go_package="../proto";
    option java_package = "io.istio.test";
    option java_outer_classname = "Echo";
    
    service EchoTestService {
      rpc Echo (EchoRequest) returns (EchoResponse);
      rpc ForwardEcho (ForwardEchoRequest) returns (ForwardEchoResponse);
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. samples/grpc-echo/grpc-echo.yaml

    metadata:
      labels:
        app: echo
      name: echo
      namespace: echo-grpc
    spec:
      selector:
        app: echo
      type: ClusterIP
      ports:
      - name: http
        port: 80
        targetPort: 18080
      - name: grpc
        port: 7070
        targetPort: 17070
      - name: tcp
        port: 9090
        targetPort: 19090
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: echo-v1
      namespace: echo-grpc
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/filters_test.go

    				expect: map[string]map[string]int{
    					"a.echo1.svc.cluster.local": {
    						"b.echo1.svc.cluster.local_external.echo1.svc.cluster.local_naked.echo1.svc.cluster.local":  2,
    						"external.echo1.svc.cluster.local_naked.echo1.svc.cluster.local_vm.echo1.svc.cluster.local": 2,
    					},
    					"a.echo2.svc.cluster.local": {
    						"b.echo1.svc.cluster.local_external.echo1.svc.cluster.local_naked.echo1.svc.cluster.local":  2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. samples/tcp-echo/tcp-echo.yaml

      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: tcp-echo
          version: v1
      template:
        metadata:
          labels:
            app: tcp-echo
            version: v1
        spec:
          containers:
          - name: tcp-echo
            image: docker.io/istio/tcp-echo-server:1.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. samples/tcp-echo/tcp-echo-ipv4.yaml

      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: tcp-echo
          version: v1
      template:
        metadata:
          labels:
            app: tcp-echo
            version: v1
        spec:
          containers:
          - name: tcp-echo
            image: docker.io/istio/tcp-echo-server:1.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. docs/auditlog/auditlog-echo.md

    # `auditlog-echo`: A tool to view MinIO Audit logs on the console
    
    1. Run the tool with:
    
    ```
    go run docs/auditlog/auditlog-echo.go
    ```
    
    The listen port has a default value (8080), but can be set with the `-port` flag.
    
    2. Configure audit logging in MinIO with for example:
    
    ```
    mc admin config set myminio audit_webhook enable=on endpoint=http://localhost:8080
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 447 bytes
    - Viewed (0)
  9. pkg/test/echo/docker/echo-start.sh

    # Split ECHO_ARGS by spaces.
    IFS=' ' read -r -a ECHO_ARGS_ARRAY <<< "$ECHO_ARGS"
    
    ISTIO_LOG_DIR=${ISTIO_LOG_DIR:-/var/log/istio}
    
    # Run the pilot agent and Envoy
    /usr/local/bin/istio-start.sh&
    
    # Start the echo server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. samples/tcp-echo/tcp-echo-services.yaml

    kind: Deployment
    metadata:
      name: tcp-echo-v2
      labels:
        app: tcp-echo
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: tcp-echo
          version: v2
      template:
        metadata:
          labels:
            app: tcp-echo
            version: v2
        spec:
          containers:
          - name: tcp-echo
            image: docker.io/istio/tcp-echo-server:1.3
            imagePullPolicy: IfNotPresent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top