Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunTestMultiTLSGateways (0.23 sec)

  1. tests/integration/security/sds_ingress/quic/ingress_test.go

    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			t.NewSubTest("tcp").Run(func(t framework.TestContext) {
    				ingressutil.RunTestMultiTLSGateways(t, inst, namespace.Future(&echo1NS))
    			})
    			t.NewSubTest("quic").Run(func(t framework.TestContext) {
    				ingressutil.RunTestMultiQUICGateways(t, inst, ingressutil.TLS, namespace.Future(&echo1NS))
    			})
    		})
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/util/util.go

    				})
    			}
    		})
    }
    
    // RunTestMultiTLSGateways deploys multiple TLS gateways with SDS enabled, and creates kubernetes secret that stores
    // private key and server certificate for each TLS gateway. Verifies that all gateways are able to terminate
    // SSL connections successfully.
    func RunTestMultiTLSGateways(t framework.TestContext, inst istio.Instance, ns namespace.Getter) { // nolint:interfacer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/ingress_test.go

    // SSL connections successfully.
    func TestTlsGateways(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			ingressutil.RunTestMultiTLSGateways(t, inst, namespace.Future(&echo1NS))
    		})
    }
    
    // TestMtlsGateways deploys multiple mTLS gateways with SDS enabled, and creates kubernetes that store
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top