Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 134 of 134 for egressgateway (0.11 sec)

  1. tests/integration/operator/uninstall_test.go

    						return fmt.Errorf("fail to delete iop")
    					}
    
    					return nil
    				}, retry.Timeout(deletionTimeout), retry.Delay(retryDelay))
    			})
    
    			// For negative casse, use default profile, ingressgateway alway connect to istiod
    			// deletion will fail
    			t.NewSubTest("delete-iop-fail").Run(func(t framework.TestContext) {
    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/ingress.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	defaultIngressIstioNameLabel = "ingressgateway"
    	defaultIngressIstioLabel     = "istio=" + defaultIngressIstioNameLabel
    	defaultIngressServiceName    = "istio-" + defaultIngressIstioNameLabel
    
    	discoveryPort = 15012
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/zipkin/kube.go

    	zipkinPort = 9411
    
    	remoteZipkinEntry = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: tracing-gateway
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http-tracing
          protocol: HTTP
        hosts:
        - "tracing.{INGRESS_DOMAIN}"
      - port:
          number: 9411
          name: http-tracing-span
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pkg/config/analysis/README.md

        },
    ```
    
    `virtualservice_gateways.yaml`:
    
    ```yaml
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin
    spec:
      hosts:
      - "*"
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top