Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for TestReachability (0.2 sec)

  1. pkg/test/framework/features/allowlist.txt

    security,TestReachability/beta-mtls-automtls/naked->ws://headless:http
    security,TestReachability/beta-mtls-automtls/naked->ws://multiversion:http
    security,TestReachability/beta-mtls-automtls/naked->ws://naked:http
    security,TestReachability/beta-mtls-off
    security,TestReachability/beta-mtls-off/a->grpc://a:grpc
    security,TestReachability/beta-mtls-off/a->grpc://b:grpc
    security,TestReachability/beta-mtls-off/a->grpc://headless:grpc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  2. tests/integration/security/external_ca/reachability_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    // TestReachability verifies:
    // (a) Different workloads after getting their certificates signed by the K8s CA are successfully able to communicate with each other
    func TestReachability(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. tests/integration/tests.mk

    test.integration.kube.environment: | $(JUNIT_REPORT) check-go-tag
    ifeq (${JOB_TYPE},postsubmit)
    	$(call run-test,./tests/integration/...)
    else
    	$(call run-test,./tests/integration/security/ ./tests/integration/pilot,-run="TestReachability|TestTraffic|TestGatewayConformance")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. tests/integration/security/cacert_rotation/main_test.go

    values:
      pilot:
        env:
          ISTIO_MULTIROOT_MESH: true
      meshConfig:
        defaultConfig:
          proxyMetadata:
            PROXY_CONFIG_XDS_AGENT: "true"
    `
    	cfg.ControlPlaneValues = cfgYaml
    }
    
    func TestReachability(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. tests/integration/security/reachability_test.go

    	mtlsModeParam            = "MTLSMode"
    	mtlsModeOverrideParam    = "MTLSModeOverride"
    	tlsModeParam             = "TLSMode"
    	cMinIstioVersion         = "1.15.0"
    	// cMinIstioVersionDS       = "1.16.0"
    )
    
    func TestReachability(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			systemNS := istio.ClaimSystemNamespaceOrFail(t, t)
    
    			integIstioVersion := cMinIstioVersion
    			var migrationApp echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    			Port:   echo.Port{ServicePort: 8080},
    			Check: check.And(
    				check.OK(),
    				check.RequestHeader("X-Envoy-Attempt-Count", "")),
    		},
    	})
    }
    
    // TODO: merge with security TestReachability code
    func protocolSniffingCases(t TrafficContext) {
    	type protocolCase struct {
    		// The port we call
    		port string
    		// The actual type of traffic we send to the port
    		scheme scheme.Instance
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top