Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,053 for Echo (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/test/echo/proto/echo.pb.go

    // limitations under the License.
    
    // Code generated by protoc-gen-go. DO NOT EDIT.
    // versions:
    // 	protoc-gen-go v1.34.1
    // 	protoc        (unknown)
    // source: test/echo/proto/echo.proto
    
    // Generate with protoc --go_out=. echo.proto -I /work/common-protos/ -I.
    
    package proto
    
    import (
    	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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.go

    Aditya Manthramurthy <******@****.***> 1714599073 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  10. samples/tcp-echo/tcp-echo-ipv6.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.6K bytes
    - Viewed (0)
Back to top