Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EgressLabel (0.11 sec)

  1. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    	serviceNamespace namespace.Instance, egressNs string, egressSvc string, egressLabel string,
    ) {
    	ctx.ConfigIstio().
    		Eval(appsNamespace.Name(), map[string]string{
    			"ServerNamespace": serviceNamespace.Name(),
    			"EgressNamespace": egressNs, "EgressLabel": egressLabel, "EgressService": egressSvc,
    		}, Gateway).
    		Eval(appsNamespace.Name(), map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tests/integration/security/egress_gateway_origination_test.go

    	to echo.Instances, egressNs string, egressSvc string, egressLabel string,
    ) {
    	args := map[string]any{"to": to, "EgressNamespace": egressNs, "EgressService": egressSvc, "EgressLabel": egressLabel}
    
    	gateway := `
    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    metadata:
      name: istio-egressgateway-sds
    spec:
      selector:
        istio: {{.EgressLabel}}
      servers:
        - port:
            number: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/tunneling_test.go

    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		waitForTunnelingRemovedOrFail(ctx, meshNs, "a")
    	}()
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		waitForTunnelingRemovedOrFail(ctx, egressNs, egressLabel)
    	}()
    	wg.Wait()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top