Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for French (0.11 sec)

  1. pilot/pkg/xds/lds_test.go

    		if len(adscon.GetHTTPListeners()) != 3 {
    			t.Error("HTTP listeners, expecting 3 got", len(adscon.GetHTTPListeners()), xdstest.MapKeys(adscon.GetHTTPListeners()))
    		}
    
    		// s1tcp:2000 outbound, bind=true (to reach other instances of the service)
    		// s1:5005 outbound, bind=true
    		// :443 - https external, bind=false
    		// 10.11.0.1_7070, bind=true -> inbound|2000|s1 - on port 7070, fwd to 37070
    		// virtual
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	// Description: Address for the ingress gateway on the external control plane is not valid
    	InvalidExternalControlPlaneConfig = diag.NewMessageType(diag.Warning, "IST0163", "The hostname (%s) that was provided for the webhook (%s) to reach the ingress gateway on the external control plane cluster %s. Traffic may not flow properly.")
    
    	// ExternalControlPlaneAddressIsNotAHostname defines a diag.MessageType for message "ExternalControlPlaneAddressIsNotAHostname".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. architecture/ambient/ztunnel.md

    If it is allowed, we will forward to the target destination.
    
    #### Hairpin
    
    In the case that the destination has a waypoint, that waypoint must have been bypassed to reach the inbound passthrough codepath.
    How we handle this is [under discussion](https://docs.google.com/document/d/1uM1c3zzoehiijh1ZpZuJ1-SzuVVupenv8r5yuCaFshs/edit#heading=h.dwbqvwmg6ud3).
    
    ### Inbound
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

      // Except values will be rejected if they are outside the cidr range
      // +optional
      repeated string except = 2;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // Except values will be rejected if they are outside the CIDR range
      // +optional
      repeated string except = 2;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    										// on where we call service B from, we'll reach a different set of endpoints.
    										// If we're calling from exportCluster, it will be the same as cluster-local
    										// (i.e. we'll only reach endpoints in exportCluster). From all other clusters,
    										// we should reach endpoints in that cluster AND exportCluster.
    										expectedClusters = cluster.Clusters{exportCluster}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.yaml

        code: IST0163
        level: Warning
        description: "Address for the ingress gateway on the external control plane is not valid"
        template: "The hostname (%s) that was provided for the webhook (%s) to reach the ingress gateway on the external control plane cluster %s. Traffic may not flow properly."
        args:
          - name: hostname
            type: string
          - name: webhook
            type: string
          - name: msg
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. tests/integration/helm/upgrade/util.go

    		oldNs, oldClient, oldServer := sanitycheck.SetupTrafficTest(t, t, previousRevision)
    		sanitycheck.RunTrafficTestClientServer(t, oldClient, oldServer)
    
    		// install the charts from this branch with revision set to "latest"
    		// helm upgrade istio-base ../manifests/charts/base --namespace istio-system -f values.yaml
    		// helm install istiod-latest ../manifests/charts/istio-control/istio-discovery -f values.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // or '#'.
    message HTTPIngressRuleValue {
      // paths is a collection of paths that map requests to backends.
      repeated HTTPIngressPath paths = 1;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery.go

    	var req *model.PushRequest
    
    	free := true
    	freeCh := make(chan struct{}, 1)
    
    	push := func(req *model.PushRequest, debouncedEvents int, startDebounce time.Time) {
    		pushFn(req)
    		updateSent.Add(int64(debouncedEvents))
    		debounceTime.Record(time.Since(startDebounce).Seconds())
    		freeCh <- struct{}{}
    	}
    
    	pushWorker := func() {
    		eventDelay := time.Since(startDebounce)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top