Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for Echo (0.32 sec)

  1. cluster/common.sh

      local resp="y"
      if [[ ! "${KUBERNETES_SKIP_CONFIRM:-n}" =~ ^[yY]$ ]]; then
        echo "Required release artifacts appear to be missing. Do you wish to download them? [Y/n]"
        read -r resp
      fi
      if [[ "${resp}" =~ ^[nN]$ ]]; then
        echo "You must download release artifacts to continue. You can use "
        echo "  ${get_binaries_script}"
        echo "to do this for your automatically."
        exit 1
      fi
      "${get_binaries_script}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	// Subsets contains the list of Subsets config belonging to this echo
    	// service instance.
    	Subsets []SubsetConfig
    
    	// Cluster to be used in a multicluster environment
    	Cluster cluster.Cluster
    
    	// TLS settings for echo server
    	TLSSettings *common.TLSSettings
    
    	// If enabled, echo will be deployed as a "VM". This means it will run Envoy in the same pod as echo,
    	// disable sidecar injection, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/ingress_test.go

    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. tests/integration/security/egress_gateway_origination_test.go

    	"istio.io/istio/pkg/test"
    	echoClient "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/env"
    	"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/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/echo/common"
    	echoproto "istio.io/istio/pkg/test/echo/proto"
    	"istio.io/istio/pkg/test/echo/server/endpoint"
    	"istio.io/istio/pkg/test/env"
    )
    
    // Address of the test gRPC service, used in tests.
    // Avoid using "istiod" as it is implicitly considered clusterLocal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. tests/integration/security/egress_sidecar_tls_origination_test.go

    }
    
    func newTLSSidecarCallOpts(to echo.Target, host string, exRsp ingressutil.ExpectedResponse) echo.CallOptions {
    	return echo.CallOptions{
    		To: to,
    		Port: echo.Port{
    			Protocol: protocol.HTTP,
    		},
    		HTTP: echo.HTTP{
    			Headers: headers.New().WithHost(host).Build(),
    		},
    		Check: func(result echo.CallResult, err error) error {
    			// Check that the error message is expected.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    						createDestinationRule(t, serviceNS, tc.destinationRuleMode, tc.fakeRootCert)
    
    						opts := echo.CallOptions{
    							To:    externalService[0],
    							Count: 1,
    							Port: echo.Port{
    								Name: "http",
    							},
    							HTTP: echo.HTTP{
    								Headers: headers.New().WithHost(host).Build(),
    							},
    							Retry: echo.Retry{
    								Options: []retry.Option{retry.Delay(1 * time.Second), retry.Timeout(2 * time.Minute)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xds_test.go

    apiVersion: v1
    kind: Service
    metadata:
      labels:
        app: echo-app
      name: echo-app
      namespace: default
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: echo-app
      ports:
      - name: grpc
        port: 7070
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: echo-app
      name: echo-app-%s
      namespace: default
    ---
    apiVersion: discovery.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/tunneling_test.go

    			}
    		})
    }
    
    func testConnectivity(from, to echo.Instance, p protocol.Instance, port echo.Port, testName string) error {
    	res, err := from.Call(echo.CallOptions{
    		Address: to.ClusterLocalFQDN(),
    		Port: echo.Port{
    			Protocol:    p,
    			ServicePort: port.ServicePort,
    		},
    		HTTP: echo.HTTP{
    			Path: "/" + testName,
    		},
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

                        tasks.create("echo") {
                            it.doLast {
                                println "person: $person"
                                println "name: $person.name"
                            }
                        }
                    }
                }
    
                apply type: RulePlugin
            '''
    
            then:
            succeeds "echo"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top