Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for French (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/networking/util/util.go

    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. pkg/wasm/cache_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	img2, err := mutate.Append(empty.Image, mutate.Addendum{Layer: l})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Set manifest type so it will pass the docker parsing branch.
    	img2 = mutate.MediaType(img2, types.OCIManifestSchema1)
    
    	d, _ = img2.Digest()
    	invalidOCIImageDigest = d.Hex
    
    	// Push image to the registry.
    	err = crane.Push(img2, ref, fetchOpt)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload.go

    		hosts = fmt.Sprintf("%s %s\n", ingressIP, IstiodHost(istioNamespace, revision))
    	} else {
    		log.Warnf("Could not auto-detect IP for %s/%s. Use --ingressIP to manually specify the Gateway address to reach istiod from the VM.",
    			IstiodHost(istioNamespace, revision), istioNamespace)
    	}
    	return os.WriteFile(filepath.Join(dir, "hosts"), []byte(hosts), filePerms)
    }
    
    func isRevisioned(revision string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      oneof destination {
        // TODO: add support for hostname lookup
        NamespacedHostname hostname = 1;
        NetworkAddress address = 2;
      }
      // port to reach the gateway at for mTLS HBONE connections
      uint32 hbone_mtls_port = 3;
      reserved "hbone_single_tls_port";
      reserved 4;
    }
    
    // NetworkAddress represents an address bound to a specific network.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top